-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
120 lines (109 loc) · 3.99 KB
/
__init__.py
File metadata and controls
120 lines (109 loc) · 3.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# coding: utf-8
# flake8: noqa
"""
STACKIT Git API
STACKIT Git management API.
The version of the OpenAPI document: 1beta.0.4
Contact: git@stackit.cloud
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",
"AlreadyExistsError",
"Authentication",
"AuthenticationList",
"BadErrorResponse",
"ConflictErrorResponse",
"CreateAuthenticationPayload",
"CreateInstancePayload",
"CreateRunnerPayload",
"FeatureToggle",
"Flavor",
"GenericErrorResponse",
"Instance",
"InternalServerErrorResponse",
"ListFlavors",
"ListInstances",
"NotFoundErrorResponse",
"PatchAuthenticationPayload",
"PatchInstancePayload",
"PatchOperation",
"Runner",
"RunnerRuntime",
"RunnerRuntimeList",
"UnauthorizedErrorResponse",
]
# import apis into sdk package
from stackit.git.api.default_api import DefaultApi as DefaultApi
from stackit.git.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.git.api_response import ApiResponse as ApiResponse
from stackit.git.configuration import HostConfiguration as HostConfiguration
from stackit.git.exceptions import ApiAttributeError as ApiAttributeError
from stackit.git.exceptions import ApiException as ApiException
from stackit.git.exceptions import ApiKeyError as ApiKeyError
from stackit.git.exceptions import ApiTypeError as ApiTypeError
from stackit.git.exceptions import ApiValueError as ApiValueError
from stackit.git.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.git.models.already_exists_error import (
AlreadyExistsError as AlreadyExistsError,
)
from stackit.git.models.authentication import Authentication as Authentication
from stackit.git.models.authentication_list import (
AuthenticationList as AuthenticationList,
)
from stackit.git.models.bad_error_response import BadErrorResponse as BadErrorResponse
from stackit.git.models.conflict_error_response import (
ConflictErrorResponse as ConflictErrorResponse,
)
from stackit.git.models.create_authentication_payload import (
CreateAuthenticationPayload as CreateAuthenticationPayload,
)
from stackit.git.models.create_instance_payload import (
CreateInstancePayload as CreateInstancePayload,
)
from stackit.git.models.create_runner_payload import (
CreateRunnerPayload as CreateRunnerPayload,
)
from stackit.git.models.feature_toggle import FeatureToggle as FeatureToggle
from stackit.git.models.flavor import Flavor as Flavor
from stackit.git.models.generic_error_response import (
GenericErrorResponse as GenericErrorResponse,
)
from stackit.git.models.instance import Instance as Instance
from stackit.git.models.internal_server_error_response import (
InternalServerErrorResponse as InternalServerErrorResponse,
)
from stackit.git.models.list_flavors import ListFlavors as ListFlavors
from stackit.git.models.list_instances import ListInstances as ListInstances
from stackit.git.models.not_found_error_response import (
NotFoundErrorResponse as NotFoundErrorResponse,
)
from stackit.git.models.patch_authentication_payload import (
PatchAuthenticationPayload as PatchAuthenticationPayload,
)
from stackit.git.models.patch_instance_payload import (
PatchInstancePayload as PatchInstancePayload,
)
from stackit.git.models.patch_operation import PatchOperation as PatchOperation
from stackit.git.models.runner import Runner as Runner
from stackit.git.models.runner_runtime import RunnerRuntime as RunnerRuntime
from stackit.git.models.runner_runtime_list import (
RunnerRuntimeList as RunnerRuntimeList,
)
from stackit.git.models.unauthorized_error_response import (
UnauthorizedErrorResponse as UnauthorizedErrorResponse,
)