ospurge/ospurge/utils.pyi

46 lines
1.3 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from typing import Any
from typing import Callable
from typing import cast
from typing import Dict
from typing import Iterable
from typing import List
from typing import Optional
from typing import TypeVar
def get_resource_classes(resources: Optional[Iterable[str]]=None) -> List:
...
F = TypeVar('F', bound=Callable[..., Any])
def monkeypatch_oscc_logging_warning(f: F) -> F:
def logging_warning(msg: str, *args: Any, **kwargs: Any) -> None:
...
@functools.wraps(f)
def wrapper(*args: list, **kwargs: dict) -> Any:
...
return cast(F, wrapper)
def call_and_ignore_exc(exc: type, f: Callable, *args: List) -> None:
...
def replace_project_info(config: Dict, new_project_id: str) -> Dict[str, Any]:
...