stackit-postgresflex 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/PKG-INFO +1 -1
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/pyproject.toml +1 -1
- stackit_postgresflex-1.0.2/src/stackit/postgresflex/__init__.py +244 -0
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/api/default_api.py +105 -105
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/api_client.py +18 -5
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/configuration.py +33 -11
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/exceptions.py +20 -1
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/__init__.py +1 -1
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/acl.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_configuration.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_extension_config_load_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_extension_configure_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_extension_delete_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_extension_list.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_extension_load_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_install_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/api_installed_list_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/backup.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/clone_instance_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/clone_instance_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/create_database_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/create_instance_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/create_instance_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/create_user_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/create_user_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/error.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/extensions_configuration.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/extensions_extension_list_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/extensions_new_config.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/flavor.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/get_backup_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/get_user_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_create_database_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_data_point.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_database.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_host.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_host_metric.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_list_databases_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_list_instance.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_metrics_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/instance_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_backups_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_flavors_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_instances_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_storages_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_users_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_users_response_item.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/list_versions_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/partial_update_instance_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/partial_update_instance_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/partial_update_user_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/postgres_database_parameter.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/postgres_database_parameter_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/reset_user_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/storage.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/storage_range.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/update_backup_schedule_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/update_instance_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/update_user_payload.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/user.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/models/user_response.py +2 -2
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/rest.py +2 -2
- stackit_postgresflex-1.0.1/src/stackit/postgresflex/__init__.py +0 -120
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/LICENSE.md +0 -0
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/NOTICE.txt +0 -0
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/README.md +0 -0
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/api/__init__.py +0 -0
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/api_response.py +0 -0
- {stackit_postgresflex-1.0.1 → stackit_postgresflex-1.0.2}/src/stackit/postgresflex/py.typed +0 -0
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
STACKIT PostgreSQL Flex API
|
|
7
|
+
|
|
8
|
+
This is the documentation for the STACKIT postgres service
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 2.0.0
|
|
11
|
+
Contact: support@stackit.cloud
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"DefaultApi",
|
|
23
|
+
"ApiResponse",
|
|
24
|
+
"ApiClient",
|
|
25
|
+
"HostConfiguration",
|
|
26
|
+
"OpenApiException",
|
|
27
|
+
"ApiTypeError",
|
|
28
|
+
"ApiValueError",
|
|
29
|
+
"ApiKeyError",
|
|
30
|
+
"ApiAttributeError",
|
|
31
|
+
"ApiException",
|
|
32
|
+
"ACL",
|
|
33
|
+
"ApiConfiguration",
|
|
34
|
+
"ApiExtensionConfigLoadResponse",
|
|
35
|
+
"ApiExtensionConfigureResponse",
|
|
36
|
+
"ApiExtensionDeleteResponse",
|
|
37
|
+
"ApiExtensionList",
|
|
38
|
+
"ApiExtensionLoadResponse",
|
|
39
|
+
"ApiInstallResponse",
|
|
40
|
+
"ApiInstalledListResponse",
|
|
41
|
+
"Backup",
|
|
42
|
+
"CloneInstancePayload",
|
|
43
|
+
"CloneInstanceResponse",
|
|
44
|
+
"CreateDatabasePayload",
|
|
45
|
+
"CreateInstancePayload",
|
|
46
|
+
"CreateInstanceResponse",
|
|
47
|
+
"CreateUserPayload",
|
|
48
|
+
"CreateUserResponse",
|
|
49
|
+
"Error",
|
|
50
|
+
"ExtensionsConfiguration",
|
|
51
|
+
"ExtensionsExtensionListResponse",
|
|
52
|
+
"ExtensionsNewConfig",
|
|
53
|
+
"Flavor",
|
|
54
|
+
"GetBackupResponse",
|
|
55
|
+
"GetUserResponse",
|
|
56
|
+
"Instance",
|
|
57
|
+
"InstanceCreateDatabaseResponse",
|
|
58
|
+
"InstanceDataPoint",
|
|
59
|
+
"InstanceDatabase",
|
|
60
|
+
"InstanceHost",
|
|
61
|
+
"InstanceHostMetric",
|
|
62
|
+
"InstanceListDatabasesResponse",
|
|
63
|
+
"InstanceListInstance",
|
|
64
|
+
"InstanceMetricsResponse",
|
|
65
|
+
"InstanceResponse",
|
|
66
|
+
"ListBackupsResponse",
|
|
67
|
+
"ListFlavorsResponse",
|
|
68
|
+
"ListInstancesResponse",
|
|
69
|
+
"ListStoragesResponse",
|
|
70
|
+
"ListUsersResponse",
|
|
71
|
+
"ListUsersResponseItem",
|
|
72
|
+
"ListVersionsResponse",
|
|
73
|
+
"PartialUpdateInstancePayload",
|
|
74
|
+
"PartialUpdateInstanceResponse",
|
|
75
|
+
"PartialUpdateUserPayload",
|
|
76
|
+
"PostgresDatabaseParameter",
|
|
77
|
+
"PostgresDatabaseParameterResponse",
|
|
78
|
+
"ResetUserResponse",
|
|
79
|
+
"Storage",
|
|
80
|
+
"StorageRange",
|
|
81
|
+
"UpdateBackupSchedulePayload",
|
|
82
|
+
"UpdateInstancePayload",
|
|
83
|
+
"UpdateUserPayload",
|
|
84
|
+
"User",
|
|
85
|
+
"UserResponse",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
# import apis into sdk package
|
|
89
|
+
from stackit.postgresflex.api.default_api import DefaultApi as DefaultApi
|
|
90
|
+
from stackit.postgresflex.api_client import ApiClient as ApiClient
|
|
91
|
+
|
|
92
|
+
# import ApiClient
|
|
93
|
+
from stackit.postgresflex.api_response import ApiResponse as ApiResponse
|
|
94
|
+
from stackit.postgresflex.configuration import HostConfiguration as HostConfiguration
|
|
95
|
+
from stackit.postgresflex.exceptions import ApiAttributeError as ApiAttributeError
|
|
96
|
+
from stackit.postgresflex.exceptions import ApiException as ApiException
|
|
97
|
+
from stackit.postgresflex.exceptions import ApiKeyError as ApiKeyError
|
|
98
|
+
from stackit.postgresflex.exceptions import ApiTypeError as ApiTypeError
|
|
99
|
+
from stackit.postgresflex.exceptions import ApiValueError as ApiValueError
|
|
100
|
+
from stackit.postgresflex.exceptions import OpenApiException as OpenApiException
|
|
101
|
+
|
|
102
|
+
# import models into sdk package
|
|
103
|
+
from stackit.postgresflex.models.acl import ACL as ACL
|
|
104
|
+
from stackit.postgresflex.models.api_configuration import (
|
|
105
|
+
ApiConfiguration as ApiConfiguration,
|
|
106
|
+
)
|
|
107
|
+
from stackit.postgresflex.models.api_extension_config_load_response import (
|
|
108
|
+
ApiExtensionConfigLoadResponse as ApiExtensionConfigLoadResponse,
|
|
109
|
+
)
|
|
110
|
+
from stackit.postgresflex.models.api_extension_configure_response import (
|
|
111
|
+
ApiExtensionConfigureResponse as ApiExtensionConfigureResponse,
|
|
112
|
+
)
|
|
113
|
+
from stackit.postgresflex.models.api_extension_delete_response import (
|
|
114
|
+
ApiExtensionDeleteResponse as ApiExtensionDeleteResponse,
|
|
115
|
+
)
|
|
116
|
+
from stackit.postgresflex.models.api_extension_list import (
|
|
117
|
+
ApiExtensionList as ApiExtensionList,
|
|
118
|
+
)
|
|
119
|
+
from stackit.postgresflex.models.api_extension_load_response import (
|
|
120
|
+
ApiExtensionLoadResponse as ApiExtensionLoadResponse,
|
|
121
|
+
)
|
|
122
|
+
from stackit.postgresflex.models.api_install_response import (
|
|
123
|
+
ApiInstallResponse as ApiInstallResponse,
|
|
124
|
+
)
|
|
125
|
+
from stackit.postgresflex.models.api_installed_list_response import (
|
|
126
|
+
ApiInstalledListResponse as ApiInstalledListResponse,
|
|
127
|
+
)
|
|
128
|
+
from stackit.postgresflex.models.backup import Backup as Backup
|
|
129
|
+
from stackit.postgresflex.models.clone_instance_payload import (
|
|
130
|
+
CloneInstancePayload as CloneInstancePayload,
|
|
131
|
+
)
|
|
132
|
+
from stackit.postgresflex.models.clone_instance_response import (
|
|
133
|
+
CloneInstanceResponse as CloneInstanceResponse,
|
|
134
|
+
)
|
|
135
|
+
from stackit.postgresflex.models.create_database_payload import (
|
|
136
|
+
CreateDatabasePayload as CreateDatabasePayload,
|
|
137
|
+
)
|
|
138
|
+
from stackit.postgresflex.models.create_instance_payload import (
|
|
139
|
+
CreateInstancePayload as CreateInstancePayload,
|
|
140
|
+
)
|
|
141
|
+
from stackit.postgresflex.models.create_instance_response import (
|
|
142
|
+
CreateInstanceResponse as CreateInstanceResponse,
|
|
143
|
+
)
|
|
144
|
+
from stackit.postgresflex.models.create_user_payload import (
|
|
145
|
+
CreateUserPayload as CreateUserPayload,
|
|
146
|
+
)
|
|
147
|
+
from stackit.postgresflex.models.create_user_response import (
|
|
148
|
+
CreateUserResponse as CreateUserResponse,
|
|
149
|
+
)
|
|
150
|
+
from stackit.postgresflex.models.error import Error as Error
|
|
151
|
+
from stackit.postgresflex.models.extensions_configuration import (
|
|
152
|
+
ExtensionsConfiguration as ExtensionsConfiguration,
|
|
153
|
+
)
|
|
154
|
+
from stackit.postgresflex.models.extensions_extension_list_response import (
|
|
155
|
+
ExtensionsExtensionListResponse as ExtensionsExtensionListResponse,
|
|
156
|
+
)
|
|
157
|
+
from stackit.postgresflex.models.extensions_new_config import (
|
|
158
|
+
ExtensionsNewConfig as ExtensionsNewConfig,
|
|
159
|
+
)
|
|
160
|
+
from stackit.postgresflex.models.flavor import Flavor as Flavor
|
|
161
|
+
from stackit.postgresflex.models.get_backup_response import (
|
|
162
|
+
GetBackupResponse as GetBackupResponse,
|
|
163
|
+
)
|
|
164
|
+
from stackit.postgresflex.models.get_user_response import (
|
|
165
|
+
GetUserResponse as GetUserResponse,
|
|
166
|
+
)
|
|
167
|
+
from stackit.postgresflex.models.instance import Instance as Instance
|
|
168
|
+
from stackit.postgresflex.models.instance_create_database_response import (
|
|
169
|
+
InstanceCreateDatabaseResponse as InstanceCreateDatabaseResponse,
|
|
170
|
+
)
|
|
171
|
+
from stackit.postgresflex.models.instance_data_point import (
|
|
172
|
+
InstanceDataPoint as InstanceDataPoint,
|
|
173
|
+
)
|
|
174
|
+
from stackit.postgresflex.models.instance_database import (
|
|
175
|
+
InstanceDatabase as InstanceDatabase,
|
|
176
|
+
)
|
|
177
|
+
from stackit.postgresflex.models.instance_host import InstanceHost as InstanceHost
|
|
178
|
+
from stackit.postgresflex.models.instance_host_metric import (
|
|
179
|
+
InstanceHostMetric as InstanceHostMetric,
|
|
180
|
+
)
|
|
181
|
+
from stackit.postgresflex.models.instance_list_databases_response import (
|
|
182
|
+
InstanceListDatabasesResponse as InstanceListDatabasesResponse,
|
|
183
|
+
)
|
|
184
|
+
from stackit.postgresflex.models.instance_list_instance import (
|
|
185
|
+
InstanceListInstance as InstanceListInstance,
|
|
186
|
+
)
|
|
187
|
+
from stackit.postgresflex.models.instance_metrics_response import (
|
|
188
|
+
InstanceMetricsResponse as InstanceMetricsResponse,
|
|
189
|
+
)
|
|
190
|
+
from stackit.postgresflex.models.instance_response import (
|
|
191
|
+
InstanceResponse as InstanceResponse,
|
|
192
|
+
)
|
|
193
|
+
from stackit.postgresflex.models.list_backups_response import (
|
|
194
|
+
ListBackupsResponse as ListBackupsResponse,
|
|
195
|
+
)
|
|
196
|
+
from stackit.postgresflex.models.list_flavors_response import (
|
|
197
|
+
ListFlavorsResponse as ListFlavorsResponse,
|
|
198
|
+
)
|
|
199
|
+
from stackit.postgresflex.models.list_instances_response import (
|
|
200
|
+
ListInstancesResponse as ListInstancesResponse,
|
|
201
|
+
)
|
|
202
|
+
from stackit.postgresflex.models.list_storages_response import (
|
|
203
|
+
ListStoragesResponse as ListStoragesResponse,
|
|
204
|
+
)
|
|
205
|
+
from stackit.postgresflex.models.list_users_response import (
|
|
206
|
+
ListUsersResponse as ListUsersResponse,
|
|
207
|
+
)
|
|
208
|
+
from stackit.postgresflex.models.list_users_response_item import (
|
|
209
|
+
ListUsersResponseItem as ListUsersResponseItem,
|
|
210
|
+
)
|
|
211
|
+
from stackit.postgresflex.models.list_versions_response import (
|
|
212
|
+
ListVersionsResponse as ListVersionsResponse,
|
|
213
|
+
)
|
|
214
|
+
from stackit.postgresflex.models.partial_update_instance_payload import (
|
|
215
|
+
PartialUpdateInstancePayload as PartialUpdateInstancePayload,
|
|
216
|
+
)
|
|
217
|
+
from stackit.postgresflex.models.partial_update_instance_response import (
|
|
218
|
+
PartialUpdateInstanceResponse as PartialUpdateInstanceResponse,
|
|
219
|
+
)
|
|
220
|
+
from stackit.postgresflex.models.partial_update_user_payload import (
|
|
221
|
+
PartialUpdateUserPayload as PartialUpdateUserPayload,
|
|
222
|
+
)
|
|
223
|
+
from stackit.postgresflex.models.postgres_database_parameter import (
|
|
224
|
+
PostgresDatabaseParameter as PostgresDatabaseParameter,
|
|
225
|
+
)
|
|
226
|
+
from stackit.postgresflex.models.postgres_database_parameter_response import (
|
|
227
|
+
PostgresDatabaseParameterResponse as PostgresDatabaseParameterResponse,
|
|
228
|
+
)
|
|
229
|
+
from stackit.postgresflex.models.reset_user_response import (
|
|
230
|
+
ResetUserResponse as ResetUserResponse,
|
|
231
|
+
)
|
|
232
|
+
from stackit.postgresflex.models.storage import Storage as Storage
|
|
233
|
+
from stackit.postgresflex.models.storage_range import StorageRange as StorageRange
|
|
234
|
+
from stackit.postgresflex.models.update_backup_schedule_payload import (
|
|
235
|
+
UpdateBackupSchedulePayload as UpdateBackupSchedulePayload,
|
|
236
|
+
)
|
|
237
|
+
from stackit.postgresflex.models.update_instance_payload import (
|
|
238
|
+
UpdateInstancePayload as UpdateInstancePayload,
|
|
239
|
+
)
|
|
240
|
+
from stackit.postgresflex.models.update_user_payload import (
|
|
241
|
+
UpdateUserPayload as UpdateUserPayload,
|
|
242
|
+
)
|
|
243
|
+
from stackit.postgresflex.models.user import User as User
|
|
244
|
+
from stackit.postgresflex.models.user_response import UserResponse as UserResponse
|