-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
75 lines (64 loc) · 2.51 KB
/
__init__.py
File metadata and controls
75 lines (64 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# coding: utf-8
# flake8: noqa
"""
STACKIT Service Enablement API
STACKIT Service Enablement API
The version of the OpenAPI document: 2.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
__version__ = "1.0.0"
# Define package exports
__all__ = [
"DefaultApi",
"ApiResponse",
"ApiClient",
"HostConfiguration",
"OpenApiException",
"ApiTypeError",
"ApiValueError",
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"ActionError",
"CheckService",
"CloudService",
"Dependencies",
"ErrorResponse",
"ListServiceStatusRegional200Response",
"Parameters",
"ParametersGeneral",
"ServiceStatus",
]
# import apis into sdk package
from stackit.serviceenablement.api.default_api import DefaultApi as DefaultApi
from stackit.serviceenablement.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.serviceenablement.api_response import ApiResponse as ApiResponse
from stackit.serviceenablement.configuration import (
HostConfiguration as HostConfiguration,
)
from stackit.serviceenablement.exceptions import ApiAttributeError as ApiAttributeError
from stackit.serviceenablement.exceptions import ApiException as ApiException
from stackit.serviceenablement.exceptions import ApiKeyError as ApiKeyError
from stackit.serviceenablement.exceptions import ApiTypeError as ApiTypeError
from stackit.serviceenablement.exceptions import ApiValueError as ApiValueError
from stackit.serviceenablement.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.serviceenablement.models.action_error import ActionError as ActionError
from stackit.serviceenablement.models.check_service import CheckService as CheckService
from stackit.serviceenablement.models.cloud_service import CloudService as CloudService
from stackit.serviceenablement.models.dependencies import Dependencies as Dependencies
from stackit.serviceenablement.models.error_response import (
ErrorResponse as ErrorResponse,
)
from stackit.serviceenablement.models.list_service_status_regional200_response import (
ListServiceStatusRegional200Response as ListServiceStatusRegional200Response,
)
from stackit.serviceenablement.models.parameters import Parameters as Parameters
from stackit.serviceenablement.models.parameters_general import (
ParametersGeneral as ParametersGeneral,
)
from stackit.serviceenablement.models.service_status import (
ServiceStatus as ServiceStatus,
)