-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
244 lines (233 loc) · 8.78 KB
/
__init__.py
File metadata and controls
244 lines (233 loc) · 8.78 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# coding: utf-8
# flake8: noqa
"""
STACKIT PostgreSQL Flex API
This is the documentation for the STACKIT postgres service
The version of the OpenAPI document: 2.0.0
Contact: support@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",
"ACL",
"ApiConfiguration",
"ApiExtensionConfigLoadResponse",
"ApiExtensionConfigureResponse",
"ApiExtensionDeleteResponse",
"ApiExtensionList",
"ApiExtensionLoadResponse",
"ApiInstallResponse",
"ApiInstalledListResponse",
"Backup",
"CloneInstancePayload",
"CloneInstanceResponse",
"CreateDatabasePayload",
"CreateInstancePayload",
"CreateInstanceResponse",
"CreateUserPayload",
"CreateUserResponse",
"Error",
"ExtensionsConfiguration",
"ExtensionsExtensionListResponse",
"ExtensionsNewConfig",
"Flavor",
"GetBackupResponse",
"GetUserResponse",
"Instance",
"InstanceCreateDatabaseResponse",
"InstanceDataPoint",
"InstanceDatabase",
"InstanceHost",
"InstanceHostMetric",
"InstanceListDatabasesResponse",
"InstanceListInstance",
"InstanceMetricsResponse",
"InstanceResponse",
"ListBackupsResponse",
"ListFlavorsResponse",
"ListInstancesResponse",
"ListStoragesResponse",
"ListUsersResponse",
"ListUsersResponseItem",
"ListVersionsResponse",
"PartialUpdateInstancePayload",
"PartialUpdateInstanceResponse",
"PartialUpdateUserPayload",
"PostgresDatabaseParameter",
"PostgresDatabaseParameterResponse",
"ResetUserResponse",
"Storage",
"StorageRange",
"UpdateBackupSchedulePayload",
"UpdateInstancePayload",
"UpdateUserPayload",
"User",
"UserResponse",
]
# import apis into sdk package
from stackit.postgresflex.api.default_api import DefaultApi as DefaultApi
from stackit.postgresflex.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.postgresflex.api_response import ApiResponse as ApiResponse
from stackit.postgresflex.configuration import HostConfiguration as HostConfiguration
from stackit.postgresflex.exceptions import ApiAttributeError as ApiAttributeError
from stackit.postgresflex.exceptions import ApiException as ApiException
from stackit.postgresflex.exceptions import ApiKeyError as ApiKeyError
from stackit.postgresflex.exceptions import ApiTypeError as ApiTypeError
from stackit.postgresflex.exceptions import ApiValueError as ApiValueError
from stackit.postgresflex.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.postgresflex.models.acl import ACL as ACL
from stackit.postgresflex.models.api_configuration import (
ApiConfiguration as ApiConfiguration,
)
from stackit.postgresflex.models.api_extension_config_load_response import (
ApiExtensionConfigLoadResponse as ApiExtensionConfigLoadResponse,
)
from stackit.postgresflex.models.api_extension_configure_response import (
ApiExtensionConfigureResponse as ApiExtensionConfigureResponse,
)
from stackit.postgresflex.models.api_extension_delete_response import (
ApiExtensionDeleteResponse as ApiExtensionDeleteResponse,
)
from stackit.postgresflex.models.api_extension_list import (
ApiExtensionList as ApiExtensionList,
)
from stackit.postgresflex.models.api_extension_load_response import (
ApiExtensionLoadResponse as ApiExtensionLoadResponse,
)
from stackit.postgresflex.models.api_install_response import (
ApiInstallResponse as ApiInstallResponse,
)
from stackit.postgresflex.models.api_installed_list_response import (
ApiInstalledListResponse as ApiInstalledListResponse,
)
from stackit.postgresflex.models.backup import Backup as Backup
from stackit.postgresflex.models.clone_instance_payload import (
CloneInstancePayload as CloneInstancePayload,
)
from stackit.postgresflex.models.clone_instance_response import (
CloneInstanceResponse as CloneInstanceResponse,
)
from stackit.postgresflex.models.create_database_payload import (
CreateDatabasePayload as CreateDatabasePayload,
)
from stackit.postgresflex.models.create_instance_payload import (
CreateInstancePayload as CreateInstancePayload,
)
from stackit.postgresflex.models.create_instance_response import (
CreateInstanceResponse as CreateInstanceResponse,
)
from stackit.postgresflex.models.create_user_payload import (
CreateUserPayload as CreateUserPayload,
)
from stackit.postgresflex.models.create_user_response import (
CreateUserResponse as CreateUserResponse,
)
from stackit.postgresflex.models.error import Error as Error
from stackit.postgresflex.models.extensions_configuration import (
ExtensionsConfiguration as ExtensionsConfiguration,
)
from stackit.postgresflex.models.extensions_extension_list_response import (
ExtensionsExtensionListResponse as ExtensionsExtensionListResponse,
)
from stackit.postgresflex.models.extensions_new_config import (
ExtensionsNewConfig as ExtensionsNewConfig,
)
from stackit.postgresflex.models.flavor import Flavor as Flavor
from stackit.postgresflex.models.get_backup_response import (
GetBackupResponse as GetBackupResponse,
)
from stackit.postgresflex.models.get_user_response import (
GetUserResponse as GetUserResponse,
)
from stackit.postgresflex.models.instance import Instance as Instance
from stackit.postgresflex.models.instance_create_database_response import (
InstanceCreateDatabaseResponse as InstanceCreateDatabaseResponse,
)
from stackit.postgresflex.models.instance_data_point import (
InstanceDataPoint as InstanceDataPoint,
)
from stackit.postgresflex.models.instance_database import (
InstanceDatabase as InstanceDatabase,
)
from stackit.postgresflex.models.instance_host import InstanceHost as InstanceHost
from stackit.postgresflex.models.instance_host_metric import (
InstanceHostMetric as InstanceHostMetric,
)
from stackit.postgresflex.models.instance_list_databases_response import (
InstanceListDatabasesResponse as InstanceListDatabasesResponse,
)
from stackit.postgresflex.models.instance_list_instance import (
InstanceListInstance as InstanceListInstance,
)
from stackit.postgresflex.models.instance_metrics_response import (
InstanceMetricsResponse as InstanceMetricsResponse,
)
from stackit.postgresflex.models.instance_response import (
InstanceResponse as InstanceResponse,
)
from stackit.postgresflex.models.list_backups_response import (
ListBackupsResponse as ListBackupsResponse,
)
from stackit.postgresflex.models.list_flavors_response import (
ListFlavorsResponse as ListFlavorsResponse,
)
from stackit.postgresflex.models.list_instances_response import (
ListInstancesResponse as ListInstancesResponse,
)
from stackit.postgresflex.models.list_storages_response import (
ListStoragesResponse as ListStoragesResponse,
)
from stackit.postgresflex.models.list_users_response import (
ListUsersResponse as ListUsersResponse,
)
from stackit.postgresflex.models.list_users_response_item import (
ListUsersResponseItem as ListUsersResponseItem,
)
from stackit.postgresflex.models.list_versions_response import (
ListVersionsResponse as ListVersionsResponse,
)
from stackit.postgresflex.models.partial_update_instance_payload import (
PartialUpdateInstancePayload as PartialUpdateInstancePayload,
)
from stackit.postgresflex.models.partial_update_instance_response import (
PartialUpdateInstanceResponse as PartialUpdateInstanceResponse,
)
from stackit.postgresflex.models.partial_update_user_payload import (
PartialUpdateUserPayload as PartialUpdateUserPayload,
)
from stackit.postgresflex.models.postgres_database_parameter import (
PostgresDatabaseParameter as PostgresDatabaseParameter,
)
from stackit.postgresflex.models.postgres_database_parameter_response import (
PostgresDatabaseParameterResponse as PostgresDatabaseParameterResponse,
)
from stackit.postgresflex.models.reset_user_response import (
ResetUserResponse as ResetUserResponse,
)
from stackit.postgresflex.models.storage import Storage as Storage
from stackit.postgresflex.models.storage_range import StorageRange as StorageRange
from stackit.postgresflex.models.update_backup_schedule_payload import (
UpdateBackupSchedulePayload as UpdateBackupSchedulePayload,
)
from stackit.postgresflex.models.update_instance_payload import (
UpdateInstancePayload as UpdateInstancePayload,
)
from stackit.postgresflex.models.update_user_payload import (
UpdateUserPayload as UpdateUserPayload,
)
from stackit.postgresflex.models.user import User as User
from stackit.postgresflex.models.user_response import UserResponse as UserResponse