latitudesh-python-sdk 1.1.0__py3-none-any.whl → 2.0.1__py3-none-any.whl
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.
Potentially problematic release.
This version of latitudesh-python-sdk might be problematic. Click here for more details.
- latitudesh_python_sdk/_hooks/types.py +7 -0
- latitudesh_python_sdk/_version.py +6 -4
- latitudesh_python_sdk/apikeys.py +73 -156
- latitudesh_python_sdk/basesdk.py +16 -24
- latitudesh_python_sdk/billing.py +13 -32
- latitudesh_python_sdk/events_sdk.py +11 -34
- latitudesh_python_sdk/firewalls_sdk.py +105 -264
- latitudesh_python_sdk/httpclient.py +6 -16
- latitudesh_python_sdk/ipaddresses_sdk.py +29 -68
- latitudesh_python_sdk/models/__init__.py +2586 -1126
- latitudesh_python_sdk/models/apierror.py +30 -14
- latitudesh_python_sdk/models/assign_server_virtual_networkop.py +2 -2
- latitudesh_python_sdk/models/{bandwidth_plan.py → bandwidth_plan_data.py} +9 -9
- latitudesh_python_sdk/models/bandwidth_plans.py +14 -3
- latitudesh_python_sdk/models/custom_tag.py +15 -0
- latitudesh_python_sdk/models/custom_tag_data.py +54 -0
- latitudesh_python_sdk/models/custom_tags.py +26 -0
- latitudesh_python_sdk/models/delete_ssh_keyop.py +16 -0
- latitudesh_python_sdk/models/delete_user_dataop.py +16 -0
- latitudesh_python_sdk/models/deploy_config.py +11 -6
- latitudesh_python_sdk/models/error_object.py +11 -6
- latitudesh_python_sdk/models/event_data.py +98 -0
- latitudesh_python_sdk/models/events.py +16 -1
- latitudesh_python_sdk/models/filesystem_data.py +4 -0
- latitudesh_python_sdk/models/firewall.py +15 -0
- latitudesh_python_sdk/models/firewall_assignment_data.py +50 -0
- latitudesh_python_sdk/models/firewall_assignments.py +29 -0
- latitudesh_python_sdk/models/firewall_data.py +71 -0
- latitudesh_python_sdk/models/firewall_server.py +4 -1
- latitudesh_python_sdk/models/firewalls.py +7 -7
- latitudesh_python_sdk/models/get_firewall_assignmentsop.py +3 -3
- latitudesh_python_sdk/models/get_ssh_keyop.py +30 -0
- latitudesh_python_sdk/models/get_ssh_keysop.py +22 -0
- latitudesh_python_sdk/models/get_traffic_consumptionop.py +8 -4
- latitudesh_python_sdk/models/get_user_dataop.py +31 -0
- latitudesh_python_sdk/models/get_users_dataop.py +35 -0
- latitudesh_python_sdk/models/latitudesherror.py +26 -0
- latitudesh_python_sdk/models/no_response_error.py +13 -0
- latitudesh_python_sdk/models/operating_system_data.py +65 -0
- latitudesh_python_sdk/models/operating_systems.py +15 -0
- latitudesh_python_sdk/models/out_of_band_connection.py +4 -4
- latitudesh_python_sdk/models/patch_user_dataop.py +69 -0
- latitudesh_python_sdk/models/post_ssh_keyop.py +58 -0
- latitudesh_python_sdk/models/post_user_dataop.py +45 -0
- latitudesh_python_sdk/models/project_include.py +3 -0
- latitudesh_python_sdk/models/put_ssh_keyop.py +80 -0
- latitudesh_python_sdk/models/region_resource_data.py +4 -4
- latitudesh_python_sdk/models/responsevalidationerror.py +25 -0
- latitudesh_python_sdk/models/role.py +11 -0
- latitudesh_python_sdk/models/server.py +11 -6
- latitudesh_python_sdk/models/server_data.py +14 -3
- latitudesh_python_sdk/models/server_region_resource_data.py +40 -0
- latitudesh_python_sdk/models/{ssh_key.py → ssh_keys.py} +13 -2
- latitudesh_python_sdk/models/storage_plan_data.py +47 -0
- latitudesh_python_sdk/models/storage_plans.py +14 -3
- latitudesh_python_sdk/models/update_serverop.py +58 -10
- latitudesh_python_sdk/models/user_data.py +11 -0
- latitudesh_python_sdk/models/virtual_network.py +30 -6
- latitudesh_python_sdk/models/virtual_network1.py +15 -0
- latitudesh_python_sdk/models/virtual_network_assignment.py +41 -0
- latitudesh_python_sdk/models/virtual_network_assignment_data.py +68 -0
- latitudesh_python_sdk/models/virtual_network_assignments.py +5 -5
- latitudesh_python_sdk/models/virtual_network_data.py +88 -0
- latitudesh_python_sdk/models/virtual_networks.py +3 -3
- latitudesh_python_sdk/operatingsystems_sdk.py +13 -32
- latitudesh_python_sdk/plans.py +99 -214
- latitudesh_python_sdk/privatenetworks.py +131 -290
- latitudesh_python_sdk/projects_sdk.py +79 -158
- latitudesh_python_sdk/regions_sdk.py +25 -66
- latitudesh_python_sdk/roles.py +25 -64
- latitudesh_python_sdk/sdk.py +110 -73
- latitudesh_python_sdk/sdkconfiguration.py +0 -7
- latitudesh_python_sdk/servers_sdk.py +305 -646
- latitudesh_python_sdk/sshkeys_sdk.py +1856 -0
- latitudesh_python_sdk/storage.py +41 -120
- latitudesh_python_sdk/tags.py +67 -146
- latitudesh_python_sdk/teams_sdk.py +41 -100
- latitudesh_python_sdk/teamsmembers.py +37 -96
- latitudesh_python_sdk/traffic_sdk.py +37 -76
- latitudesh_python_sdk/userdata_sdk.py +959 -149
- latitudesh_python_sdk/userprofile.py +37 -100
- latitudesh_python_sdk/utils/__init__.py +131 -46
- latitudesh_python_sdk/utils/forms.py +49 -28
- latitudesh_python_sdk/utils/serializers.py +3 -2
- latitudesh_python_sdk/utils/unmarshal_json_response.py +24 -0
- latitudesh_python_sdk/virtualmachines.py +71 -140
- latitudesh_python_sdk/vpnsessions.py +93 -172
- {latitudesh_python_sdk-1.1.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/METADATA +76 -43
- {latitudesh_python_sdk-1.1.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/RECORD +91 -67
- {latitudesh_python_sdk-1.1.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/WHEEL +1 -1
- latitudesh_python_sdk/models/storage_plan.py +0 -36
- latitudesh_python_sdk/sshkeys.py +0 -1050
- {latitudesh_python_sdk-1.1.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/LICENSE +0 -0
|
@@ -1,1117 +1,1329 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
|
-
from
|
|
4
|
-
|
|
5
|
-
APIKeyTypedDict,
|
|
6
|
-
APIKeyUser,
|
|
7
|
-
APIKeyUserTypedDict,
|
|
8
|
-
Attributes,
|
|
9
|
-
AttributesTypedDict,
|
|
10
|
-
Type,
|
|
11
|
-
)
|
|
12
|
-
from .apierror import APIError
|
|
13
|
-
from .assign_server_virtual_networkop import (
|
|
14
|
-
AssignServerVirtualNetworkPrivateNetworksAttributes,
|
|
15
|
-
AssignServerVirtualNetworkPrivateNetworksAttributesTypedDict,
|
|
16
|
-
AssignServerVirtualNetworkPrivateNetworksData,
|
|
17
|
-
AssignServerVirtualNetworkPrivateNetworksDataTypedDict,
|
|
18
|
-
AssignServerVirtualNetworkPrivateNetworksRequestBody,
|
|
19
|
-
AssignServerVirtualNetworkPrivateNetworksRequestBodyTypedDict,
|
|
20
|
-
AssignServerVirtualNetworkPrivateNetworksType,
|
|
21
|
-
)
|
|
22
|
-
from .bandwidth_packages import (
|
|
23
|
-
BandwidthPackages,
|
|
24
|
-
BandwidthPackagesAttributes,
|
|
25
|
-
BandwidthPackagesAttributesTypedDict,
|
|
26
|
-
BandwidthPackagesProject,
|
|
27
|
-
BandwidthPackagesProjectTypedDict,
|
|
28
|
-
BandwidthPackagesType,
|
|
29
|
-
BandwidthPackagesTypedDict,
|
|
30
|
-
Packages,
|
|
31
|
-
PackagesTypedDict,
|
|
32
|
-
)
|
|
33
|
-
from .bandwidth_plan import (
|
|
34
|
-
BandwidthPlan,
|
|
35
|
-
BandwidthPlanAttributes,
|
|
36
|
-
BandwidthPlanAttributesTypedDict,
|
|
37
|
-
BandwidthPlanType,
|
|
38
|
-
BandwidthPlanTypedDict,
|
|
39
|
-
Brl,
|
|
40
|
-
BrlTypedDict,
|
|
41
|
-
Pricing,
|
|
42
|
-
PricingTypedDict,
|
|
43
|
-
Usd,
|
|
44
|
-
UsdTypedDict,
|
|
45
|
-
)
|
|
46
|
-
from .bandwidth_plans import BandwidthPlans, BandwidthPlansTypedDict
|
|
47
|
-
from .billing_usage import (
|
|
48
|
-
BillingUsage,
|
|
49
|
-
BillingUsageAttributes,
|
|
50
|
-
BillingUsageAttributesTypedDict,
|
|
51
|
-
BillingUsageData,
|
|
52
|
-
BillingUsageDataTypedDict,
|
|
53
|
-
BillingUsageProject,
|
|
54
|
-
BillingUsageProjectTypedDict,
|
|
55
|
-
BillingUsageType,
|
|
56
|
-
BillingUsageTypedDict,
|
|
57
|
-
Discounts,
|
|
58
|
-
DiscountsTypedDict,
|
|
59
|
-
Metadata,
|
|
60
|
-
MetadataTypedDict,
|
|
61
|
-
Period,
|
|
62
|
-
PeriodTypedDict,
|
|
63
|
-
Products,
|
|
64
|
-
ProductsTypedDict,
|
|
65
|
-
Unit,
|
|
66
|
-
UsageType,
|
|
67
|
-
)
|
|
68
|
-
from .create_api_key import (
|
|
69
|
-
CreateAPIKey,
|
|
70
|
-
CreateAPIKeyAttributes,
|
|
71
|
-
CreateAPIKeyAttributesTypedDict,
|
|
72
|
-
CreateAPIKeyType,
|
|
73
|
-
CreateAPIKeyTypedDict,
|
|
74
|
-
Data,
|
|
75
|
-
DataTypedDict,
|
|
76
|
-
)
|
|
77
|
-
from .create_firewall_assignmentop import (
|
|
78
|
-
CreateFirewallAssignmentFirewallsAttributes,
|
|
79
|
-
CreateFirewallAssignmentFirewallsAttributesTypedDict,
|
|
80
|
-
CreateFirewallAssignmentFirewallsData,
|
|
81
|
-
CreateFirewallAssignmentFirewallsDataTypedDict,
|
|
82
|
-
CreateFirewallAssignmentFirewallsRequestBody,
|
|
83
|
-
CreateFirewallAssignmentFirewallsRequestBodyTypedDict,
|
|
84
|
-
CreateFirewallAssignmentFirewallsType,
|
|
85
|
-
CreateFirewallAssignmentRequest,
|
|
86
|
-
CreateFirewallAssignmentRequestTypedDict,
|
|
87
|
-
)
|
|
88
|
-
from .create_firewallop import (
|
|
89
|
-
CreateFirewallFirewallsAttributes,
|
|
90
|
-
CreateFirewallFirewallsAttributesTypedDict,
|
|
91
|
-
CreateFirewallFirewallsData,
|
|
92
|
-
CreateFirewallFirewallsDataTypedDict,
|
|
93
|
-
CreateFirewallFirewallsRequestBody,
|
|
94
|
-
CreateFirewallFirewallsRequestBodyTypedDict,
|
|
95
|
-
CreateFirewallFirewallsType,
|
|
96
|
-
CreateFirewallProtocol,
|
|
97
|
-
CreateFirewallRules,
|
|
98
|
-
CreateFirewallRulesTypedDict,
|
|
99
|
-
)
|
|
100
|
-
from .create_ipmi_sessionop import (
|
|
101
|
-
CreateIpmiSessionRequest,
|
|
102
|
-
CreateIpmiSessionRequestTypedDict,
|
|
103
|
-
)
|
|
104
|
-
from .create_projectop import (
|
|
105
|
-
CreateProjectProjectsAttributes,
|
|
106
|
-
CreateProjectProjectsAttributesTypedDict,
|
|
107
|
-
CreateProjectProjectsData,
|
|
108
|
-
CreateProjectProjectsDataTypedDict,
|
|
109
|
-
CreateProjectProjectsEnvironment,
|
|
110
|
-
CreateProjectProjectsRequestBody,
|
|
111
|
-
CreateProjectProjectsRequestBodyTypedDict,
|
|
112
|
-
CreateProjectProjectsType,
|
|
113
|
-
CreateProjectProvisioningType,
|
|
114
|
-
CreateProjectResponseBody,
|
|
115
|
-
CreateProjectResponseBodyTypedDict,
|
|
116
|
-
)
|
|
117
|
-
from .create_server_actionop import (
|
|
118
|
-
CreateServerActionAction,
|
|
119
|
-
CreateServerActionRequest,
|
|
120
|
-
CreateServerActionRequestTypedDict,
|
|
121
|
-
CreateServerActionServersAttributes,
|
|
122
|
-
CreateServerActionServersAttributesTypedDict,
|
|
123
|
-
CreateServerActionServersData,
|
|
124
|
-
CreateServerActionServersDataTypedDict,
|
|
125
|
-
CreateServerActionServersRequestBody,
|
|
126
|
-
CreateServerActionServersRequestBodyTypedDict,
|
|
127
|
-
CreateServerActionServersType,
|
|
128
|
-
)
|
|
129
|
-
from .create_server_out_of_bandop import (
|
|
130
|
-
CreateServerOutOfBandRequest,
|
|
131
|
-
CreateServerOutOfBandRequestTypedDict,
|
|
132
|
-
CreateServerOutOfBandServersAttributes,
|
|
133
|
-
CreateServerOutOfBandServersAttributesTypedDict,
|
|
134
|
-
CreateServerOutOfBandServersData,
|
|
135
|
-
CreateServerOutOfBandServersDataTypedDict,
|
|
136
|
-
CreateServerOutOfBandServersRequestBody,
|
|
137
|
-
CreateServerOutOfBandServersRequestBodyTypedDict,
|
|
138
|
-
CreateServerOutOfBandServersType,
|
|
139
|
-
)
|
|
140
|
-
from .create_server_reinstallop import (
|
|
141
|
-
CreateServerReinstallRequest,
|
|
142
|
-
CreateServerReinstallRequestTypedDict,
|
|
143
|
-
CreateServerReinstallServersAttributes,
|
|
144
|
-
CreateServerReinstallServersAttributesTypedDict,
|
|
145
|
-
CreateServerReinstallServersData,
|
|
146
|
-
CreateServerReinstallServersDataTypedDict,
|
|
147
|
-
CreateServerReinstallServersOperatingSystem,
|
|
148
|
-
CreateServerReinstallServersPartitions,
|
|
149
|
-
CreateServerReinstallServersPartitionsTypedDict,
|
|
150
|
-
CreateServerReinstallServersRaid,
|
|
151
|
-
CreateServerReinstallServersRequestBody,
|
|
152
|
-
CreateServerReinstallServersRequestBodyTypedDict,
|
|
153
|
-
CreateServerReinstallServersType,
|
|
154
|
-
)
|
|
155
|
-
from .create_serverop import (
|
|
156
|
-
CreateServerRaid,
|
|
157
|
-
CreateServerServersAttributes,
|
|
158
|
-
CreateServerServersAttributesTypedDict,
|
|
159
|
-
CreateServerServersBilling,
|
|
160
|
-
CreateServerServersData,
|
|
161
|
-
CreateServerServersDataTypedDict,
|
|
162
|
-
CreateServerServersOperatingSystem,
|
|
163
|
-
CreateServerServersPlan,
|
|
164
|
-
CreateServerServersRequestBody,
|
|
165
|
-
CreateServerServersRequestBodyTypedDict,
|
|
166
|
-
CreateServerServersSite,
|
|
167
|
-
CreateServerServersType,
|
|
168
|
-
)
|
|
169
|
-
from .create_tagop import (
|
|
170
|
-
CreateTagTagsAttributes,
|
|
171
|
-
CreateTagTagsAttributesTypedDict,
|
|
172
|
-
CreateTagTagsData,
|
|
173
|
-
CreateTagTagsDataTypedDict,
|
|
174
|
-
CreateTagTagsRequestBody,
|
|
175
|
-
CreateTagTagsRequestBodyTypedDict,
|
|
176
|
-
CreateTagTagsType,
|
|
177
|
-
)
|
|
178
|
-
from .create_virtual_networkop import (
|
|
179
|
-
CreateVirtualNetworkPrivateNetworksAttributes,
|
|
180
|
-
CreateVirtualNetworkPrivateNetworksAttributesTypedDict,
|
|
181
|
-
CreateVirtualNetworkPrivateNetworksData,
|
|
182
|
-
CreateVirtualNetworkPrivateNetworksDataTypedDict,
|
|
183
|
-
CreateVirtualNetworkPrivateNetworksRequestBody,
|
|
184
|
-
CreateVirtualNetworkPrivateNetworksRequestBodyTypedDict,
|
|
185
|
-
CreateVirtualNetworkPrivateNetworksSite,
|
|
186
|
-
CreateVirtualNetworkPrivateNetworksType,
|
|
187
|
-
)
|
|
188
|
-
from .custom_tag import (
|
|
189
|
-
CustomTag,
|
|
190
|
-
CustomTagAttributes,
|
|
191
|
-
CustomTagAttributesTypedDict,
|
|
192
|
-
CustomTagType,
|
|
193
|
-
CustomTagTypedDict,
|
|
194
|
-
)
|
|
195
|
-
from .delete_api_keyop import DeleteAPIKeyRequest, DeleteAPIKeyRequestTypedDict
|
|
196
|
-
from .delete_firewall_assignmentop import (
|
|
197
|
-
DeleteFirewallAssignmentRequest,
|
|
198
|
-
DeleteFirewallAssignmentRequestTypedDict,
|
|
199
|
-
)
|
|
200
|
-
from .delete_firewallop import DeleteFirewallRequest, DeleteFirewallRequestTypedDict
|
|
201
|
-
from .delete_project_ssh_keyop import (
|
|
202
|
-
DeleteProjectSSHKeyRequest,
|
|
203
|
-
DeleteProjectSSHKeyRequestTypedDict,
|
|
204
|
-
)
|
|
205
|
-
from .delete_project_user_dataop import (
|
|
206
|
-
DeleteProjectUserDataRequest,
|
|
207
|
-
DeleteProjectUserDataRequestTypedDict,
|
|
208
|
-
)
|
|
209
|
-
from .delete_projectop import DeleteProjectRequest, DeleteProjectRequestTypedDict
|
|
210
|
-
from .delete_storage_filesystemsop import (
|
|
211
|
-
DeleteStorageFilesystemsRequest,
|
|
212
|
-
DeleteStorageFilesystemsRequestTypedDict,
|
|
213
|
-
)
|
|
214
|
-
from .delete_virtual_networks_assignmentsop import (
|
|
215
|
-
DeleteVirtualNetworksAssignmentsRequest,
|
|
216
|
-
DeleteVirtualNetworksAssignmentsRequestTypedDict,
|
|
217
|
-
)
|
|
218
|
-
from .delete_vpn_sessionop import (
|
|
219
|
-
DeleteVpnSessionRequest,
|
|
220
|
-
DeleteVpnSessionRequestTypedDict,
|
|
221
|
-
)
|
|
222
|
-
from .deploy_config import (
|
|
223
|
-
DeployConfig,
|
|
224
|
-
DeployConfigAttributes,
|
|
225
|
-
DeployConfigAttributesTypedDict,
|
|
226
|
-
DeployConfigData,
|
|
227
|
-
DeployConfigDataTypedDict,
|
|
228
|
-
DeployConfigError,
|
|
229
|
-
DeployConfigErrorData,
|
|
230
|
-
DeployConfigPartitions,
|
|
231
|
-
DeployConfigPartitionsTypedDict,
|
|
232
|
-
DeployConfigTypedDict,
|
|
233
|
-
)
|
|
234
|
-
from .destroy_serverop import DestroyServerRequest, DestroyServerRequestTypedDict
|
|
235
|
-
from .destroy_tagop import DestroyTagRequest, DestroyTagRequestTypedDict
|
|
236
|
-
from .destroy_team_memberop import (
|
|
237
|
-
DestroyTeamMemberRequest,
|
|
238
|
-
DestroyTeamMemberRequestTypedDict,
|
|
239
|
-
)
|
|
240
|
-
from .destroy_virtual_machineop import (
|
|
241
|
-
DestroyVirtualMachineRequest,
|
|
242
|
-
DestroyVirtualMachineRequestTypedDict,
|
|
243
|
-
)
|
|
244
|
-
from .destroy_virtual_networkop import (
|
|
245
|
-
DestroyVirtualNetworkRequest,
|
|
246
|
-
DestroyVirtualNetworkRequestTypedDict,
|
|
247
|
-
)
|
|
248
|
-
from .error_object import (
|
|
249
|
-
ErrorObject,
|
|
250
|
-
ErrorObjectData,
|
|
251
|
-
ErrorObjectMeta,
|
|
252
|
-
ErrorObjectMetaTypedDict,
|
|
253
|
-
Errors,
|
|
254
|
-
ErrorsTypedDict,
|
|
255
|
-
)
|
|
256
|
-
from .events import (
|
|
257
|
-
Author,
|
|
258
|
-
AuthorTypedDict,
|
|
259
|
-
Events,
|
|
260
|
-
EventsAttributes,
|
|
261
|
-
EventsAttributesTypedDict,
|
|
262
|
-
EventsProject,
|
|
263
|
-
EventsProjectTypedDict,
|
|
264
|
-
EventsTeam,
|
|
265
|
-
EventsTeamTypedDict,
|
|
266
|
-
EventsTypedDict,
|
|
267
|
-
Target,
|
|
268
|
-
TargetTypedDict,
|
|
269
|
-
)
|
|
270
|
-
from .filesystem_data import (
|
|
271
|
-
FilesystemData,
|
|
272
|
-
FilesystemDataAttributes,
|
|
273
|
-
FilesystemDataAttributesTypedDict,
|
|
274
|
-
FilesystemDataProject,
|
|
275
|
-
FilesystemDataProjectTypedDict,
|
|
276
|
-
FilesystemDataType,
|
|
277
|
-
FilesystemDataTypedDict,
|
|
278
|
-
)
|
|
279
|
-
from .firewall import (
|
|
280
|
-
Firewall,
|
|
281
|
-
FirewallAttributes,
|
|
282
|
-
FirewallAttributesTypedDict,
|
|
283
|
-
FirewallProject,
|
|
284
|
-
FirewallProjectTypedDict,
|
|
285
|
-
FirewallType,
|
|
286
|
-
FirewallTypedDict,
|
|
287
|
-
Rules,
|
|
288
|
-
RulesTypedDict,
|
|
289
|
-
)
|
|
290
|
-
from .firewall_server import (
|
|
291
|
-
FirewallServer,
|
|
292
|
-
FirewallServerAttributes,
|
|
293
|
-
FirewallServerAttributesTypedDict,
|
|
294
|
-
FirewallServerServer,
|
|
295
|
-
FirewallServerServerTypedDict,
|
|
296
|
-
FirewallServerType,
|
|
297
|
-
FirewallServerTypedDict,
|
|
298
|
-
)
|
|
299
|
-
from .firewalls import Firewalls, FirewallsTypedDict, Meta, MetaTypedDict
|
|
300
|
-
from .get_bandwidth_plansop import (
|
|
301
|
-
GetBandwidthPlansRequest,
|
|
302
|
-
GetBandwidthPlansRequestTypedDict,
|
|
303
|
-
GetBandwidthPlansResponse,
|
|
304
|
-
GetBandwidthPlansResponseTypedDict,
|
|
305
|
-
)
|
|
306
|
-
from .get_billing_usageop import GetBillingUsageRequest, GetBillingUsageRequestTypedDict
|
|
307
|
-
from .get_eventsop import (
|
|
308
|
-
GetEventsRequest,
|
|
309
|
-
GetEventsRequestTypedDict,
|
|
310
|
-
GetEventsResponse,
|
|
311
|
-
GetEventsResponseBody,
|
|
312
|
-
GetEventsResponseBodyTypedDict,
|
|
313
|
-
GetEventsResponseTypedDict,
|
|
314
|
-
)
|
|
315
|
-
from .get_firewall_assignmentsop import (
|
|
316
|
-
GetFirewallAssignmentsRequest,
|
|
317
|
-
GetFirewallAssignmentsRequestTypedDict,
|
|
318
|
-
GetFirewallAssignmentsResponse,
|
|
319
|
-
GetFirewallAssignmentsResponseTypedDict,
|
|
320
|
-
)
|
|
321
|
-
from .get_firewallop import GetFirewallRequest, GetFirewallRequestTypedDict
|
|
322
|
-
from .get_ipop import GetIPRequest, GetIPRequestTypedDict
|
|
323
|
-
from .get_ipsop import (
|
|
324
|
-
FilterFamily,
|
|
325
|
-
FilterType,
|
|
326
|
-
GetIpsRequest,
|
|
327
|
-
GetIpsRequestTypedDict,
|
|
328
|
-
GetIpsResponse,
|
|
329
|
-
GetIpsResponseTypedDict,
|
|
330
|
-
)
|
|
331
|
-
from .get_planop import GetPlanRequest, GetPlanRequestTypedDict
|
|
332
|
-
from .get_plans_operating_systemop import (
|
|
333
|
-
GetPlansOperatingSystemRequest,
|
|
334
|
-
GetPlansOperatingSystemRequestTypedDict,
|
|
335
|
-
GetPlansOperatingSystemResponse,
|
|
336
|
-
GetPlansOperatingSystemResponseBody,
|
|
337
|
-
GetPlansOperatingSystemResponseBodyTypedDict,
|
|
338
|
-
GetPlansOperatingSystemResponseTypedDict,
|
|
339
|
-
)
|
|
340
|
-
from .get_plansop import (
|
|
341
|
-
FilterStockLevel,
|
|
342
|
-
GetPlansRequest,
|
|
343
|
-
GetPlansRequestTypedDict,
|
|
344
|
-
GetPlansResponseBody,
|
|
345
|
-
GetPlansResponseBodyTypedDict,
|
|
346
|
-
)
|
|
347
|
-
from .get_project_ssh_keyop import (
|
|
348
|
-
GetProjectSSHKeyRequest,
|
|
349
|
-
GetProjectSSHKeyRequestTypedDict,
|
|
350
|
-
GetProjectSSHKeyResponseBody,
|
|
351
|
-
GetProjectSSHKeyResponseBodyTypedDict,
|
|
352
|
-
)
|
|
353
|
-
from .get_project_ssh_keysop import (
|
|
354
|
-
GetProjectSSHKeysRequest,
|
|
355
|
-
GetProjectSSHKeysRequestTypedDict,
|
|
356
|
-
)
|
|
357
|
-
from .get_project_user_dataop import (
|
|
358
|
-
GetProjectUserDataRequest,
|
|
359
|
-
GetProjectUserDataRequestTypedDict,
|
|
360
|
-
)
|
|
361
|
-
from .get_project_users_dataop import (
|
|
362
|
-
GetProjectUsersDataRequest,
|
|
363
|
-
GetProjectUsersDataRequestTypedDict,
|
|
364
|
-
GetProjectUsersDataResponseBody,
|
|
365
|
-
GetProjectUsersDataResponseBodyTypedDict,
|
|
366
|
-
)
|
|
367
|
-
from .get_projectsop import (
|
|
368
|
-
GetProjectsRequest,
|
|
369
|
-
GetProjectsRequestTypedDict,
|
|
370
|
-
GetProjectsResponse,
|
|
371
|
-
GetProjectsResponseTypedDict,
|
|
372
|
-
)
|
|
373
|
-
from .get_regionop import GetRegionRequest, GetRegionRequestTypedDict
|
|
374
|
-
from .get_regionsop import (
|
|
375
|
-
GetRegionsRequest,
|
|
376
|
-
GetRegionsRequestTypedDict,
|
|
377
|
-
GetRegionsResponse,
|
|
378
|
-
GetRegionsResponseTypedDict,
|
|
379
|
-
)
|
|
380
|
-
from .get_role_idop import GetRoleIDRequest, GetRoleIDRequestTypedDict
|
|
381
|
-
from .get_rolesop import (
|
|
382
|
-
GetRolesRequest,
|
|
383
|
-
GetRolesRequestTypedDict,
|
|
384
|
-
GetRolesResponse,
|
|
385
|
-
GetRolesResponseBody,
|
|
386
|
-
GetRolesResponseBodyTypedDict,
|
|
387
|
-
GetRolesResponseTypedDict,
|
|
388
|
-
)
|
|
389
|
-
from .get_server_deploy_configop import (
|
|
390
|
-
GetServerDeployConfigRequest,
|
|
391
|
-
GetServerDeployConfigRequestTypedDict,
|
|
392
|
-
)
|
|
393
|
-
from .get_server_out_of_bandop import (
|
|
394
|
-
GetServerOutOfBandRequest,
|
|
395
|
-
GetServerOutOfBandRequestTypedDict,
|
|
396
|
-
)
|
|
397
|
-
from .get_serverop import GetServerRequest, GetServerRequestTypedDict
|
|
398
|
-
from .get_serversop import (
|
|
399
|
-
GetServersRequest,
|
|
400
|
-
GetServersRequestTypedDict,
|
|
401
|
-
GetServersResponse,
|
|
402
|
-
GetServersResponseTypedDict,
|
|
403
|
-
)
|
|
404
|
-
from .get_storage_filesystemsop import (
|
|
405
|
-
GetStorageFilesystemsRequest,
|
|
406
|
-
GetStorageFilesystemsRequestTypedDict,
|
|
407
|
-
)
|
|
408
|
-
from .get_team_membersop import (
|
|
409
|
-
GetTeamMembersRequest,
|
|
410
|
-
GetTeamMembersRequestTypedDict,
|
|
411
|
-
GetTeamMembersResponse,
|
|
412
|
-
GetTeamMembersResponseTypedDict,
|
|
413
|
-
)
|
|
414
|
-
from .get_traffic_consumptionop import (
|
|
415
|
-
GetTrafficConsumptionRequest,
|
|
416
|
-
GetTrafficConsumptionRequestTypedDict,
|
|
417
|
-
)
|
|
418
|
-
from .get_traffic_quotaop import GetTrafficQuotaRequest, GetTrafficQuotaRequestTypedDict
|
|
419
|
-
from .get_user_profileop import (
|
|
420
|
-
GetUserProfileResponseBody,
|
|
421
|
-
GetUserProfileResponseBodyTypedDict,
|
|
422
|
-
)
|
|
423
|
-
from .get_virtual_networkop import (
|
|
424
|
-
GetVirtualNetworkRequest,
|
|
425
|
-
GetVirtualNetworkRequestTypedDict,
|
|
426
|
-
GetVirtualNetworkResponseBody,
|
|
427
|
-
GetVirtualNetworkResponseBodyTypedDict,
|
|
428
|
-
)
|
|
429
|
-
from .get_virtual_networks_assignmentsop import (
|
|
430
|
-
GetVirtualNetworksAssignmentsRequest,
|
|
431
|
-
GetVirtualNetworksAssignmentsRequestTypedDict,
|
|
432
|
-
GetVirtualNetworksAssignmentsResponse,
|
|
433
|
-
GetVirtualNetworksAssignmentsResponseTypedDict,
|
|
434
|
-
)
|
|
435
|
-
from .get_virtual_networksop import (
|
|
436
|
-
GetVirtualNetworksRequest,
|
|
437
|
-
GetVirtualNetworksRequestTypedDict,
|
|
438
|
-
GetVirtualNetworksResponse,
|
|
439
|
-
GetVirtualNetworksResponseTypedDict,
|
|
440
|
-
)
|
|
441
|
-
from .get_vpn_sessionsop import (
|
|
442
|
-
FilterLocation,
|
|
443
|
-
GetVpnSessionsMeta,
|
|
444
|
-
GetVpnSessionsMetaTypedDict,
|
|
445
|
-
GetVpnSessionsRequest,
|
|
446
|
-
GetVpnSessionsRequestTypedDict,
|
|
447
|
-
GetVpnSessionsResponseBody,
|
|
448
|
-
GetVpnSessionsResponseBodyTypedDict,
|
|
449
|
-
)
|
|
450
|
-
from .index_virtual_machineop import (
|
|
451
|
-
IndexVirtualMachineRequest,
|
|
452
|
-
IndexVirtualMachineRequestTypedDict,
|
|
453
|
-
)
|
|
454
|
-
from .ip_address import (
|
|
455
|
-
Assignment,
|
|
456
|
-
AssignmentTypedDict,
|
|
457
|
-
Family,
|
|
458
|
-
IPAddress,
|
|
459
|
-
IPAddressAttributes,
|
|
460
|
-
IPAddressAttributesTypedDict,
|
|
461
|
-
IPAddressProject,
|
|
462
|
-
IPAddressProjectTypedDict,
|
|
463
|
-
IPAddressRegion,
|
|
464
|
-
IPAddressRegionTypedDict,
|
|
465
|
-
IPAddressType,
|
|
466
|
-
IPAddressTypedDict,
|
|
467
|
-
Location,
|
|
468
|
-
LocationTypedDict,
|
|
469
|
-
)
|
|
470
|
-
from .ip_addresses import IPAddresses, IPAddressesTypedDict
|
|
471
|
-
from .ipmi_session import (
|
|
472
|
-
IpmiSession,
|
|
473
|
-
IpmiSessionAttributes,
|
|
474
|
-
IpmiSessionAttributesTypedDict,
|
|
475
|
-
IpmiSessionData,
|
|
476
|
-
IpmiSessionDataTypedDict,
|
|
477
|
-
IpmiSessionType,
|
|
478
|
-
IpmiSessionTypedDict,
|
|
479
|
-
)
|
|
480
|
-
from .list_firewallsop import (
|
|
481
|
-
ListFirewallsRequest,
|
|
482
|
-
ListFirewallsRequestTypedDict,
|
|
483
|
-
ListFirewallsResponse,
|
|
484
|
-
ListFirewallsResponseTypedDict,
|
|
485
|
-
)
|
|
486
|
-
from .membership import (
|
|
487
|
-
Membership,
|
|
488
|
-
MembershipAttributes,
|
|
489
|
-
MembershipAttributesTypedDict,
|
|
490
|
-
MembershipData,
|
|
491
|
-
MembershipDataTypedDict,
|
|
492
|
-
MembershipRole,
|
|
493
|
-
MembershipTypedDict,
|
|
494
|
-
)
|
|
495
|
-
from .operating_systems import (
|
|
496
|
-
Features,
|
|
497
|
-
FeaturesTypedDict,
|
|
498
|
-
OperatingSystems,
|
|
499
|
-
OperatingSystemsAttributes,
|
|
500
|
-
OperatingSystemsAttributesTypedDict,
|
|
501
|
-
OperatingSystemsTypedDict,
|
|
502
|
-
)
|
|
503
|
-
from .out_of_band_connection import (
|
|
504
|
-
Credentials,
|
|
505
|
-
CredentialsTypedDict,
|
|
506
|
-
OutOfBandConnection,
|
|
507
|
-
OutOfBandConnectionAttributes,
|
|
508
|
-
OutOfBandConnectionAttributesTypedDict,
|
|
509
|
-
OutOfBandConnectionData,
|
|
510
|
-
OutOfBandConnectionDataTypedDict,
|
|
511
|
-
OutOfBandConnectionSSHKey,
|
|
512
|
-
OutOfBandConnectionSSHKeyTypedDict,
|
|
513
|
-
OutOfBandConnectionTypedDict,
|
|
514
|
-
)
|
|
515
|
-
from .patch_current_teamop import (
|
|
516
|
-
PatchCurrentTeamRequest,
|
|
517
|
-
PatchCurrentTeamRequestTypedDict,
|
|
518
|
-
PatchCurrentTeamResponseBody,
|
|
519
|
-
PatchCurrentTeamResponseBodyTypedDict,
|
|
520
|
-
PatchCurrentTeamTeamsAttributes,
|
|
521
|
-
PatchCurrentTeamTeamsAttributesTypedDict,
|
|
522
|
-
PatchCurrentTeamTeamsCurrency,
|
|
523
|
-
PatchCurrentTeamTeamsData,
|
|
524
|
-
PatchCurrentTeamTeamsDataTypedDict,
|
|
525
|
-
PatchCurrentTeamTeamsRequestBody,
|
|
526
|
-
PatchCurrentTeamTeamsRequestBodyTypedDict,
|
|
527
|
-
PatchCurrentTeamTeamsType,
|
|
528
|
-
)
|
|
529
|
-
from .patch_storage_filesystemsop import (
|
|
530
|
-
PatchStorageFilesystemsRequest,
|
|
531
|
-
PatchStorageFilesystemsRequestTypedDict,
|
|
532
|
-
PatchStorageFilesystemsResponseBody,
|
|
533
|
-
PatchStorageFilesystemsResponseBodyTypedDict,
|
|
534
|
-
PatchStorageFilesystemsStorageAttributes,
|
|
535
|
-
PatchStorageFilesystemsStorageAttributesTypedDict,
|
|
536
|
-
PatchStorageFilesystemsStorageData,
|
|
537
|
-
PatchStorageFilesystemsStorageDataTypedDict,
|
|
538
|
-
PatchStorageFilesystemsStorageRequestBody,
|
|
539
|
-
PatchStorageFilesystemsStorageRequestBodyTypedDict,
|
|
540
|
-
PatchStorageFilesystemsStorageType,
|
|
541
|
-
)
|
|
542
|
-
from .patch_user_profileop import (
|
|
543
|
-
PatchUserProfileRequest,
|
|
544
|
-
PatchUserProfileRequestTypedDict,
|
|
545
|
-
PatchUserProfileResponseBody,
|
|
546
|
-
PatchUserProfileResponseBodyTypedDict,
|
|
547
|
-
PatchUserProfileUserProfileAttributes,
|
|
548
|
-
PatchUserProfileUserProfileAttributesTypedDict,
|
|
549
|
-
PatchUserProfileUserProfileData,
|
|
550
|
-
PatchUserProfileUserProfileDataTypedDict,
|
|
551
|
-
PatchUserProfileUserProfileRequestBody,
|
|
552
|
-
PatchUserProfileUserProfileRequestBodyTypedDict,
|
|
553
|
-
PatchUserProfileUserProfileRole,
|
|
554
|
-
PatchUserProfileUserProfileType,
|
|
555
|
-
)
|
|
556
|
-
from .plan import Plan, PlanTypedDict
|
|
557
|
-
from .plan_data import (
|
|
558
|
-
CPU,
|
|
559
|
-
CPUTypedDict,
|
|
560
|
-
Drives,
|
|
561
|
-
DrivesTypedDict,
|
|
562
|
-
Gpu,
|
|
563
|
-
GpuTypedDict,
|
|
564
|
-
Locations,
|
|
565
|
-
LocationsTypedDict,
|
|
566
|
-
Memory,
|
|
567
|
-
MemoryTypedDict,
|
|
568
|
-
Nics,
|
|
569
|
-
NicsTypedDict,
|
|
570
|
-
PlanData,
|
|
571
|
-
PlanDataAttributes,
|
|
572
|
-
PlanDataAttributesType,
|
|
573
|
-
PlanDataAttributesTypedDict,
|
|
574
|
-
PlanDataBRL,
|
|
575
|
-
PlanDataBRLTypedDict,
|
|
576
|
-
PlanDataPricing,
|
|
577
|
-
PlanDataPricingTypedDict,
|
|
578
|
-
PlanDataRegions,
|
|
579
|
-
PlanDataRegionsTypedDict,
|
|
580
|
-
PlanDataType,
|
|
581
|
-
PlanDataTypedDict,
|
|
582
|
-
PlanDataUSD,
|
|
583
|
-
PlanDataUSDTypedDict,
|
|
584
|
-
Specs,
|
|
585
|
-
SpecsTypedDict,
|
|
586
|
-
StockLevel,
|
|
587
|
-
)
|
|
588
|
-
from .post_api_keyop import PostAPIKeyResponseBody, PostAPIKeyResponseBodyTypedDict
|
|
589
|
-
from .post_project_ssh_keyop import (
|
|
590
|
-
PostProjectSSHKeyRequest,
|
|
591
|
-
PostProjectSSHKeyRequestTypedDict,
|
|
592
|
-
PostProjectSSHKeyResponseBody,
|
|
593
|
-
PostProjectSSHKeyResponseBodyTypedDict,
|
|
594
|
-
PostProjectSSHKeySSHKeysAttributes,
|
|
595
|
-
PostProjectSSHKeySSHKeysAttributesTypedDict,
|
|
596
|
-
PostProjectSSHKeySSHKeysData,
|
|
597
|
-
PostProjectSSHKeySSHKeysDataTypedDict,
|
|
598
|
-
PostProjectSSHKeySSHKeysRequestBody,
|
|
599
|
-
PostProjectSSHKeySSHKeysRequestBodyTypedDict,
|
|
600
|
-
PostProjectSSHKeySSHKeysType,
|
|
601
|
-
)
|
|
602
|
-
from .post_project_user_dataop import (
|
|
603
|
-
PostProjectUserDataRequest,
|
|
604
|
-
PostProjectUserDataRequestTypedDict,
|
|
605
|
-
PostProjectUserDataUserDataAttributes,
|
|
606
|
-
PostProjectUserDataUserDataAttributesTypedDict,
|
|
607
|
-
PostProjectUserDataUserDataData,
|
|
608
|
-
PostProjectUserDataUserDataDataTypedDict,
|
|
609
|
-
PostProjectUserDataUserDataRequestBody,
|
|
610
|
-
PostProjectUserDataUserDataRequestBodyTypedDict,
|
|
611
|
-
PostProjectUserDataUserDataType,
|
|
612
|
-
)
|
|
613
|
-
from .post_storage_filesystemsop import (
|
|
614
|
-
PostStorageFilesystemsResponseBody,
|
|
615
|
-
PostStorageFilesystemsResponseBodyTypedDict,
|
|
616
|
-
PostStorageFilesystemsStorageAttributes,
|
|
617
|
-
PostStorageFilesystemsStorageAttributesTypedDict,
|
|
618
|
-
PostStorageFilesystemsStorageData,
|
|
619
|
-
PostStorageFilesystemsStorageDataTypedDict,
|
|
620
|
-
PostStorageFilesystemsStorageRequestBody,
|
|
621
|
-
PostStorageFilesystemsStorageRequestBodyTypedDict,
|
|
622
|
-
PostStorageFilesystemsStorageType,
|
|
623
|
-
)
|
|
624
|
-
from .post_team_membersop import (
|
|
625
|
-
PostTeamMembersTeamsMembersAttributes,
|
|
626
|
-
PostTeamMembersTeamsMembersAttributesTypedDict,
|
|
627
|
-
PostTeamMembersTeamsMembersData,
|
|
628
|
-
PostTeamMembersTeamsMembersDataTypedDict,
|
|
629
|
-
PostTeamMembersTeamsMembersRequestBody,
|
|
630
|
-
PostTeamMembersTeamsMembersRequestBodyTypedDict,
|
|
631
|
-
PostTeamMembersTeamsMembersRole,
|
|
632
|
-
PostTeamMembersTeamsMembersType,
|
|
633
|
-
)
|
|
634
|
-
from .post_teamop import (
|
|
635
|
-
PostTeamResponseBody,
|
|
636
|
-
PostTeamResponseBodyTypedDict,
|
|
637
|
-
PostTeamTeamsAttributes,
|
|
638
|
-
PostTeamTeamsAttributesTypedDict,
|
|
639
|
-
PostTeamTeamsCurrency,
|
|
640
|
-
PostTeamTeamsData,
|
|
641
|
-
PostTeamTeamsDataTypedDict,
|
|
642
|
-
PostTeamTeamsRequestBody,
|
|
643
|
-
PostTeamTeamsRequestBodyTypedDict,
|
|
644
|
-
PostTeamTeamsType,
|
|
645
|
-
)
|
|
646
|
-
from .post_vpn_sessionop import (
|
|
647
|
-
PostVpnSessionVpnSessionsAttributes,
|
|
648
|
-
PostVpnSessionVpnSessionsAttributesTypedDict,
|
|
649
|
-
PostVpnSessionVpnSessionsData,
|
|
650
|
-
PostVpnSessionVpnSessionsDataTypedDict,
|
|
651
|
-
PostVpnSessionVpnSessionsRequestBody,
|
|
652
|
-
PostVpnSessionVpnSessionsRequestBodyTypedDict,
|
|
653
|
-
PostVpnSessionVpnSessionsSite,
|
|
654
|
-
PostVpnSessionVpnSessionsType,
|
|
655
|
-
)
|
|
656
|
-
from .project import (
|
|
657
|
-
BillingMethod,
|
|
658
|
-
BillingType,
|
|
659
|
-
Environment,
|
|
660
|
-
Project,
|
|
661
|
-
ProjectAttributes,
|
|
662
|
-
ProjectAttributesTypedDict,
|
|
663
|
-
ProjectBilling,
|
|
664
|
-
ProjectBillingTypedDict,
|
|
665
|
-
ProjectStats,
|
|
666
|
-
ProjectStatsTypedDict,
|
|
667
|
-
ProjectTypedDict,
|
|
668
|
-
)
|
|
669
|
-
from .project_include import (
|
|
670
|
-
BillingModel,
|
|
671
|
-
BillingModelTypedDict,
|
|
672
|
-
ProjectInclude,
|
|
673
|
-
ProjectIncludeTypedDict,
|
|
674
|
-
Stats,
|
|
675
|
-
StatsTypedDict,
|
|
676
|
-
)
|
|
677
|
-
from .projects import Projects, ProjectsTypedDict
|
|
678
|
-
from .put_project_ssh_keyop import (
|
|
679
|
-
PutProjectSSHKeyRequest,
|
|
680
|
-
PutProjectSSHKeyRequestTypedDict,
|
|
681
|
-
PutProjectSSHKeyResponseBody,
|
|
682
|
-
PutProjectSSHKeyResponseBodyTypedDict,
|
|
683
|
-
PutProjectSSHKeySSHKeysAttributes,
|
|
684
|
-
PutProjectSSHKeySSHKeysAttributesTypedDict,
|
|
685
|
-
PutProjectSSHKeySSHKeysData,
|
|
686
|
-
PutProjectSSHKeySSHKeysDataTypedDict,
|
|
687
|
-
PutProjectSSHKeySSHKeysRequestBody,
|
|
688
|
-
PutProjectSSHKeySSHKeysRequestBodyTypedDict,
|
|
689
|
-
PutProjectSSHKeySSHKeysType,
|
|
690
|
-
)
|
|
691
|
-
from .put_project_user_dataop import (
|
|
692
|
-
PutProjectUserDataRequest,
|
|
693
|
-
PutProjectUserDataRequestTypedDict,
|
|
694
|
-
PutProjectUserDataUserDataAttributes,
|
|
695
|
-
PutProjectUserDataUserDataAttributesTypedDict,
|
|
696
|
-
PutProjectUserDataUserDataData,
|
|
697
|
-
PutProjectUserDataUserDataDataTypedDict,
|
|
698
|
-
PutProjectUserDataUserDataRequestBody,
|
|
699
|
-
PutProjectUserDataUserDataRequestBodyTypedDict,
|
|
700
|
-
PutProjectUserDataUserDataType,
|
|
701
|
-
)
|
|
702
|
-
from .put_vpn_sessionop import PutVpnSessionRequest, PutVpnSessionRequestTypedDict
|
|
703
|
-
from .region import (
|
|
704
|
-
Region,
|
|
705
|
-
RegionAttributes,
|
|
706
|
-
RegionAttributesTypedDict,
|
|
707
|
-
RegionCountry,
|
|
708
|
-
RegionCountryTypedDict,
|
|
709
|
-
RegionData,
|
|
710
|
-
RegionDataTypedDict,
|
|
711
|
-
RegionTypedDict,
|
|
712
|
-
)
|
|
713
|
-
from .region_resource_data import (
|
|
714
|
-
RegionResourceData,
|
|
715
|
-
RegionResourceDataTypedDict,
|
|
716
|
-
Site,
|
|
717
|
-
SiteTypedDict,
|
|
718
|
-
)
|
|
719
|
-
from .regions import (
|
|
720
|
-
Country,
|
|
721
|
-
CountryTypedDict,
|
|
722
|
-
Regions,
|
|
723
|
-
RegionsAttributes,
|
|
724
|
-
RegionsAttributesTypedDict,
|
|
725
|
-
RegionsData,
|
|
726
|
-
RegionsDataTypedDict,
|
|
727
|
-
RegionsTypedDict,
|
|
728
|
-
)
|
|
729
|
-
from .role import Role, RoleTypedDict
|
|
730
|
-
from .role_data import (
|
|
731
|
-
RoleData,
|
|
732
|
-
RoleDataAttributes,
|
|
733
|
-
RoleDataAttributesTypedDict,
|
|
734
|
-
RoleDataType,
|
|
735
|
-
RoleDataTypedDict,
|
|
736
|
-
)
|
|
737
|
-
from .security import Security, SecurityTypedDict
|
|
738
|
-
from .server import (
|
|
739
|
-
Server,
|
|
740
|
-
Server1,
|
|
741
|
-
Server1TypedDict,
|
|
742
|
-
ServerError,
|
|
743
|
-
ServerErrorData,
|
|
744
|
-
ServerMeta,
|
|
745
|
-
ServerMetaTypedDict,
|
|
746
|
-
ServerTypedDict,
|
|
747
|
-
)
|
|
748
|
-
from .server_action import (
|
|
749
|
-
ServerAction,
|
|
750
|
-
ServerActionAttributes,
|
|
751
|
-
ServerActionAttributesTypedDict,
|
|
752
|
-
ServerActionData,
|
|
753
|
-
ServerActionDataTypedDict,
|
|
754
|
-
ServerActionMeta,
|
|
755
|
-
ServerActionMetaTypedDict,
|
|
756
|
-
ServerActionType,
|
|
757
|
-
ServerActionTypedDict,
|
|
758
|
-
)
|
|
759
|
-
from .server_data import (
|
|
760
|
-
Distro,
|
|
761
|
-
DistroTypedDict,
|
|
762
|
-
IpmiStatus,
|
|
763
|
-
OperatingSystem,
|
|
764
|
-
OperatingSystemTypedDict,
|
|
765
|
-
ServerData,
|
|
766
|
-
ServerDataAttributes,
|
|
767
|
-
ServerDataAttributesTypedDict,
|
|
768
|
-
ServerDataFeatures,
|
|
769
|
-
ServerDataFeaturesTypedDict,
|
|
770
|
-
ServerDataPlan,
|
|
771
|
-
ServerDataPlanTypedDict,
|
|
772
|
-
ServerDataSpecs,
|
|
773
|
-
ServerDataSpecsTypedDict,
|
|
774
|
-
ServerDataTypedDict,
|
|
775
|
-
Status,
|
|
776
|
-
)
|
|
777
|
-
from .server_exit_rescue_modeop import (
|
|
778
|
-
ServerExitRescueModeRequest,
|
|
779
|
-
ServerExitRescueModeRequestTypedDict,
|
|
780
|
-
)
|
|
781
|
-
from .server_lockop import ServerLockRequest, ServerLockRequestTypedDict
|
|
782
|
-
from .server_rescue import (
|
|
783
|
-
ServerRescue,
|
|
784
|
-
ServerRescueMeta,
|
|
785
|
-
ServerRescueMetaTypedDict,
|
|
786
|
-
ServerRescueTypedDict,
|
|
787
|
-
)
|
|
788
|
-
from .server_schedule_deletion import (
|
|
789
|
-
ServerScheduleDeletion,
|
|
790
|
-
ServerScheduleDeletionAttributes,
|
|
791
|
-
ServerScheduleDeletionAttributesTypedDict,
|
|
792
|
-
ServerScheduleDeletionData,
|
|
793
|
-
ServerScheduleDeletionDataTypedDict,
|
|
794
|
-
ServerScheduleDeletionType,
|
|
795
|
-
ServerScheduleDeletionTypedDict,
|
|
796
|
-
)
|
|
797
|
-
from .server_schedule_deletionop import (
|
|
798
|
-
ServerScheduleDeletionRequest,
|
|
799
|
-
ServerScheduleDeletionRequestTypedDict,
|
|
800
|
-
)
|
|
801
|
-
from .server_start_rescue_modeop import (
|
|
802
|
-
ServerStartRescueModeRequest,
|
|
803
|
-
ServerStartRescueModeRequestTypedDict,
|
|
804
|
-
)
|
|
805
|
-
from .server_unlockop import ServerUnlockRequest, ServerUnlockRequestTypedDict
|
|
806
|
-
from .server_unschedule_deletionop import (
|
|
807
|
-
ServerUnscheduleDeletionRequest,
|
|
808
|
-
ServerUnscheduleDeletionRequestTypedDict,
|
|
809
|
-
)
|
|
810
|
-
from .servers import Servers, ServersMeta, ServersMetaTypedDict, ServersTypedDict
|
|
811
|
-
from .show_virtual_machineop import (
|
|
812
|
-
ShowVirtualMachineRequest,
|
|
813
|
-
ShowVirtualMachineRequestTypedDict,
|
|
814
|
-
)
|
|
815
|
-
from .ssh_key import SSHKey, SSHKeyTypedDict
|
|
816
|
-
from .ssh_key_data import (
|
|
817
|
-
SSHKeyData,
|
|
818
|
-
SSHKeyDataAttributes,
|
|
819
|
-
SSHKeyDataAttributesTypedDict,
|
|
820
|
-
SSHKeyDataType,
|
|
821
|
-
SSHKeyDataTypedDict,
|
|
822
|
-
)
|
|
823
|
-
from .storage_plan import (
|
|
824
|
-
StoragePlan,
|
|
825
|
-
StoragePlanData,
|
|
826
|
-
StoragePlanDataTypedDict,
|
|
827
|
-
StoragePlanPricing,
|
|
828
|
-
StoragePlanPricingTypedDict,
|
|
829
|
-
StoragePlanTypedDict,
|
|
830
|
-
)
|
|
831
|
-
from .storage_plans import StoragePlans, StoragePlansTypedDict
|
|
832
|
-
from .team import (
|
|
833
|
-
Team,
|
|
834
|
-
TeamAttributes,
|
|
835
|
-
TeamAttributesTypedDict,
|
|
836
|
-
TeamBilling,
|
|
837
|
-
TeamBillingTypedDict,
|
|
838
|
-
TeamTypedDict,
|
|
839
|
-
)
|
|
840
|
-
from .team_include import Currency, CurrencyTypedDict, TeamInclude, TeamIncludeTypedDict
|
|
841
|
-
from .team_members import (
|
|
842
|
-
TeamMembers,
|
|
843
|
-
TeamMembersData,
|
|
844
|
-
TeamMembersDataTypedDict,
|
|
845
|
-
TeamMembersRole,
|
|
846
|
-
TeamMembersRoleTypedDict,
|
|
847
|
-
TeamMembersTypedDict,
|
|
848
|
-
)
|
|
849
|
-
from .teams import Teams, TeamsMeta, TeamsMetaTypedDict, TeamsTypedDict
|
|
850
|
-
from .traffic import (
|
|
851
|
-
Traffic,
|
|
852
|
-
TrafficAttributes,
|
|
853
|
-
TrafficAttributesTypedDict,
|
|
854
|
-
TrafficData,
|
|
855
|
-
TrafficDataData,
|
|
856
|
-
TrafficDataDataTypedDict,
|
|
857
|
-
TrafficDataTypedDict,
|
|
858
|
-
TrafficRegions,
|
|
859
|
-
TrafficRegionsTypedDict,
|
|
860
|
-
TrafficType,
|
|
861
|
-
TrafficTypedDict,
|
|
862
|
-
)
|
|
863
|
-
from .traffic_quota import (
|
|
864
|
-
QuotaInMbps,
|
|
865
|
-
QuotaInMbpsTypedDict,
|
|
866
|
-
QuotaInTb,
|
|
867
|
-
QuotaInTbTypedDict,
|
|
868
|
-
QuotaPerProject,
|
|
869
|
-
QuotaPerProjectTypedDict,
|
|
870
|
-
QuotaPerRegion,
|
|
871
|
-
QuotaPerRegionTypedDict,
|
|
872
|
-
TrafficQuota,
|
|
873
|
-
TrafficQuotaAttributes,
|
|
874
|
-
TrafficQuotaAttributesTypedDict,
|
|
875
|
-
TrafficQuotaData,
|
|
876
|
-
TrafficQuotaDataTypedDict,
|
|
877
|
-
TrafficQuotaType,
|
|
878
|
-
TrafficQuotaTypedDict,
|
|
879
|
-
)
|
|
880
|
-
from .update_api_key import (
|
|
881
|
-
UpdateAPIKey,
|
|
882
|
-
UpdateAPIKeyAttributes,
|
|
883
|
-
UpdateAPIKeyAttributesTypedDict,
|
|
884
|
-
UpdateAPIKeyData,
|
|
885
|
-
UpdateAPIKeyDataTypedDict,
|
|
886
|
-
UpdateAPIKeyType,
|
|
887
|
-
UpdateAPIKeyTypedDict,
|
|
888
|
-
)
|
|
889
|
-
from .update_api_keyop import (
|
|
890
|
-
UpdateAPIKeyRequest,
|
|
891
|
-
UpdateAPIKeyRequestTypedDict,
|
|
892
|
-
UpdateAPIKeyResponseBody,
|
|
893
|
-
UpdateAPIKeyResponseBodyTypedDict,
|
|
894
|
-
)
|
|
895
|
-
from .update_firewallop import (
|
|
896
|
-
UpdateFirewallFirewallsAttributes,
|
|
897
|
-
UpdateFirewallFirewallsAttributesTypedDict,
|
|
898
|
-
UpdateFirewallFirewallsData,
|
|
899
|
-
UpdateFirewallFirewallsDataTypedDict,
|
|
900
|
-
UpdateFirewallFirewallsProtocol,
|
|
901
|
-
UpdateFirewallFirewallsRequestBody,
|
|
902
|
-
UpdateFirewallFirewallsRequestBodyTypedDict,
|
|
903
|
-
UpdateFirewallFirewallsRules,
|
|
904
|
-
UpdateFirewallFirewallsRulesTypedDict,
|
|
905
|
-
UpdateFirewallFirewallsType,
|
|
906
|
-
UpdateFirewallRequest,
|
|
907
|
-
UpdateFirewallRequestTypedDict,
|
|
908
|
-
)
|
|
909
|
-
from .update_plans_bandwidthop import (
|
|
910
|
-
UpdatePlansBandwidthPlansAttributes,
|
|
911
|
-
UpdatePlansBandwidthPlansAttributesTypedDict,
|
|
912
|
-
UpdatePlansBandwidthPlansData,
|
|
913
|
-
UpdatePlansBandwidthPlansDataTypedDict,
|
|
914
|
-
UpdatePlansBandwidthPlansRequestBody,
|
|
915
|
-
UpdatePlansBandwidthPlansRequestBodyTypedDict,
|
|
916
|
-
UpdatePlansBandwidthPlansType,
|
|
917
|
-
)
|
|
918
|
-
from .update_projectop import (
|
|
919
|
-
UpdateProjectProjectsAttributes,
|
|
920
|
-
UpdateProjectProjectsAttributesTypedDict,
|
|
921
|
-
UpdateProjectProjectsData,
|
|
922
|
-
UpdateProjectProjectsDataTypedDict,
|
|
923
|
-
UpdateProjectProjectsEnvironment,
|
|
924
|
-
UpdateProjectProjectsRequestBody,
|
|
925
|
-
UpdateProjectProjectsRequestBodyTypedDict,
|
|
926
|
-
UpdateProjectProjectsType,
|
|
927
|
-
UpdateProjectRequest,
|
|
928
|
-
UpdateProjectRequestTypedDict,
|
|
929
|
-
UpdateProjectResponseBody,
|
|
930
|
-
UpdateProjectResponseBodyTypedDict,
|
|
931
|
-
)
|
|
932
|
-
from .update_server_deploy_configop import (
|
|
933
|
-
UpdateServerDeployConfigPartitions,
|
|
934
|
-
UpdateServerDeployConfigPartitionsTypedDict,
|
|
935
|
-
UpdateServerDeployConfigRequest,
|
|
936
|
-
UpdateServerDeployConfigRequestTypedDict,
|
|
937
|
-
UpdateServerDeployConfigServersAttributes,
|
|
938
|
-
UpdateServerDeployConfigServersAttributesTypedDict,
|
|
939
|
-
UpdateServerDeployConfigServersOperatingSystem,
|
|
940
|
-
UpdateServerDeployConfigServersRaid,
|
|
941
|
-
UpdateServerDeployConfigServersRequestBody,
|
|
942
|
-
UpdateServerDeployConfigServersRequestBodyTypedDict,
|
|
943
|
-
UpdateServerDeployConfigServersType,
|
|
944
|
-
)
|
|
945
|
-
from .update_serverop import (
|
|
946
|
-
UpdateServerRequest,
|
|
947
|
-
UpdateServerRequestTypedDict,
|
|
948
|
-
UpdateServerServersAttributes,
|
|
949
|
-
UpdateServerServersAttributesTypedDict,
|
|
950
|
-
UpdateServerServersBilling,
|
|
951
|
-
UpdateServerServersRequestBody,
|
|
952
|
-
UpdateServerServersRequestBodyTypedDict,
|
|
953
|
-
UpdateServerServersType,
|
|
954
|
-
)
|
|
955
|
-
from .update_tagop import (
|
|
956
|
-
UpdateTagRequest,
|
|
957
|
-
UpdateTagRequestTypedDict,
|
|
958
|
-
UpdateTagTagsAttributes,
|
|
959
|
-
UpdateTagTagsAttributesTypedDict,
|
|
960
|
-
UpdateTagTagsData,
|
|
961
|
-
UpdateTagTagsDataTypedDict,
|
|
962
|
-
UpdateTagTagsRequestBody,
|
|
963
|
-
UpdateTagTagsRequestBodyTypedDict,
|
|
964
|
-
UpdateTagTagsType,
|
|
965
|
-
)
|
|
966
|
-
from .update_virtual_networkop import (
|
|
967
|
-
UpdateVirtualNetworkPrivateNetworksAttributes,
|
|
968
|
-
UpdateVirtualNetworkPrivateNetworksAttributesTypedDict,
|
|
969
|
-
UpdateVirtualNetworkPrivateNetworksData,
|
|
970
|
-
UpdateVirtualNetworkPrivateNetworksDataTypedDict,
|
|
971
|
-
UpdateVirtualNetworkPrivateNetworksRequestBody,
|
|
972
|
-
UpdateVirtualNetworkPrivateNetworksRequestBodyTypedDict,
|
|
973
|
-
UpdateVirtualNetworkPrivateNetworksType,
|
|
974
|
-
UpdateVirtualNetworkRequest,
|
|
975
|
-
UpdateVirtualNetworkRequestTypedDict,
|
|
976
|
-
)
|
|
977
|
-
from .user import (
|
|
978
|
-
User,
|
|
979
|
-
UserAttributes,
|
|
980
|
-
UserAttributesTypedDict,
|
|
981
|
-
UserRole,
|
|
982
|
-
UserRoleTypedDict,
|
|
983
|
-
UserTypedDict,
|
|
984
|
-
)
|
|
985
|
-
from .user_data import UserData, UserDataTypedDict
|
|
986
|
-
from .user_data_properties import (
|
|
987
|
-
UserDataProperties,
|
|
988
|
-
UserDataPropertiesAttributes,
|
|
989
|
-
UserDataPropertiesAttributesTypedDict,
|
|
990
|
-
UserDataPropertiesType,
|
|
991
|
-
UserDataPropertiesTypedDict,
|
|
992
|
-
)
|
|
993
|
-
from .user_include import (
|
|
994
|
-
UserInclude,
|
|
995
|
-
UserIncludeRole,
|
|
996
|
-
UserIncludeRoleTypedDict,
|
|
997
|
-
UserIncludeTypedDict,
|
|
998
|
-
)
|
|
999
|
-
from .user_team import (
|
|
1000
|
-
UserTeam,
|
|
1001
|
-
UserTeamAttributes,
|
|
1002
|
-
UserTeamAttributesTypedDict,
|
|
1003
|
-
UserTeamBilling,
|
|
1004
|
-
UserTeamBillingTypedDict,
|
|
1005
|
-
UserTeamTypedDict,
|
|
1006
|
-
)
|
|
1007
|
-
from .user_teams import (
|
|
1008
|
-
UserTeams,
|
|
1009
|
-
UserTeamsMeta,
|
|
1010
|
-
UserTeamsMetaTypedDict,
|
|
1011
|
-
UserTeamsTypedDict,
|
|
1012
|
-
)
|
|
1013
|
-
from .user_update import (
|
|
1014
|
-
UserUpdate,
|
|
1015
|
-
UserUpdateAttributes,
|
|
1016
|
-
UserUpdateAttributesTypedDict,
|
|
1017
|
-
UserUpdateTypedDict,
|
|
1018
|
-
)
|
|
1019
|
-
from .virtual_machine import (
|
|
1020
|
-
VirtualMachine,
|
|
1021
|
-
VirtualMachineMeta,
|
|
1022
|
-
VirtualMachineMetaTypedDict,
|
|
1023
|
-
VirtualMachineTypedDict,
|
|
1024
|
-
)
|
|
1025
|
-
from .virtual_machine_payload import (
|
|
1026
|
-
VirtualMachinePayload,
|
|
1027
|
-
VirtualMachinePayloadAttributes,
|
|
1028
|
-
VirtualMachinePayloadAttributesTypedDict,
|
|
1029
|
-
VirtualMachinePayloadData,
|
|
1030
|
-
VirtualMachinePayloadDataTypedDict,
|
|
1031
|
-
VirtualMachinePayloadType,
|
|
1032
|
-
VirtualMachinePayloadTypedDict,
|
|
1033
|
-
)
|
|
1034
|
-
from .virtual_machine_plans import (
|
|
1035
|
-
Disk,
|
|
1036
|
-
DiskTypedDict,
|
|
1037
|
-
Size,
|
|
1038
|
-
SizeTypedDict,
|
|
1039
|
-
VirtualMachinePlans,
|
|
1040
|
-
VirtualMachinePlansAttributes,
|
|
1041
|
-
VirtualMachinePlansAttributesTypedDict,
|
|
1042
|
-
VirtualMachinePlansBRL,
|
|
1043
|
-
VirtualMachinePlansBRLTypedDict,
|
|
1044
|
-
VirtualMachinePlansData,
|
|
1045
|
-
VirtualMachinePlansDataType,
|
|
1046
|
-
VirtualMachinePlansDataTypedDict,
|
|
1047
|
-
VirtualMachinePlansPricing,
|
|
1048
|
-
VirtualMachinePlansPricingTypedDict,
|
|
1049
|
-
VirtualMachinePlansRegions,
|
|
1050
|
-
VirtualMachinePlansRegionsTypedDict,
|
|
1051
|
-
VirtualMachinePlansSpecs,
|
|
1052
|
-
VirtualMachinePlansSpecsTypedDict,
|
|
1053
|
-
VirtualMachinePlansStockLevel,
|
|
1054
|
-
VirtualMachinePlansType,
|
|
1055
|
-
VirtualMachinePlansTypedDict,
|
|
1056
|
-
VirtualMachinePlansUSD,
|
|
1057
|
-
VirtualMachinePlansUSDTypedDict,
|
|
1058
|
-
VirtualMachinePlansUnit,
|
|
1059
|
-
)
|
|
1060
|
-
from .virtual_network import (
|
|
1061
|
-
VirtualNetwork,
|
|
1062
|
-
VirtualNetworkAttributes1,
|
|
1063
|
-
VirtualNetworkAttributes1TypedDict,
|
|
1064
|
-
VirtualNetworkAttributesRegion,
|
|
1065
|
-
VirtualNetworkAttributesRegionTypedDict,
|
|
1066
|
-
VirtualNetworkAttributesSite,
|
|
1067
|
-
VirtualNetworkAttributesSiteTypedDict,
|
|
1068
|
-
VirtualNetworkError,
|
|
1069
|
-
VirtualNetworkErrorData,
|
|
1070
|
-
VirtualNetworkType1,
|
|
1071
|
-
VirtualNetworkTypedDict,
|
|
1072
|
-
)
|
|
1073
|
-
from .virtual_network_assignment import (
|
|
1074
|
-
VirtualNetworkAssignment,
|
|
1075
|
-
VirtualNetworkAssignmentAttributes,
|
|
1076
|
-
VirtualNetworkAssignmentAttributesTypedDict,
|
|
1077
|
-
VirtualNetworkAssignmentTypedDict,
|
|
1078
|
-
)
|
|
1079
|
-
from .virtual_network_assignments import (
|
|
1080
|
-
VirtualNetworkAssignments,
|
|
1081
|
-
VirtualNetworkAssignmentsMeta,
|
|
1082
|
-
VirtualNetworkAssignmentsMetaTypedDict,
|
|
1083
|
-
VirtualNetworkAssignmentsTypedDict,
|
|
1084
|
-
)
|
|
1085
|
-
from .virtual_network1 import (
|
|
1086
|
-
VirtualNetwork1,
|
|
1087
|
-
VirtualNetwork1TypedDict,
|
|
1088
|
-
VirtualNetworkAttributes,
|
|
1089
|
-
VirtualNetworkAttributesTypedDict,
|
|
1090
|
-
VirtualNetworkRegion,
|
|
1091
|
-
VirtualNetworkRegionTypedDict,
|
|
1092
|
-
VirtualNetworkSite,
|
|
1093
|
-
VirtualNetworkSiteTypedDict,
|
|
1094
|
-
VirtualNetworkType,
|
|
1095
|
-
)
|
|
1096
|
-
from .virtual_networks import (
|
|
1097
|
-
VirtualNetworks,
|
|
1098
|
-
VirtualNetworksMeta,
|
|
1099
|
-
VirtualNetworksMetaTypedDict,
|
|
1100
|
-
VirtualNetworksTypedDict,
|
|
1101
|
-
)
|
|
1102
|
-
from .vpn_session_data_with_password import (
|
|
1103
|
-
VpnSessionDataWithPassword,
|
|
1104
|
-
VpnSessionDataWithPasswordAttributes,
|
|
1105
|
-
VpnSessionDataWithPasswordAttributesTypedDict,
|
|
1106
|
-
VpnSessionDataWithPasswordStatus,
|
|
1107
|
-
VpnSessionDataWithPasswordType,
|
|
1108
|
-
VpnSessionDataWithPasswordTypedDict,
|
|
1109
|
-
)
|
|
1110
|
-
from .vpn_session_with_password import (
|
|
1111
|
-
VpnSessionWithPassword,
|
|
1112
|
-
VpnSessionWithPasswordTypedDict,
|
|
1113
|
-
)
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
from importlib import import_module
|
|
1114
5
|
|
|
6
|
+
if TYPE_CHECKING:
|
|
7
|
+
from .api_key import (
|
|
8
|
+
APIKey,
|
|
9
|
+
APIKeyTypedDict,
|
|
10
|
+
APIKeyUser,
|
|
11
|
+
APIKeyUserTypedDict,
|
|
12
|
+
Attributes,
|
|
13
|
+
AttributesTypedDict,
|
|
14
|
+
Type,
|
|
15
|
+
)
|
|
16
|
+
from .apierror import APIError
|
|
17
|
+
from .assign_server_virtual_networkop import (
|
|
18
|
+
AssignServerVirtualNetworkPrivateNetworksAttributes,
|
|
19
|
+
AssignServerVirtualNetworkPrivateNetworksAttributesTypedDict,
|
|
20
|
+
AssignServerVirtualNetworkPrivateNetworksData,
|
|
21
|
+
AssignServerVirtualNetworkPrivateNetworksDataTypedDict,
|
|
22
|
+
AssignServerVirtualNetworkPrivateNetworksRequestBody,
|
|
23
|
+
AssignServerVirtualNetworkPrivateNetworksRequestBodyTypedDict,
|
|
24
|
+
AssignServerVirtualNetworkPrivateNetworksType,
|
|
25
|
+
)
|
|
26
|
+
from .bandwidth_packages import (
|
|
27
|
+
BandwidthPackages,
|
|
28
|
+
BandwidthPackagesAttributes,
|
|
29
|
+
BandwidthPackagesAttributesTypedDict,
|
|
30
|
+
BandwidthPackagesProject,
|
|
31
|
+
BandwidthPackagesProjectTypedDict,
|
|
32
|
+
BandwidthPackagesType,
|
|
33
|
+
BandwidthPackagesTypedDict,
|
|
34
|
+
Packages,
|
|
35
|
+
PackagesTypedDict,
|
|
36
|
+
)
|
|
37
|
+
from .bandwidth_plan_data import (
|
|
38
|
+
BandwidthPlanData,
|
|
39
|
+
BandwidthPlanDataAttributes,
|
|
40
|
+
BandwidthPlanDataAttributesTypedDict,
|
|
41
|
+
BandwidthPlanDataType,
|
|
42
|
+
BandwidthPlanDataTypedDict,
|
|
43
|
+
Brl,
|
|
44
|
+
BrlTypedDict,
|
|
45
|
+
Pricing,
|
|
46
|
+
PricingTypedDict,
|
|
47
|
+
Usd,
|
|
48
|
+
UsdTypedDict,
|
|
49
|
+
)
|
|
50
|
+
from .bandwidth_plans import (
|
|
51
|
+
BandwidthPlans,
|
|
52
|
+
BandwidthPlansMeta,
|
|
53
|
+
BandwidthPlansMetaTypedDict,
|
|
54
|
+
BandwidthPlansTypedDict,
|
|
55
|
+
)
|
|
56
|
+
from .billing_usage import (
|
|
57
|
+
BillingUsage,
|
|
58
|
+
BillingUsageAttributes,
|
|
59
|
+
BillingUsageAttributesTypedDict,
|
|
60
|
+
BillingUsageData,
|
|
61
|
+
BillingUsageDataTypedDict,
|
|
62
|
+
BillingUsageProject,
|
|
63
|
+
BillingUsageProjectTypedDict,
|
|
64
|
+
BillingUsageType,
|
|
65
|
+
BillingUsageTypedDict,
|
|
66
|
+
Discounts,
|
|
67
|
+
DiscountsTypedDict,
|
|
68
|
+
Metadata,
|
|
69
|
+
MetadataTypedDict,
|
|
70
|
+
Period,
|
|
71
|
+
PeriodTypedDict,
|
|
72
|
+
Products,
|
|
73
|
+
ProductsTypedDict,
|
|
74
|
+
Unit,
|
|
75
|
+
UsageType,
|
|
76
|
+
)
|
|
77
|
+
from .create_api_key import (
|
|
78
|
+
CreateAPIKey,
|
|
79
|
+
CreateAPIKeyAttributes,
|
|
80
|
+
CreateAPIKeyAttributesTypedDict,
|
|
81
|
+
CreateAPIKeyType,
|
|
82
|
+
CreateAPIKeyTypedDict,
|
|
83
|
+
Data,
|
|
84
|
+
DataTypedDict,
|
|
85
|
+
)
|
|
86
|
+
from .create_firewall_assignmentop import (
|
|
87
|
+
CreateFirewallAssignmentFirewallsAttributes,
|
|
88
|
+
CreateFirewallAssignmentFirewallsAttributesTypedDict,
|
|
89
|
+
CreateFirewallAssignmentFirewallsData,
|
|
90
|
+
CreateFirewallAssignmentFirewallsDataTypedDict,
|
|
91
|
+
CreateFirewallAssignmentFirewallsRequestBody,
|
|
92
|
+
CreateFirewallAssignmentFirewallsRequestBodyTypedDict,
|
|
93
|
+
CreateFirewallAssignmentFirewallsType,
|
|
94
|
+
CreateFirewallAssignmentRequest,
|
|
95
|
+
CreateFirewallAssignmentRequestTypedDict,
|
|
96
|
+
)
|
|
97
|
+
from .create_firewallop import (
|
|
98
|
+
CreateFirewallFirewallsAttributes,
|
|
99
|
+
CreateFirewallFirewallsAttributesTypedDict,
|
|
100
|
+
CreateFirewallFirewallsData,
|
|
101
|
+
CreateFirewallFirewallsDataTypedDict,
|
|
102
|
+
CreateFirewallFirewallsRequestBody,
|
|
103
|
+
CreateFirewallFirewallsRequestBodyTypedDict,
|
|
104
|
+
CreateFirewallFirewallsType,
|
|
105
|
+
CreateFirewallProtocol,
|
|
106
|
+
CreateFirewallRules,
|
|
107
|
+
CreateFirewallRulesTypedDict,
|
|
108
|
+
)
|
|
109
|
+
from .create_ipmi_sessionop import (
|
|
110
|
+
CreateIpmiSessionRequest,
|
|
111
|
+
CreateIpmiSessionRequestTypedDict,
|
|
112
|
+
)
|
|
113
|
+
from .create_projectop import (
|
|
114
|
+
CreateProjectProjectsAttributes,
|
|
115
|
+
CreateProjectProjectsAttributesTypedDict,
|
|
116
|
+
CreateProjectProjectsData,
|
|
117
|
+
CreateProjectProjectsDataTypedDict,
|
|
118
|
+
CreateProjectProjectsEnvironment,
|
|
119
|
+
CreateProjectProjectsRequestBody,
|
|
120
|
+
CreateProjectProjectsRequestBodyTypedDict,
|
|
121
|
+
CreateProjectProjectsType,
|
|
122
|
+
CreateProjectProvisioningType,
|
|
123
|
+
CreateProjectResponseBody,
|
|
124
|
+
CreateProjectResponseBodyTypedDict,
|
|
125
|
+
)
|
|
126
|
+
from .create_server_actionop import (
|
|
127
|
+
CreateServerActionAction,
|
|
128
|
+
CreateServerActionRequest,
|
|
129
|
+
CreateServerActionRequestTypedDict,
|
|
130
|
+
CreateServerActionServersAttributes,
|
|
131
|
+
CreateServerActionServersAttributesTypedDict,
|
|
132
|
+
CreateServerActionServersData,
|
|
133
|
+
CreateServerActionServersDataTypedDict,
|
|
134
|
+
CreateServerActionServersRequestBody,
|
|
135
|
+
CreateServerActionServersRequestBodyTypedDict,
|
|
136
|
+
CreateServerActionServersType,
|
|
137
|
+
)
|
|
138
|
+
from .create_server_out_of_bandop import (
|
|
139
|
+
CreateServerOutOfBandRequest,
|
|
140
|
+
CreateServerOutOfBandRequestTypedDict,
|
|
141
|
+
CreateServerOutOfBandServersAttributes,
|
|
142
|
+
CreateServerOutOfBandServersAttributesTypedDict,
|
|
143
|
+
CreateServerOutOfBandServersData,
|
|
144
|
+
CreateServerOutOfBandServersDataTypedDict,
|
|
145
|
+
CreateServerOutOfBandServersRequestBody,
|
|
146
|
+
CreateServerOutOfBandServersRequestBodyTypedDict,
|
|
147
|
+
CreateServerOutOfBandServersType,
|
|
148
|
+
)
|
|
149
|
+
from .create_server_reinstallop import (
|
|
150
|
+
CreateServerReinstallRequest,
|
|
151
|
+
CreateServerReinstallRequestTypedDict,
|
|
152
|
+
CreateServerReinstallServersAttributes,
|
|
153
|
+
CreateServerReinstallServersAttributesTypedDict,
|
|
154
|
+
CreateServerReinstallServersData,
|
|
155
|
+
CreateServerReinstallServersDataTypedDict,
|
|
156
|
+
CreateServerReinstallServersOperatingSystem,
|
|
157
|
+
CreateServerReinstallServersPartitions,
|
|
158
|
+
CreateServerReinstallServersPartitionsTypedDict,
|
|
159
|
+
CreateServerReinstallServersRaid,
|
|
160
|
+
CreateServerReinstallServersRequestBody,
|
|
161
|
+
CreateServerReinstallServersRequestBodyTypedDict,
|
|
162
|
+
CreateServerReinstallServersType,
|
|
163
|
+
)
|
|
164
|
+
from .create_serverop import (
|
|
165
|
+
CreateServerRaid,
|
|
166
|
+
CreateServerServersAttributes,
|
|
167
|
+
CreateServerServersAttributesTypedDict,
|
|
168
|
+
CreateServerServersBilling,
|
|
169
|
+
CreateServerServersData,
|
|
170
|
+
CreateServerServersDataTypedDict,
|
|
171
|
+
CreateServerServersOperatingSystem,
|
|
172
|
+
CreateServerServersPlan,
|
|
173
|
+
CreateServerServersRequestBody,
|
|
174
|
+
CreateServerServersRequestBodyTypedDict,
|
|
175
|
+
CreateServerServersSite,
|
|
176
|
+
CreateServerServersType,
|
|
177
|
+
)
|
|
178
|
+
from .create_tagop import (
|
|
179
|
+
CreateTagTagsAttributes,
|
|
180
|
+
CreateTagTagsAttributesTypedDict,
|
|
181
|
+
CreateTagTagsData,
|
|
182
|
+
CreateTagTagsDataTypedDict,
|
|
183
|
+
CreateTagTagsRequestBody,
|
|
184
|
+
CreateTagTagsRequestBodyTypedDict,
|
|
185
|
+
CreateTagTagsType,
|
|
186
|
+
)
|
|
187
|
+
from .create_virtual_networkop import (
|
|
188
|
+
CreateVirtualNetworkPrivateNetworksAttributes,
|
|
189
|
+
CreateVirtualNetworkPrivateNetworksAttributesTypedDict,
|
|
190
|
+
CreateVirtualNetworkPrivateNetworksData,
|
|
191
|
+
CreateVirtualNetworkPrivateNetworksDataTypedDict,
|
|
192
|
+
CreateVirtualNetworkPrivateNetworksRequestBody,
|
|
193
|
+
CreateVirtualNetworkPrivateNetworksRequestBodyTypedDict,
|
|
194
|
+
CreateVirtualNetworkPrivateNetworksSite,
|
|
195
|
+
CreateVirtualNetworkPrivateNetworksType,
|
|
196
|
+
)
|
|
197
|
+
from .custom_tag import (
|
|
198
|
+
CustomTag,
|
|
199
|
+
CustomTagAttributes,
|
|
200
|
+
CustomTagAttributesTypedDict,
|
|
201
|
+
CustomTagMeta,
|
|
202
|
+
CustomTagMetaTypedDict,
|
|
203
|
+
CustomTagType,
|
|
204
|
+
CustomTagTypedDict,
|
|
205
|
+
)
|
|
206
|
+
from .custom_tag_data import (
|
|
207
|
+
CustomTagData,
|
|
208
|
+
CustomTagDataAttributes,
|
|
209
|
+
CustomTagDataAttributesTypedDict,
|
|
210
|
+
CustomTagDataType,
|
|
211
|
+
CustomTagDataTypedDict,
|
|
212
|
+
)
|
|
213
|
+
from .custom_tags import (
|
|
214
|
+
CustomTags,
|
|
215
|
+
CustomTagsMeta,
|
|
216
|
+
CustomTagsMetaTypedDict,
|
|
217
|
+
CustomTagsTypedDict,
|
|
218
|
+
)
|
|
219
|
+
from .delete_api_keyop import DeleteAPIKeyRequest, DeleteAPIKeyRequestTypedDict
|
|
220
|
+
from .delete_firewall_assignmentop import (
|
|
221
|
+
DeleteFirewallAssignmentRequest,
|
|
222
|
+
DeleteFirewallAssignmentRequestTypedDict,
|
|
223
|
+
)
|
|
224
|
+
from .delete_firewallop import DeleteFirewallRequest, DeleteFirewallRequestTypedDict
|
|
225
|
+
from .delete_project_ssh_keyop import (
|
|
226
|
+
DeleteProjectSSHKeyRequest,
|
|
227
|
+
DeleteProjectSSHKeyRequestTypedDict,
|
|
228
|
+
)
|
|
229
|
+
from .delete_project_user_dataop import (
|
|
230
|
+
DeleteProjectUserDataRequest,
|
|
231
|
+
DeleteProjectUserDataRequestTypedDict,
|
|
232
|
+
)
|
|
233
|
+
from .delete_projectop import DeleteProjectRequest, DeleteProjectRequestTypedDict
|
|
234
|
+
from .delete_ssh_keyop import DeleteSSHKeyRequest, DeleteSSHKeyRequestTypedDict
|
|
235
|
+
from .delete_storage_filesystemsop import (
|
|
236
|
+
DeleteStorageFilesystemsRequest,
|
|
237
|
+
DeleteStorageFilesystemsRequestTypedDict,
|
|
238
|
+
)
|
|
239
|
+
from .delete_user_dataop import (
|
|
240
|
+
DeleteUserDataRequest,
|
|
241
|
+
DeleteUserDataRequestTypedDict,
|
|
242
|
+
)
|
|
243
|
+
from .delete_virtual_networks_assignmentsop import (
|
|
244
|
+
DeleteVirtualNetworksAssignmentsRequest,
|
|
245
|
+
DeleteVirtualNetworksAssignmentsRequestTypedDict,
|
|
246
|
+
)
|
|
247
|
+
from .delete_vpn_sessionop import (
|
|
248
|
+
DeleteVpnSessionRequest,
|
|
249
|
+
DeleteVpnSessionRequestTypedDict,
|
|
250
|
+
)
|
|
251
|
+
from .deploy_config import (
|
|
252
|
+
DeployConfig,
|
|
253
|
+
DeployConfigAttributes,
|
|
254
|
+
DeployConfigAttributesTypedDict,
|
|
255
|
+
DeployConfigData,
|
|
256
|
+
DeployConfigDataTypedDict,
|
|
257
|
+
DeployConfigError,
|
|
258
|
+
DeployConfigErrorData,
|
|
259
|
+
DeployConfigPartitions,
|
|
260
|
+
DeployConfigPartitionsTypedDict,
|
|
261
|
+
DeployConfigTypedDict,
|
|
262
|
+
)
|
|
263
|
+
from .destroy_serverop import DestroyServerRequest, DestroyServerRequestTypedDict
|
|
264
|
+
from .destroy_tagop import DestroyTagRequest, DestroyTagRequestTypedDict
|
|
265
|
+
from .destroy_team_memberop import (
|
|
266
|
+
DestroyTeamMemberRequest,
|
|
267
|
+
DestroyTeamMemberRequestTypedDict,
|
|
268
|
+
)
|
|
269
|
+
from .destroy_virtual_machineop import (
|
|
270
|
+
DestroyVirtualMachineRequest,
|
|
271
|
+
DestroyVirtualMachineRequestTypedDict,
|
|
272
|
+
)
|
|
273
|
+
from .destroy_virtual_networkop import (
|
|
274
|
+
DestroyVirtualNetworkRequest,
|
|
275
|
+
DestroyVirtualNetworkRequestTypedDict,
|
|
276
|
+
)
|
|
277
|
+
from .error_object import (
|
|
278
|
+
ErrorObject,
|
|
279
|
+
ErrorObjectData,
|
|
280
|
+
ErrorObjectMeta,
|
|
281
|
+
ErrorObjectMetaTypedDict,
|
|
282
|
+
Errors,
|
|
283
|
+
ErrorsTypedDict,
|
|
284
|
+
)
|
|
285
|
+
from .event_data import (
|
|
286
|
+
EventData,
|
|
287
|
+
EventDataAttributes,
|
|
288
|
+
EventDataAttributesTypedDict,
|
|
289
|
+
EventDataAuthor,
|
|
290
|
+
EventDataAuthorTypedDict,
|
|
291
|
+
EventDataProject,
|
|
292
|
+
EventDataProjectTypedDict,
|
|
293
|
+
EventDataTarget,
|
|
294
|
+
EventDataTargetTypedDict,
|
|
295
|
+
EventDataTeam,
|
|
296
|
+
EventDataTeamTypedDict,
|
|
297
|
+
EventDataType,
|
|
298
|
+
EventDataTypedDict,
|
|
299
|
+
)
|
|
300
|
+
from .events import (
|
|
301
|
+
Author,
|
|
302
|
+
AuthorTypedDict,
|
|
303
|
+
Events,
|
|
304
|
+
EventsAttributes,
|
|
305
|
+
EventsAttributesTypedDict,
|
|
306
|
+
EventsProject,
|
|
307
|
+
EventsProjectTypedDict,
|
|
308
|
+
EventsTeam,
|
|
309
|
+
EventsTeamTypedDict,
|
|
310
|
+
EventsTypedDict,
|
|
311
|
+
Meta,
|
|
312
|
+
MetaTypedDict,
|
|
313
|
+
Target,
|
|
314
|
+
TargetTypedDict,
|
|
315
|
+
)
|
|
316
|
+
from .filesystem_data import (
|
|
317
|
+
FilesystemData,
|
|
318
|
+
FilesystemDataAttributes,
|
|
319
|
+
FilesystemDataAttributesTypedDict,
|
|
320
|
+
FilesystemDataProject,
|
|
321
|
+
FilesystemDataProjectTypedDict,
|
|
322
|
+
FilesystemDataType,
|
|
323
|
+
FilesystemDataTypedDict,
|
|
324
|
+
)
|
|
325
|
+
from .firewall import (
|
|
326
|
+
Firewall,
|
|
327
|
+
FirewallAttributes,
|
|
328
|
+
FirewallAttributesTypedDict,
|
|
329
|
+
FirewallMeta,
|
|
330
|
+
FirewallMetaTypedDict,
|
|
331
|
+
FirewallProject,
|
|
332
|
+
FirewallProjectTypedDict,
|
|
333
|
+
FirewallType,
|
|
334
|
+
FirewallTypedDict,
|
|
335
|
+
Rules,
|
|
336
|
+
RulesTypedDict,
|
|
337
|
+
)
|
|
338
|
+
from .firewall_assignment_data import (
|
|
339
|
+
FirewallAssignmentData,
|
|
340
|
+
FirewallAssignmentDataAttributes,
|
|
341
|
+
FirewallAssignmentDataAttributesTypedDict,
|
|
342
|
+
FirewallAssignmentDataServer,
|
|
343
|
+
FirewallAssignmentDataServerTypedDict,
|
|
344
|
+
FirewallAssignmentDataType,
|
|
345
|
+
FirewallAssignmentDataTypedDict,
|
|
346
|
+
)
|
|
347
|
+
from .firewall_assignments import (
|
|
348
|
+
FirewallAssignments,
|
|
349
|
+
FirewallAssignmentsMeta,
|
|
350
|
+
FirewallAssignmentsMetaTypedDict,
|
|
351
|
+
FirewallAssignmentsTypedDict,
|
|
352
|
+
)
|
|
353
|
+
from .firewall_data import (
|
|
354
|
+
FirewallData,
|
|
355
|
+
FirewallDataAttributes,
|
|
356
|
+
FirewallDataAttributesTypedDict,
|
|
357
|
+
FirewallDataProject,
|
|
358
|
+
FirewallDataProjectTypedDict,
|
|
359
|
+
FirewallDataRules,
|
|
360
|
+
FirewallDataRulesTypedDict,
|
|
361
|
+
FirewallDataType,
|
|
362
|
+
FirewallDataTypedDict,
|
|
363
|
+
)
|
|
364
|
+
from .firewall_server import (
|
|
365
|
+
FirewallServer,
|
|
366
|
+
FirewallServerAttributes,
|
|
367
|
+
FirewallServerAttributesTypedDict,
|
|
368
|
+
FirewallServerServer,
|
|
369
|
+
FirewallServerServerTypedDict,
|
|
370
|
+
FirewallServerType,
|
|
371
|
+
FirewallServerTypedDict,
|
|
372
|
+
)
|
|
373
|
+
from .firewalls import (
|
|
374
|
+
Firewalls,
|
|
375
|
+
FirewallsMeta,
|
|
376
|
+
FirewallsMetaTypedDict,
|
|
377
|
+
FirewallsTypedDict,
|
|
378
|
+
)
|
|
379
|
+
from .get_bandwidth_plansop import (
|
|
380
|
+
GetBandwidthPlansRequest,
|
|
381
|
+
GetBandwidthPlansRequestTypedDict,
|
|
382
|
+
GetBandwidthPlansResponse,
|
|
383
|
+
GetBandwidthPlansResponseTypedDict,
|
|
384
|
+
)
|
|
385
|
+
from .get_billing_usageop import (
|
|
386
|
+
GetBillingUsageRequest,
|
|
387
|
+
GetBillingUsageRequestTypedDict,
|
|
388
|
+
)
|
|
389
|
+
from .get_eventsop import (
|
|
390
|
+
GetEventsRequest,
|
|
391
|
+
GetEventsRequestTypedDict,
|
|
392
|
+
GetEventsResponse,
|
|
393
|
+
GetEventsResponseBody,
|
|
394
|
+
GetEventsResponseBodyTypedDict,
|
|
395
|
+
GetEventsResponseTypedDict,
|
|
396
|
+
)
|
|
397
|
+
from .get_firewall_assignmentsop import (
|
|
398
|
+
GetFirewallAssignmentsRequest,
|
|
399
|
+
GetFirewallAssignmentsRequestTypedDict,
|
|
400
|
+
GetFirewallAssignmentsResponse,
|
|
401
|
+
GetFirewallAssignmentsResponseTypedDict,
|
|
402
|
+
)
|
|
403
|
+
from .get_firewallop import GetFirewallRequest, GetFirewallRequestTypedDict
|
|
404
|
+
from .get_ipop import GetIPRequest, GetIPRequestTypedDict
|
|
405
|
+
from .get_ipsop import (
|
|
406
|
+
FilterFamily,
|
|
407
|
+
FilterType,
|
|
408
|
+
GetIpsRequest,
|
|
409
|
+
GetIpsRequestTypedDict,
|
|
410
|
+
GetIpsResponse,
|
|
411
|
+
GetIpsResponseTypedDict,
|
|
412
|
+
)
|
|
413
|
+
from .get_planop import GetPlanRequest, GetPlanRequestTypedDict
|
|
414
|
+
from .get_plans_operating_systemop import (
|
|
415
|
+
GetPlansOperatingSystemRequest,
|
|
416
|
+
GetPlansOperatingSystemRequestTypedDict,
|
|
417
|
+
GetPlansOperatingSystemResponse,
|
|
418
|
+
GetPlansOperatingSystemResponseBody,
|
|
419
|
+
GetPlansOperatingSystemResponseBodyTypedDict,
|
|
420
|
+
GetPlansOperatingSystemResponseTypedDict,
|
|
421
|
+
)
|
|
422
|
+
from .get_plansop import (
|
|
423
|
+
FilterStockLevel,
|
|
424
|
+
GetPlansRequest,
|
|
425
|
+
GetPlansRequestTypedDict,
|
|
426
|
+
GetPlansResponseBody,
|
|
427
|
+
GetPlansResponseBodyTypedDict,
|
|
428
|
+
)
|
|
429
|
+
from .get_project_ssh_keyop import (
|
|
430
|
+
GetProjectSSHKeyRequest,
|
|
431
|
+
GetProjectSSHKeyRequestTypedDict,
|
|
432
|
+
GetProjectSSHKeyResponseBody,
|
|
433
|
+
GetProjectSSHKeyResponseBodyTypedDict,
|
|
434
|
+
)
|
|
435
|
+
from .get_project_ssh_keysop import (
|
|
436
|
+
GetProjectSSHKeysRequest,
|
|
437
|
+
GetProjectSSHKeysRequestTypedDict,
|
|
438
|
+
)
|
|
439
|
+
from .get_project_user_dataop import (
|
|
440
|
+
GetProjectUserDataRequest,
|
|
441
|
+
GetProjectUserDataRequestTypedDict,
|
|
442
|
+
)
|
|
443
|
+
from .get_project_users_dataop import (
|
|
444
|
+
GetProjectUsersDataRequest,
|
|
445
|
+
GetProjectUsersDataRequestTypedDict,
|
|
446
|
+
GetProjectUsersDataResponseBody,
|
|
447
|
+
GetProjectUsersDataResponseBodyTypedDict,
|
|
448
|
+
)
|
|
449
|
+
from .get_projectsop import (
|
|
450
|
+
GetProjectsRequest,
|
|
451
|
+
GetProjectsRequestTypedDict,
|
|
452
|
+
GetProjectsResponse,
|
|
453
|
+
GetProjectsResponseTypedDict,
|
|
454
|
+
)
|
|
455
|
+
from .get_regionop import GetRegionRequest, GetRegionRequestTypedDict
|
|
456
|
+
from .get_regionsop import (
|
|
457
|
+
GetRegionsRequest,
|
|
458
|
+
GetRegionsRequestTypedDict,
|
|
459
|
+
GetRegionsResponse,
|
|
460
|
+
GetRegionsResponseTypedDict,
|
|
461
|
+
)
|
|
462
|
+
from .get_role_idop import GetRoleIDRequest, GetRoleIDRequestTypedDict
|
|
463
|
+
from .get_rolesop import (
|
|
464
|
+
GetRolesRequest,
|
|
465
|
+
GetRolesRequestTypedDict,
|
|
466
|
+
GetRolesResponse,
|
|
467
|
+
GetRolesResponseBody,
|
|
468
|
+
GetRolesResponseBodyTypedDict,
|
|
469
|
+
GetRolesResponseTypedDict,
|
|
470
|
+
)
|
|
471
|
+
from .get_server_deploy_configop import (
|
|
472
|
+
GetServerDeployConfigRequest,
|
|
473
|
+
GetServerDeployConfigRequestTypedDict,
|
|
474
|
+
)
|
|
475
|
+
from .get_server_out_of_bandop import (
|
|
476
|
+
GetServerOutOfBandRequest,
|
|
477
|
+
GetServerOutOfBandRequestTypedDict,
|
|
478
|
+
)
|
|
479
|
+
from .get_serverop import GetServerRequest, GetServerRequestTypedDict
|
|
480
|
+
from .get_serversop import (
|
|
481
|
+
GetServersRequest,
|
|
482
|
+
GetServersRequestTypedDict,
|
|
483
|
+
GetServersResponse,
|
|
484
|
+
GetServersResponseTypedDict,
|
|
485
|
+
)
|
|
486
|
+
from .get_ssh_keyop import (
|
|
487
|
+
GetSSHKeyRequest,
|
|
488
|
+
GetSSHKeyRequestTypedDict,
|
|
489
|
+
GetSSHKeyResponseBody,
|
|
490
|
+
GetSSHKeyResponseBodyTypedDict,
|
|
491
|
+
)
|
|
492
|
+
from .get_ssh_keysop import GetSSHKeysRequest, GetSSHKeysRequestTypedDict
|
|
493
|
+
from .get_storage_filesystemsop import (
|
|
494
|
+
GetStorageFilesystemsRequest,
|
|
495
|
+
GetStorageFilesystemsRequestTypedDict,
|
|
496
|
+
)
|
|
497
|
+
from .get_team_membersop import (
|
|
498
|
+
GetTeamMembersRequest,
|
|
499
|
+
GetTeamMembersRequestTypedDict,
|
|
500
|
+
GetTeamMembersResponse,
|
|
501
|
+
GetTeamMembersResponseTypedDict,
|
|
502
|
+
)
|
|
503
|
+
from .get_traffic_consumptionop import (
|
|
504
|
+
GetTrafficConsumptionRequest,
|
|
505
|
+
GetTrafficConsumptionRequestTypedDict,
|
|
506
|
+
)
|
|
507
|
+
from .get_traffic_quotaop import (
|
|
508
|
+
GetTrafficQuotaRequest,
|
|
509
|
+
GetTrafficQuotaRequestTypedDict,
|
|
510
|
+
)
|
|
511
|
+
from .get_user_dataop import GetUserDataRequest, GetUserDataRequestTypedDict
|
|
512
|
+
from .get_user_profileop import (
|
|
513
|
+
GetUserProfileResponseBody,
|
|
514
|
+
GetUserProfileResponseBodyTypedDict,
|
|
515
|
+
)
|
|
516
|
+
from .get_users_dataop import (
|
|
517
|
+
GetUsersDataRequest,
|
|
518
|
+
GetUsersDataRequestTypedDict,
|
|
519
|
+
GetUsersDataResponseBody,
|
|
520
|
+
GetUsersDataResponseBodyTypedDict,
|
|
521
|
+
)
|
|
522
|
+
from .get_virtual_networkop import (
|
|
523
|
+
GetVirtualNetworkRequest,
|
|
524
|
+
GetVirtualNetworkRequestTypedDict,
|
|
525
|
+
GetVirtualNetworkResponseBody,
|
|
526
|
+
GetVirtualNetworkResponseBodyTypedDict,
|
|
527
|
+
)
|
|
528
|
+
from .get_virtual_networks_assignmentsop import (
|
|
529
|
+
GetVirtualNetworksAssignmentsRequest,
|
|
530
|
+
GetVirtualNetworksAssignmentsRequestTypedDict,
|
|
531
|
+
GetVirtualNetworksAssignmentsResponse,
|
|
532
|
+
GetVirtualNetworksAssignmentsResponseTypedDict,
|
|
533
|
+
)
|
|
534
|
+
from .get_virtual_networksop import (
|
|
535
|
+
GetVirtualNetworksRequest,
|
|
536
|
+
GetVirtualNetworksRequestTypedDict,
|
|
537
|
+
GetVirtualNetworksResponse,
|
|
538
|
+
GetVirtualNetworksResponseTypedDict,
|
|
539
|
+
)
|
|
540
|
+
from .get_vpn_sessionsop import (
|
|
541
|
+
FilterLocation,
|
|
542
|
+
GetVpnSessionsMeta,
|
|
543
|
+
GetVpnSessionsMetaTypedDict,
|
|
544
|
+
GetVpnSessionsRequest,
|
|
545
|
+
GetVpnSessionsRequestTypedDict,
|
|
546
|
+
GetVpnSessionsResponseBody,
|
|
547
|
+
GetVpnSessionsResponseBodyTypedDict,
|
|
548
|
+
)
|
|
549
|
+
from .index_virtual_machineop import (
|
|
550
|
+
IndexVirtualMachineRequest,
|
|
551
|
+
IndexVirtualMachineRequestTypedDict,
|
|
552
|
+
)
|
|
553
|
+
from .ip_address import (
|
|
554
|
+
Assignment,
|
|
555
|
+
AssignmentTypedDict,
|
|
556
|
+
Family,
|
|
557
|
+
IPAddress,
|
|
558
|
+
IPAddressAttributes,
|
|
559
|
+
IPAddressAttributesTypedDict,
|
|
560
|
+
IPAddressProject,
|
|
561
|
+
IPAddressProjectTypedDict,
|
|
562
|
+
IPAddressRegion,
|
|
563
|
+
IPAddressRegionTypedDict,
|
|
564
|
+
IPAddressType,
|
|
565
|
+
IPAddressTypedDict,
|
|
566
|
+
Location,
|
|
567
|
+
LocationTypedDict,
|
|
568
|
+
)
|
|
569
|
+
from .ip_addresses import IPAddresses, IPAddressesTypedDict
|
|
570
|
+
from .ipmi_session import (
|
|
571
|
+
IpmiSession,
|
|
572
|
+
IpmiSessionAttributes,
|
|
573
|
+
IpmiSessionAttributesTypedDict,
|
|
574
|
+
IpmiSessionData,
|
|
575
|
+
IpmiSessionDataTypedDict,
|
|
576
|
+
IpmiSessionType,
|
|
577
|
+
IpmiSessionTypedDict,
|
|
578
|
+
)
|
|
579
|
+
from .latitudesherror import LatitudeshError
|
|
580
|
+
from .list_firewallsop import (
|
|
581
|
+
ListFirewallsRequest,
|
|
582
|
+
ListFirewallsRequestTypedDict,
|
|
583
|
+
ListFirewallsResponse,
|
|
584
|
+
ListFirewallsResponseTypedDict,
|
|
585
|
+
)
|
|
586
|
+
from .membership import (
|
|
587
|
+
Membership,
|
|
588
|
+
MembershipAttributes,
|
|
589
|
+
MembershipAttributesTypedDict,
|
|
590
|
+
MembershipData,
|
|
591
|
+
MembershipDataTypedDict,
|
|
592
|
+
MembershipRole,
|
|
593
|
+
MembershipTypedDict,
|
|
594
|
+
)
|
|
595
|
+
from .no_response_error import NoResponseError
|
|
596
|
+
from .operating_system_data import (
|
|
597
|
+
OperatingSystemData,
|
|
598
|
+
OperatingSystemDataAttributes,
|
|
599
|
+
OperatingSystemDataAttributesTypedDict,
|
|
600
|
+
OperatingSystemDataFeatures,
|
|
601
|
+
OperatingSystemDataFeaturesTypedDict,
|
|
602
|
+
OperatingSystemDataType,
|
|
603
|
+
OperatingSystemDataTypedDict,
|
|
604
|
+
)
|
|
605
|
+
from .operating_systems import (
|
|
606
|
+
Features,
|
|
607
|
+
FeaturesTypedDict,
|
|
608
|
+
OperatingSystems,
|
|
609
|
+
OperatingSystemsAttributes,
|
|
610
|
+
OperatingSystemsAttributesTypedDict,
|
|
611
|
+
OperatingSystemsMeta,
|
|
612
|
+
OperatingSystemsMetaTypedDict,
|
|
613
|
+
OperatingSystemsTypedDict,
|
|
614
|
+
)
|
|
615
|
+
from .out_of_band_connection import (
|
|
616
|
+
Credentials,
|
|
617
|
+
CredentialsTypedDict,
|
|
618
|
+
OutOfBandConnection,
|
|
619
|
+
OutOfBandConnectionAttributes,
|
|
620
|
+
OutOfBandConnectionAttributesTypedDict,
|
|
621
|
+
OutOfBandConnectionData,
|
|
622
|
+
OutOfBandConnectionDataTypedDict,
|
|
623
|
+
OutOfBandConnectionTypedDict,
|
|
624
|
+
SSHKey,
|
|
625
|
+
SSHKeyTypedDict,
|
|
626
|
+
)
|
|
627
|
+
from .patch_current_teamop import (
|
|
628
|
+
PatchCurrentTeamRequest,
|
|
629
|
+
PatchCurrentTeamRequestTypedDict,
|
|
630
|
+
PatchCurrentTeamResponseBody,
|
|
631
|
+
PatchCurrentTeamResponseBodyTypedDict,
|
|
632
|
+
PatchCurrentTeamTeamsAttributes,
|
|
633
|
+
PatchCurrentTeamTeamsAttributesTypedDict,
|
|
634
|
+
PatchCurrentTeamTeamsCurrency,
|
|
635
|
+
PatchCurrentTeamTeamsData,
|
|
636
|
+
PatchCurrentTeamTeamsDataTypedDict,
|
|
637
|
+
PatchCurrentTeamTeamsRequestBody,
|
|
638
|
+
PatchCurrentTeamTeamsRequestBodyTypedDict,
|
|
639
|
+
PatchCurrentTeamTeamsType,
|
|
640
|
+
)
|
|
641
|
+
from .patch_storage_filesystemsop import (
|
|
642
|
+
PatchStorageFilesystemsRequest,
|
|
643
|
+
PatchStorageFilesystemsRequestTypedDict,
|
|
644
|
+
PatchStorageFilesystemsResponseBody,
|
|
645
|
+
PatchStorageFilesystemsResponseBodyTypedDict,
|
|
646
|
+
PatchStorageFilesystemsStorageAttributes,
|
|
647
|
+
PatchStorageFilesystemsStorageAttributesTypedDict,
|
|
648
|
+
PatchStorageFilesystemsStorageData,
|
|
649
|
+
PatchStorageFilesystemsStorageDataTypedDict,
|
|
650
|
+
PatchStorageFilesystemsStorageRequestBody,
|
|
651
|
+
PatchStorageFilesystemsStorageRequestBodyTypedDict,
|
|
652
|
+
PatchStorageFilesystemsStorageType,
|
|
653
|
+
)
|
|
654
|
+
from .patch_user_dataop import (
|
|
655
|
+
PatchUserDataRequest,
|
|
656
|
+
PatchUserDataRequestTypedDict,
|
|
657
|
+
PatchUserDataUserDataAttributes,
|
|
658
|
+
PatchUserDataUserDataAttributesTypedDict,
|
|
659
|
+
PatchUserDataUserDataData,
|
|
660
|
+
PatchUserDataUserDataDataTypedDict,
|
|
661
|
+
PatchUserDataUserDataRequestBody,
|
|
662
|
+
PatchUserDataUserDataRequestBodyTypedDict,
|
|
663
|
+
PatchUserDataUserDataType,
|
|
664
|
+
)
|
|
665
|
+
from .patch_user_profileop import (
|
|
666
|
+
PatchUserProfileRequest,
|
|
667
|
+
PatchUserProfileRequestTypedDict,
|
|
668
|
+
PatchUserProfileResponseBody,
|
|
669
|
+
PatchUserProfileResponseBodyTypedDict,
|
|
670
|
+
PatchUserProfileUserProfileAttributes,
|
|
671
|
+
PatchUserProfileUserProfileAttributesTypedDict,
|
|
672
|
+
PatchUserProfileUserProfileData,
|
|
673
|
+
PatchUserProfileUserProfileDataTypedDict,
|
|
674
|
+
PatchUserProfileUserProfileRequestBody,
|
|
675
|
+
PatchUserProfileUserProfileRequestBodyTypedDict,
|
|
676
|
+
PatchUserProfileUserProfileRole,
|
|
677
|
+
PatchUserProfileUserProfileType,
|
|
678
|
+
)
|
|
679
|
+
from .plan import Plan, PlanTypedDict
|
|
680
|
+
from .plan_data import (
|
|
681
|
+
CPU,
|
|
682
|
+
CPUTypedDict,
|
|
683
|
+
Drives,
|
|
684
|
+
DrivesTypedDict,
|
|
685
|
+
Gpu,
|
|
686
|
+
GpuTypedDict,
|
|
687
|
+
Locations,
|
|
688
|
+
LocationsTypedDict,
|
|
689
|
+
Memory,
|
|
690
|
+
MemoryTypedDict,
|
|
691
|
+
Nics,
|
|
692
|
+
NicsTypedDict,
|
|
693
|
+
PlanData,
|
|
694
|
+
PlanDataAttributes,
|
|
695
|
+
PlanDataAttributesType,
|
|
696
|
+
PlanDataAttributesTypedDict,
|
|
697
|
+
PlanDataBRL,
|
|
698
|
+
PlanDataBRLTypedDict,
|
|
699
|
+
PlanDataPricing,
|
|
700
|
+
PlanDataPricingTypedDict,
|
|
701
|
+
PlanDataRegions,
|
|
702
|
+
PlanDataRegionsTypedDict,
|
|
703
|
+
PlanDataType,
|
|
704
|
+
PlanDataTypedDict,
|
|
705
|
+
PlanDataUSD,
|
|
706
|
+
PlanDataUSDTypedDict,
|
|
707
|
+
Specs,
|
|
708
|
+
SpecsTypedDict,
|
|
709
|
+
StockLevel,
|
|
710
|
+
)
|
|
711
|
+
from .post_api_keyop import PostAPIKeyResponseBody, PostAPIKeyResponseBodyTypedDict
|
|
712
|
+
from .post_project_ssh_keyop import (
|
|
713
|
+
PostProjectSSHKeyRequest,
|
|
714
|
+
PostProjectSSHKeyRequestTypedDict,
|
|
715
|
+
PostProjectSSHKeyResponseBody,
|
|
716
|
+
PostProjectSSHKeyResponseBodyTypedDict,
|
|
717
|
+
PostProjectSSHKeySSHKeysAttributes,
|
|
718
|
+
PostProjectSSHKeySSHKeysAttributesTypedDict,
|
|
719
|
+
PostProjectSSHKeySSHKeysData,
|
|
720
|
+
PostProjectSSHKeySSHKeysDataTypedDict,
|
|
721
|
+
PostProjectSSHKeySSHKeysRequestBody,
|
|
722
|
+
PostProjectSSHKeySSHKeysRequestBodyTypedDict,
|
|
723
|
+
PostProjectSSHKeySSHKeysType,
|
|
724
|
+
)
|
|
725
|
+
from .post_project_user_dataop import (
|
|
726
|
+
PostProjectUserDataRequest,
|
|
727
|
+
PostProjectUserDataRequestTypedDict,
|
|
728
|
+
PostProjectUserDataUserDataAttributes,
|
|
729
|
+
PostProjectUserDataUserDataAttributesTypedDict,
|
|
730
|
+
PostProjectUserDataUserDataData,
|
|
731
|
+
PostProjectUserDataUserDataDataTypedDict,
|
|
732
|
+
PostProjectUserDataUserDataRequestBody,
|
|
733
|
+
PostProjectUserDataUserDataRequestBodyTypedDict,
|
|
734
|
+
PostProjectUserDataUserDataType,
|
|
735
|
+
)
|
|
736
|
+
from .post_ssh_keyop import (
|
|
737
|
+
PostSSHKeyResponseBody,
|
|
738
|
+
PostSSHKeyResponseBodyTypedDict,
|
|
739
|
+
PostSSHKeySSHKeysAttributes,
|
|
740
|
+
PostSSHKeySSHKeysAttributesTypedDict,
|
|
741
|
+
PostSSHKeySSHKeysData,
|
|
742
|
+
PostSSHKeySSHKeysDataTypedDict,
|
|
743
|
+
PostSSHKeySSHKeysRequestBody,
|
|
744
|
+
PostSSHKeySSHKeysRequestBodyTypedDict,
|
|
745
|
+
PostSSHKeySSHKeysType,
|
|
746
|
+
)
|
|
747
|
+
from .post_storage_filesystemsop import (
|
|
748
|
+
PostStorageFilesystemsResponseBody,
|
|
749
|
+
PostStorageFilesystemsResponseBodyTypedDict,
|
|
750
|
+
PostStorageFilesystemsStorageAttributes,
|
|
751
|
+
PostStorageFilesystemsStorageAttributesTypedDict,
|
|
752
|
+
PostStorageFilesystemsStorageData,
|
|
753
|
+
PostStorageFilesystemsStorageDataTypedDict,
|
|
754
|
+
PostStorageFilesystemsStorageRequestBody,
|
|
755
|
+
PostStorageFilesystemsStorageRequestBodyTypedDict,
|
|
756
|
+
PostStorageFilesystemsStorageType,
|
|
757
|
+
)
|
|
758
|
+
from .post_team_membersop import (
|
|
759
|
+
PostTeamMembersTeamsMembersAttributes,
|
|
760
|
+
PostTeamMembersTeamsMembersAttributesTypedDict,
|
|
761
|
+
PostTeamMembersTeamsMembersData,
|
|
762
|
+
PostTeamMembersTeamsMembersDataTypedDict,
|
|
763
|
+
PostTeamMembersTeamsMembersRequestBody,
|
|
764
|
+
PostTeamMembersTeamsMembersRequestBodyTypedDict,
|
|
765
|
+
PostTeamMembersTeamsMembersRole,
|
|
766
|
+
PostTeamMembersTeamsMembersType,
|
|
767
|
+
)
|
|
768
|
+
from .post_teamop import (
|
|
769
|
+
PostTeamResponseBody,
|
|
770
|
+
PostTeamResponseBodyTypedDict,
|
|
771
|
+
PostTeamTeamsAttributes,
|
|
772
|
+
PostTeamTeamsAttributesTypedDict,
|
|
773
|
+
PostTeamTeamsCurrency,
|
|
774
|
+
PostTeamTeamsData,
|
|
775
|
+
PostTeamTeamsDataTypedDict,
|
|
776
|
+
PostTeamTeamsRequestBody,
|
|
777
|
+
PostTeamTeamsRequestBodyTypedDict,
|
|
778
|
+
PostTeamTeamsType,
|
|
779
|
+
)
|
|
780
|
+
from .post_user_dataop import (
|
|
781
|
+
PostUserDataUserDataAttributes,
|
|
782
|
+
PostUserDataUserDataAttributesTypedDict,
|
|
783
|
+
PostUserDataUserDataData,
|
|
784
|
+
PostUserDataUserDataDataTypedDict,
|
|
785
|
+
PostUserDataUserDataRequestBody,
|
|
786
|
+
PostUserDataUserDataRequestBodyTypedDict,
|
|
787
|
+
PostUserDataUserDataType,
|
|
788
|
+
)
|
|
789
|
+
from .post_vpn_sessionop import (
|
|
790
|
+
PostVpnSessionVpnSessionsAttributes,
|
|
791
|
+
PostVpnSessionVpnSessionsAttributesTypedDict,
|
|
792
|
+
PostVpnSessionVpnSessionsData,
|
|
793
|
+
PostVpnSessionVpnSessionsDataTypedDict,
|
|
794
|
+
PostVpnSessionVpnSessionsRequestBody,
|
|
795
|
+
PostVpnSessionVpnSessionsRequestBodyTypedDict,
|
|
796
|
+
PostVpnSessionVpnSessionsSite,
|
|
797
|
+
PostVpnSessionVpnSessionsType,
|
|
798
|
+
)
|
|
799
|
+
from .project import (
|
|
800
|
+
BillingMethod,
|
|
801
|
+
BillingType,
|
|
802
|
+
Environment,
|
|
803
|
+
Project,
|
|
804
|
+
ProjectAttributes,
|
|
805
|
+
ProjectAttributesTypedDict,
|
|
806
|
+
ProjectBilling,
|
|
807
|
+
ProjectBillingTypedDict,
|
|
808
|
+
ProjectStats,
|
|
809
|
+
ProjectStatsTypedDict,
|
|
810
|
+
ProjectTypedDict,
|
|
811
|
+
)
|
|
812
|
+
from .project_include import (
|
|
813
|
+
BillingModel,
|
|
814
|
+
BillingModelTypedDict,
|
|
815
|
+
ProjectInclude,
|
|
816
|
+
ProjectIncludeTypedDict,
|
|
817
|
+
Stats,
|
|
818
|
+
StatsTypedDict,
|
|
819
|
+
)
|
|
820
|
+
from .projects import Projects, ProjectsTypedDict
|
|
821
|
+
from .put_project_ssh_keyop import (
|
|
822
|
+
PutProjectSSHKeyRequest,
|
|
823
|
+
PutProjectSSHKeyRequestTypedDict,
|
|
824
|
+
PutProjectSSHKeyResponseBody,
|
|
825
|
+
PutProjectSSHKeyResponseBodyTypedDict,
|
|
826
|
+
PutProjectSSHKeySSHKeysAttributes,
|
|
827
|
+
PutProjectSSHKeySSHKeysAttributesTypedDict,
|
|
828
|
+
PutProjectSSHKeySSHKeysData,
|
|
829
|
+
PutProjectSSHKeySSHKeysDataTypedDict,
|
|
830
|
+
PutProjectSSHKeySSHKeysRequestBody,
|
|
831
|
+
PutProjectSSHKeySSHKeysRequestBodyTypedDict,
|
|
832
|
+
PutProjectSSHKeySSHKeysType,
|
|
833
|
+
)
|
|
834
|
+
from .put_project_user_dataop import (
|
|
835
|
+
PutProjectUserDataRequest,
|
|
836
|
+
PutProjectUserDataRequestTypedDict,
|
|
837
|
+
PutProjectUserDataUserDataAttributes,
|
|
838
|
+
PutProjectUserDataUserDataAttributesTypedDict,
|
|
839
|
+
PutProjectUserDataUserDataData,
|
|
840
|
+
PutProjectUserDataUserDataDataTypedDict,
|
|
841
|
+
PutProjectUserDataUserDataRequestBody,
|
|
842
|
+
PutProjectUserDataUserDataRequestBodyTypedDict,
|
|
843
|
+
PutProjectUserDataUserDataType,
|
|
844
|
+
)
|
|
845
|
+
from .put_ssh_keyop import (
|
|
846
|
+
PutSSHKeyRequest,
|
|
847
|
+
PutSSHKeyRequestTypedDict,
|
|
848
|
+
PutSSHKeyResponseBody,
|
|
849
|
+
PutSSHKeyResponseBodyTypedDict,
|
|
850
|
+
PutSSHKeySSHKeysAttributes,
|
|
851
|
+
PutSSHKeySSHKeysAttributesTypedDict,
|
|
852
|
+
PutSSHKeySSHKeysData,
|
|
853
|
+
PutSSHKeySSHKeysDataTypedDict,
|
|
854
|
+
PutSSHKeySSHKeysRequestBody,
|
|
855
|
+
PutSSHKeySSHKeysRequestBodyTypedDict,
|
|
856
|
+
PutSSHKeySSHKeysType,
|
|
857
|
+
)
|
|
858
|
+
from .put_vpn_sessionop import PutVpnSessionRequest, PutVpnSessionRequestTypedDict
|
|
859
|
+
from .region import (
|
|
860
|
+
Region,
|
|
861
|
+
RegionAttributes,
|
|
862
|
+
RegionAttributesTypedDict,
|
|
863
|
+
RegionCountry,
|
|
864
|
+
RegionCountryTypedDict,
|
|
865
|
+
RegionData,
|
|
866
|
+
RegionDataTypedDict,
|
|
867
|
+
RegionTypedDict,
|
|
868
|
+
)
|
|
869
|
+
from .region_resource_data import (
|
|
870
|
+
RegionResourceData,
|
|
871
|
+
RegionResourceDataSite,
|
|
872
|
+
RegionResourceDataSiteTypedDict,
|
|
873
|
+
RegionResourceDataTypedDict,
|
|
874
|
+
)
|
|
875
|
+
from .regions import (
|
|
876
|
+
Country,
|
|
877
|
+
CountryTypedDict,
|
|
878
|
+
Regions,
|
|
879
|
+
RegionsAttributes,
|
|
880
|
+
RegionsAttributesTypedDict,
|
|
881
|
+
RegionsData,
|
|
882
|
+
RegionsDataTypedDict,
|
|
883
|
+
RegionsTypedDict,
|
|
884
|
+
)
|
|
885
|
+
from .responsevalidationerror import ResponseValidationError
|
|
886
|
+
from .role import Role, RoleMeta, RoleMetaTypedDict, RoleTypedDict
|
|
887
|
+
from .role_data import (
|
|
888
|
+
RoleData,
|
|
889
|
+
RoleDataAttributes,
|
|
890
|
+
RoleDataAttributesTypedDict,
|
|
891
|
+
RoleDataType,
|
|
892
|
+
RoleDataTypedDict,
|
|
893
|
+
)
|
|
894
|
+
from .security import Security, SecurityTypedDict
|
|
895
|
+
from .server import (
|
|
896
|
+
Server,
|
|
897
|
+
Server1,
|
|
898
|
+
Server1TypedDict,
|
|
899
|
+
ServerError,
|
|
900
|
+
ServerErrorData,
|
|
901
|
+
ServerMeta,
|
|
902
|
+
ServerMetaTypedDict,
|
|
903
|
+
ServerTypedDict,
|
|
904
|
+
)
|
|
905
|
+
from .server_action import (
|
|
906
|
+
ServerAction,
|
|
907
|
+
ServerActionAttributes,
|
|
908
|
+
ServerActionAttributesTypedDict,
|
|
909
|
+
ServerActionData,
|
|
910
|
+
ServerActionDataTypedDict,
|
|
911
|
+
ServerActionMeta,
|
|
912
|
+
ServerActionMetaTypedDict,
|
|
913
|
+
ServerActionType,
|
|
914
|
+
ServerActionTypedDict,
|
|
915
|
+
)
|
|
916
|
+
from .server_data import (
|
|
917
|
+
Distro,
|
|
918
|
+
DistroTypedDict,
|
|
919
|
+
IpmiStatus,
|
|
920
|
+
OperatingSystem,
|
|
921
|
+
OperatingSystemTypedDict,
|
|
922
|
+
ServerData,
|
|
923
|
+
ServerDataAttributes,
|
|
924
|
+
ServerDataAttributesTypedDict,
|
|
925
|
+
ServerDataFeatures,
|
|
926
|
+
ServerDataFeaturesTypedDict,
|
|
927
|
+
ServerDataPlan,
|
|
928
|
+
ServerDataPlanTypedDict,
|
|
929
|
+
ServerDataSpecs,
|
|
930
|
+
ServerDataSpecsTypedDict,
|
|
931
|
+
ServerDataTypedDict,
|
|
932
|
+
Status,
|
|
933
|
+
)
|
|
934
|
+
from .server_exit_rescue_modeop import (
|
|
935
|
+
ServerExitRescueModeRequest,
|
|
936
|
+
ServerExitRescueModeRequestTypedDict,
|
|
937
|
+
)
|
|
938
|
+
from .server_lockop import ServerLockRequest, ServerLockRequestTypedDict
|
|
939
|
+
from .server_region_resource_data import (
|
|
940
|
+
ServerRegionResourceData,
|
|
941
|
+
ServerRegionResourceDataTypedDict,
|
|
942
|
+
Site,
|
|
943
|
+
SiteTypedDict,
|
|
944
|
+
)
|
|
945
|
+
from .server_rescue import (
|
|
946
|
+
ServerRescue,
|
|
947
|
+
ServerRescueMeta,
|
|
948
|
+
ServerRescueMetaTypedDict,
|
|
949
|
+
ServerRescueTypedDict,
|
|
950
|
+
)
|
|
951
|
+
from .server_schedule_deletion import (
|
|
952
|
+
ServerScheduleDeletion,
|
|
953
|
+
ServerScheduleDeletionAttributes,
|
|
954
|
+
ServerScheduleDeletionAttributesTypedDict,
|
|
955
|
+
ServerScheduleDeletionData,
|
|
956
|
+
ServerScheduleDeletionDataTypedDict,
|
|
957
|
+
ServerScheduleDeletionType,
|
|
958
|
+
ServerScheduleDeletionTypedDict,
|
|
959
|
+
)
|
|
960
|
+
from .server_schedule_deletionop import (
|
|
961
|
+
ServerScheduleDeletionRequest,
|
|
962
|
+
ServerScheduleDeletionRequestTypedDict,
|
|
963
|
+
)
|
|
964
|
+
from .server_start_rescue_modeop import (
|
|
965
|
+
ServerStartRescueModeRequest,
|
|
966
|
+
ServerStartRescueModeRequestTypedDict,
|
|
967
|
+
)
|
|
968
|
+
from .server_unlockop import ServerUnlockRequest, ServerUnlockRequestTypedDict
|
|
969
|
+
from .server_unschedule_deletionop import (
|
|
970
|
+
ServerUnscheduleDeletionRequest,
|
|
971
|
+
ServerUnscheduleDeletionRequestTypedDict,
|
|
972
|
+
)
|
|
973
|
+
from .servers import Servers, ServersMeta, ServersMetaTypedDict, ServersTypedDict
|
|
974
|
+
from .show_virtual_machineop import (
|
|
975
|
+
ShowVirtualMachineRequest,
|
|
976
|
+
ShowVirtualMachineRequestTypedDict,
|
|
977
|
+
)
|
|
978
|
+
from .ssh_key_data import (
|
|
979
|
+
SSHKeyData,
|
|
980
|
+
SSHKeyDataAttributes,
|
|
981
|
+
SSHKeyDataAttributesTypedDict,
|
|
982
|
+
SSHKeyDataType,
|
|
983
|
+
SSHKeyDataTypedDict,
|
|
984
|
+
)
|
|
985
|
+
from .ssh_keys import SSHKeys, SSHKeysMeta, SSHKeysMetaTypedDict, SSHKeysTypedDict
|
|
986
|
+
from .storage_plan_data import (
|
|
987
|
+
StoragePlanData,
|
|
988
|
+
StoragePlanDataAttributes,
|
|
989
|
+
StoragePlanDataAttributesTypedDict,
|
|
990
|
+
StoragePlanDataPricing,
|
|
991
|
+
StoragePlanDataPricingTypedDict,
|
|
992
|
+
StoragePlanDataType,
|
|
993
|
+
StoragePlanDataTypedDict,
|
|
994
|
+
)
|
|
995
|
+
from .storage_plans import (
|
|
996
|
+
StoragePlans,
|
|
997
|
+
StoragePlansMeta,
|
|
998
|
+
StoragePlansMetaTypedDict,
|
|
999
|
+
StoragePlansTypedDict,
|
|
1000
|
+
)
|
|
1001
|
+
from .team import (
|
|
1002
|
+
Team,
|
|
1003
|
+
TeamAttributes,
|
|
1004
|
+
TeamAttributesTypedDict,
|
|
1005
|
+
TeamBilling,
|
|
1006
|
+
TeamBillingTypedDict,
|
|
1007
|
+
TeamTypedDict,
|
|
1008
|
+
)
|
|
1009
|
+
from .team_include import (
|
|
1010
|
+
Currency,
|
|
1011
|
+
CurrencyTypedDict,
|
|
1012
|
+
TeamInclude,
|
|
1013
|
+
TeamIncludeTypedDict,
|
|
1014
|
+
)
|
|
1015
|
+
from .team_members import (
|
|
1016
|
+
TeamMembers,
|
|
1017
|
+
TeamMembersData,
|
|
1018
|
+
TeamMembersDataTypedDict,
|
|
1019
|
+
TeamMembersRole,
|
|
1020
|
+
TeamMembersRoleTypedDict,
|
|
1021
|
+
TeamMembersTypedDict,
|
|
1022
|
+
)
|
|
1023
|
+
from .teams import Teams, TeamsMeta, TeamsMetaTypedDict, TeamsTypedDict
|
|
1024
|
+
from .traffic import (
|
|
1025
|
+
Traffic,
|
|
1026
|
+
TrafficAttributes,
|
|
1027
|
+
TrafficAttributesTypedDict,
|
|
1028
|
+
TrafficData,
|
|
1029
|
+
TrafficDataData,
|
|
1030
|
+
TrafficDataDataTypedDict,
|
|
1031
|
+
TrafficDataTypedDict,
|
|
1032
|
+
TrafficRegions,
|
|
1033
|
+
TrafficRegionsTypedDict,
|
|
1034
|
+
TrafficType,
|
|
1035
|
+
TrafficTypedDict,
|
|
1036
|
+
)
|
|
1037
|
+
from .traffic_quota import (
|
|
1038
|
+
QuotaInMbps,
|
|
1039
|
+
QuotaInMbpsTypedDict,
|
|
1040
|
+
QuotaInTb,
|
|
1041
|
+
QuotaInTbTypedDict,
|
|
1042
|
+
QuotaPerProject,
|
|
1043
|
+
QuotaPerProjectTypedDict,
|
|
1044
|
+
QuotaPerRegion,
|
|
1045
|
+
QuotaPerRegionTypedDict,
|
|
1046
|
+
TrafficQuota,
|
|
1047
|
+
TrafficQuotaAttributes,
|
|
1048
|
+
TrafficQuotaAttributesTypedDict,
|
|
1049
|
+
TrafficQuotaData,
|
|
1050
|
+
TrafficQuotaDataTypedDict,
|
|
1051
|
+
TrafficQuotaType,
|
|
1052
|
+
TrafficQuotaTypedDict,
|
|
1053
|
+
)
|
|
1054
|
+
from .update_api_key import (
|
|
1055
|
+
UpdateAPIKey,
|
|
1056
|
+
UpdateAPIKeyAttributes,
|
|
1057
|
+
UpdateAPIKeyAttributesTypedDict,
|
|
1058
|
+
UpdateAPIKeyData,
|
|
1059
|
+
UpdateAPIKeyDataTypedDict,
|
|
1060
|
+
UpdateAPIKeyType,
|
|
1061
|
+
UpdateAPIKeyTypedDict,
|
|
1062
|
+
)
|
|
1063
|
+
from .update_api_keyop import (
|
|
1064
|
+
UpdateAPIKeyRequest,
|
|
1065
|
+
UpdateAPIKeyRequestTypedDict,
|
|
1066
|
+
UpdateAPIKeyResponseBody,
|
|
1067
|
+
UpdateAPIKeyResponseBodyTypedDict,
|
|
1068
|
+
)
|
|
1069
|
+
from .update_firewallop import (
|
|
1070
|
+
UpdateFirewallFirewallsAttributes,
|
|
1071
|
+
UpdateFirewallFirewallsAttributesTypedDict,
|
|
1072
|
+
UpdateFirewallFirewallsData,
|
|
1073
|
+
UpdateFirewallFirewallsDataTypedDict,
|
|
1074
|
+
UpdateFirewallFirewallsProtocol,
|
|
1075
|
+
UpdateFirewallFirewallsRequestBody,
|
|
1076
|
+
UpdateFirewallFirewallsRequestBodyTypedDict,
|
|
1077
|
+
UpdateFirewallFirewallsRules,
|
|
1078
|
+
UpdateFirewallFirewallsRulesTypedDict,
|
|
1079
|
+
UpdateFirewallFirewallsType,
|
|
1080
|
+
UpdateFirewallRequest,
|
|
1081
|
+
UpdateFirewallRequestTypedDict,
|
|
1082
|
+
)
|
|
1083
|
+
from .update_plans_bandwidthop import (
|
|
1084
|
+
UpdatePlansBandwidthPlansAttributes,
|
|
1085
|
+
UpdatePlansBandwidthPlansAttributesTypedDict,
|
|
1086
|
+
UpdatePlansBandwidthPlansData,
|
|
1087
|
+
UpdatePlansBandwidthPlansDataTypedDict,
|
|
1088
|
+
UpdatePlansBandwidthPlansRequestBody,
|
|
1089
|
+
UpdatePlansBandwidthPlansRequestBodyTypedDict,
|
|
1090
|
+
UpdatePlansBandwidthPlansType,
|
|
1091
|
+
)
|
|
1092
|
+
from .update_projectop import (
|
|
1093
|
+
UpdateProjectProjectsAttributes,
|
|
1094
|
+
UpdateProjectProjectsAttributesTypedDict,
|
|
1095
|
+
UpdateProjectProjectsData,
|
|
1096
|
+
UpdateProjectProjectsDataTypedDict,
|
|
1097
|
+
UpdateProjectProjectsEnvironment,
|
|
1098
|
+
UpdateProjectProjectsRequestBody,
|
|
1099
|
+
UpdateProjectProjectsRequestBodyTypedDict,
|
|
1100
|
+
UpdateProjectProjectsType,
|
|
1101
|
+
UpdateProjectRequest,
|
|
1102
|
+
UpdateProjectRequestTypedDict,
|
|
1103
|
+
UpdateProjectResponseBody,
|
|
1104
|
+
UpdateProjectResponseBodyTypedDict,
|
|
1105
|
+
)
|
|
1106
|
+
from .update_server_deploy_configop import (
|
|
1107
|
+
UpdateServerDeployConfigPartitions,
|
|
1108
|
+
UpdateServerDeployConfigPartitionsTypedDict,
|
|
1109
|
+
UpdateServerDeployConfigRequest,
|
|
1110
|
+
UpdateServerDeployConfigRequestTypedDict,
|
|
1111
|
+
UpdateServerDeployConfigServersAttributes,
|
|
1112
|
+
UpdateServerDeployConfigServersAttributesTypedDict,
|
|
1113
|
+
UpdateServerDeployConfigServersOperatingSystem,
|
|
1114
|
+
UpdateServerDeployConfigServersRaid,
|
|
1115
|
+
UpdateServerDeployConfigServersRequestBody,
|
|
1116
|
+
UpdateServerDeployConfigServersRequestBodyTypedDict,
|
|
1117
|
+
UpdateServerDeployConfigServersType,
|
|
1118
|
+
)
|
|
1119
|
+
from .update_serverop import (
|
|
1120
|
+
UpdateServerRequest,
|
|
1121
|
+
UpdateServerRequestTypedDict,
|
|
1122
|
+
UpdateServerServersData,
|
|
1123
|
+
UpdateServerServersDataTypedDict,
|
|
1124
|
+
UpdateServerServersRequestApplicationJSONAttributes,
|
|
1125
|
+
UpdateServerServersRequestApplicationJSONAttributesTypedDict,
|
|
1126
|
+
UpdateServerServersRequestApplicationJSONBilling,
|
|
1127
|
+
UpdateServerServersRequestApplicationJSONType,
|
|
1128
|
+
UpdateServerServersRequestAttributes,
|
|
1129
|
+
UpdateServerServersRequestAttributesTypedDict,
|
|
1130
|
+
UpdateServerServersRequestBilling,
|
|
1131
|
+
UpdateServerServersRequestBody,
|
|
1132
|
+
UpdateServerServersRequestBodyTypedDict,
|
|
1133
|
+
UpdateServerServersRequestType,
|
|
1134
|
+
)
|
|
1135
|
+
from .update_tagop import (
|
|
1136
|
+
UpdateTagRequest,
|
|
1137
|
+
UpdateTagRequestTypedDict,
|
|
1138
|
+
UpdateTagTagsAttributes,
|
|
1139
|
+
UpdateTagTagsAttributesTypedDict,
|
|
1140
|
+
UpdateTagTagsData,
|
|
1141
|
+
UpdateTagTagsDataTypedDict,
|
|
1142
|
+
UpdateTagTagsRequestBody,
|
|
1143
|
+
UpdateTagTagsRequestBodyTypedDict,
|
|
1144
|
+
UpdateTagTagsType,
|
|
1145
|
+
)
|
|
1146
|
+
from .update_virtual_networkop import (
|
|
1147
|
+
UpdateVirtualNetworkPrivateNetworksAttributes,
|
|
1148
|
+
UpdateVirtualNetworkPrivateNetworksAttributesTypedDict,
|
|
1149
|
+
UpdateVirtualNetworkPrivateNetworksData,
|
|
1150
|
+
UpdateVirtualNetworkPrivateNetworksDataTypedDict,
|
|
1151
|
+
UpdateVirtualNetworkPrivateNetworksRequestBody,
|
|
1152
|
+
UpdateVirtualNetworkPrivateNetworksRequestBodyTypedDict,
|
|
1153
|
+
UpdateVirtualNetworkPrivateNetworksType,
|
|
1154
|
+
UpdateVirtualNetworkRequest,
|
|
1155
|
+
UpdateVirtualNetworkRequestTypedDict,
|
|
1156
|
+
)
|
|
1157
|
+
from .user import (
|
|
1158
|
+
User,
|
|
1159
|
+
UserAttributes,
|
|
1160
|
+
UserAttributesTypedDict,
|
|
1161
|
+
UserRole,
|
|
1162
|
+
UserRoleTypedDict,
|
|
1163
|
+
UserTypedDict,
|
|
1164
|
+
)
|
|
1165
|
+
from .user_data import (
|
|
1166
|
+
UserData,
|
|
1167
|
+
UserDataMeta,
|
|
1168
|
+
UserDataMetaTypedDict,
|
|
1169
|
+
UserDataTypedDict,
|
|
1170
|
+
)
|
|
1171
|
+
from .user_data_properties import (
|
|
1172
|
+
UserDataProperties,
|
|
1173
|
+
UserDataPropertiesAttributes,
|
|
1174
|
+
UserDataPropertiesAttributesTypedDict,
|
|
1175
|
+
UserDataPropertiesType,
|
|
1176
|
+
UserDataPropertiesTypedDict,
|
|
1177
|
+
)
|
|
1178
|
+
from .user_include import (
|
|
1179
|
+
UserInclude,
|
|
1180
|
+
UserIncludeRole,
|
|
1181
|
+
UserIncludeRoleTypedDict,
|
|
1182
|
+
UserIncludeTypedDict,
|
|
1183
|
+
)
|
|
1184
|
+
from .user_team import (
|
|
1185
|
+
UserTeam,
|
|
1186
|
+
UserTeamAttributes,
|
|
1187
|
+
UserTeamAttributesTypedDict,
|
|
1188
|
+
UserTeamBilling,
|
|
1189
|
+
UserTeamBillingTypedDict,
|
|
1190
|
+
UserTeamTypedDict,
|
|
1191
|
+
)
|
|
1192
|
+
from .user_teams import (
|
|
1193
|
+
UserTeams,
|
|
1194
|
+
UserTeamsMeta,
|
|
1195
|
+
UserTeamsMetaTypedDict,
|
|
1196
|
+
UserTeamsTypedDict,
|
|
1197
|
+
)
|
|
1198
|
+
from .user_update import (
|
|
1199
|
+
UserUpdate,
|
|
1200
|
+
UserUpdateAttributes,
|
|
1201
|
+
UserUpdateAttributesTypedDict,
|
|
1202
|
+
UserUpdateTypedDict,
|
|
1203
|
+
)
|
|
1204
|
+
from .virtual_machine import (
|
|
1205
|
+
VirtualMachine,
|
|
1206
|
+
VirtualMachineMeta,
|
|
1207
|
+
VirtualMachineMetaTypedDict,
|
|
1208
|
+
VirtualMachineTypedDict,
|
|
1209
|
+
)
|
|
1210
|
+
from .virtual_machine_payload import (
|
|
1211
|
+
VirtualMachinePayload,
|
|
1212
|
+
VirtualMachinePayloadAttributes,
|
|
1213
|
+
VirtualMachinePayloadAttributesTypedDict,
|
|
1214
|
+
VirtualMachinePayloadData,
|
|
1215
|
+
VirtualMachinePayloadDataTypedDict,
|
|
1216
|
+
VirtualMachinePayloadType,
|
|
1217
|
+
VirtualMachinePayloadTypedDict,
|
|
1218
|
+
)
|
|
1219
|
+
from .virtual_machine_plans import (
|
|
1220
|
+
Disk,
|
|
1221
|
+
DiskTypedDict,
|
|
1222
|
+
Size,
|
|
1223
|
+
SizeTypedDict,
|
|
1224
|
+
VirtualMachinePlans,
|
|
1225
|
+
VirtualMachinePlansAttributes,
|
|
1226
|
+
VirtualMachinePlansAttributesTypedDict,
|
|
1227
|
+
VirtualMachinePlansBRL,
|
|
1228
|
+
VirtualMachinePlansBRLTypedDict,
|
|
1229
|
+
VirtualMachinePlansData,
|
|
1230
|
+
VirtualMachinePlansDataType,
|
|
1231
|
+
VirtualMachinePlansDataTypedDict,
|
|
1232
|
+
VirtualMachinePlansPricing,
|
|
1233
|
+
VirtualMachinePlansPricingTypedDict,
|
|
1234
|
+
VirtualMachinePlansRegions,
|
|
1235
|
+
VirtualMachinePlansRegionsTypedDict,
|
|
1236
|
+
VirtualMachinePlansSpecs,
|
|
1237
|
+
VirtualMachinePlansSpecsTypedDict,
|
|
1238
|
+
VirtualMachinePlansStockLevel,
|
|
1239
|
+
VirtualMachinePlansType,
|
|
1240
|
+
VirtualMachinePlansTypedDict,
|
|
1241
|
+
VirtualMachinePlansUSD,
|
|
1242
|
+
VirtualMachinePlansUSDTypedDict,
|
|
1243
|
+
VirtualMachinePlansUnit,
|
|
1244
|
+
)
|
|
1245
|
+
from .virtual_network import (
|
|
1246
|
+
VirtualNetwork,
|
|
1247
|
+
VirtualNetworkAttributes1,
|
|
1248
|
+
VirtualNetworkAttributes1TypedDict,
|
|
1249
|
+
VirtualNetworkAttributesRegion,
|
|
1250
|
+
VirtualNetworkAttributesRegionTypedDict,
|
|
1251
|
+
VirtualNetworkAttributesSite,
|
|
1252
|
+
VirtualNetworkAttributesSiteTypedDict,
|
|
1253
|
+
VirtualNetworkError,
|
|
1254
|
+
VirtualNetworkErrorData,
|
|
1255
|
+
VirtualNetworkMeta1,
|
|
1256
|
+
VirtualNetworkMeta1TypedDict,
|
|
1257
|
+
VirtualNetworkType1,
|
|
1258
|
+
VirtualNetworkTypedDict,
|
|
1259
|
+
)
|
|
1260
|
+
from .virtual_network_assignment import (
|
|
1261
|
+
VirtualNetworkAssignment,
|
|
1262
|
+
VirtualNetworkAssignmentAttributes,
|
|
1263
|
+
VirtualNetworkAssignmentAttributesTypedDict,
|
|
1264
|
+
VirtualNetworkAssignmentMeta,
|
|
1265
|
+
VirtualNetworkAssignmentMetaTypedDict,
|
|
1266
|
+
VirtualNetworkAssignmentServer,
|
|
1267
|
+
VirtualNetworkAssignmentServerTypedDict,
|
|
1268
|
+
VirtualNetworkAssignmentTypedDict,
|
|
1269
|
+
)
|
|
1270
|
+
from .virtual_network_assignment_data import (
|
|
1271
|
+
VirtualNetworkAssignmentData,
|
|
1272
|
+
VirtualNetworkAssignmentDataAttributes,
|
|
1273
|
+
VirtualNetworkAssignmentDataAttributesTypedDict,
|
|
1274
|
+
VirtualNetworkAssignmentDataServer,
|
|
1275
|
+
VirtualNetworkAssignmentDataServerTypedDict,
|
|
1276
|
+
VirtualNetworkAssignmentDataType,
|
|
1277
|
+
VirtualNetworkAssignmentDataTypedDict,
|
|
1278
|
+
)
|
|
1279
|
+
from .virtual_network_assignments import (
|
|
1280
|
+
VirtualNetworkAssignments,
|
|
1281
|
+
VirtualNetworkAssignmentsMeta,
|
|
1282
|
+
VirtualNetworkAssignmentsMetaTypedDict,
|
|
1283
|
+
VirtualNetworkAssignmentsTypedDict,
|
|
1284
|
+
)
|
|
1285
|
+
from .virtual_network_data import (
|
|
1286
|
+
VirtualNetworkData,
|
|
1287
|
+
VirtualNetworkDataAttributes,
|
|
1288
|
+
VirtualNetworkDataAttributesTypedDict,
|
|
1289
|
+
VirtualNetworkDataRegion,
|
|
1290
|
+
VirtualNetworkDataRegionTypedDict,
|
|
1291
|
+
VirtualNetworkDataSite,
|
|
1292
|
+
VirtualNetworkDataSiteTypedDict,
|
|
1293
|
+
VirtualNetworkDataType,
|
|
1294
|
+
VirtualNetworkDataTypedDict,
|
|
1295
|
+
)
|
|
1296
|
+
from .virtual_network1 import (
|
|
1297
|
+
VirtualNetwork1,
|
|
1298
|
+
VirtualNetwork1TypedDict,
|
|
1299
|
+
VirtualNetworkAttributes,
|
|
1300
|
+
VirtualNetworkAttributesTypedDict,
|
|
1301
|
+
VirtualNetworkMeta,
|
|
1302
|
+
VirtualNetworkMetaTypedDict,
|
|
1303
|
+
VirtualNetworkRegion,
|
|
1304
|
+
VirtualNetworkRegionTypedDict,
|
|
1305
|
+
VirtualNetworkSite,
|
|
1306
|
+
VirtualNetworkSiteTypedDict,
|
|
1307
|
+
VirtualNetworkType,
|
|
1308
|
+
)
|
|
1309
|
+
from .virtual_networks import (
|
|
1310
|
+
VirtualNetworks,
|
|
1311
|
+
VirtualNetworksMeta,
|
|
1312
|
+
VirtualNetworksMetaTypedDict,
|
|
1313
|
+
VirtualNetworksTypedDict,
|
|
1314
|
+
)
|
|
1315
|
+
from .vpn_session_data_with_password import (
|
|
1316
|
+
VpnSessionDataWithPassword,
|
|
1317
|
+
VpnSessionDataWithPasswordAttributes,
|
|
1318
|
+
VpnSessionDataWithPasswordAttributesTypedDict,
|
|
1319
|
+
VpnSessionDataWithPasswordStatus,
|
|
1320
|
+
VpnSessionDataWithPasswordType,
|
|
1321
|
+
VpnSessionDataWithPasswordTypedDict,
|
|
1322
|
+
)
|
|
1323
|
+
from .vpn_session_with_password import (
|
|
1324
|
+
VpnSessionWithPassword,
|
|
1325
|
+
VpnSessionWithPasswordTypedDict,
|
|
1326
|
+
)
|
|
1115
1327
|
|
|
1116
1328
|
__all__ = [
|
|
1117
1329
|
"APIError",
|
|
@@ -1139,12 +1351,14 @@ __all__ = [
|
|
|
1139
1351
|
"BandwidthPackagesProjectTypedDict",
|
|
1140
1352
|
"BandwidthPackagesType",
|
|
1141
1353
|
"BandwidthPackagesTypedDict",
|
|
1142
|
-
"
|
|
1143
|
-
"
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"
|
|
1354
|
+
"BandwidthPlanData",
|
|
1355
|
+
"BandwidthPlanDataAttributes",
|
|
1356
|
+
"BandwidthPlanDataAttributesTypedDict",
|
|
1357
|
+
"BandwidthPlanDataType",
|
|
1358
|
+
"BandwidthPlanDataTypedDict",
|
|
1147
1359
|
"BandwidthPlans",
|
|
1360
|
+
"BandwidthPlansMeta",
|
|
1361
|
+
"BandwidthPlansMetaTypedDict",
|
|
1148
1362
|
"BandwidthPlansTypedDict",
|
|
1149
1363
|
"BillingMethod",
|
|
1150
1364
|
"BillingModel",
|
|
@@ -1268,8 +1482,19 @@ __all__ = [
|
|
|
1268
1482
|
"CustomTag",
|
|
1269
1483
|
"CustomTagAttributes",
|
|
1270
1484
|
"CustomTagAttributesTypedDict",
|
|
1485
|
+
"CustomTagData",
|
|
1486
|
+
"CustomTagDataAttributes",
|
|
1487
|
+
"CustomTagDataAttributesTypedDict",
|
|
1488
|
+
"CustomTagDataType",
|
|
1489
|
+
"CustomTagDataTypedDict",
|
|
1490
|
+
"CustomTagMeta",
|
|
1491
|
+
"CustomTagMetaTypedDict",
|
|
1271
1492
|
"CustomTagType",
|
|
1272
1493
|
"CustomTagTypedDict",
|
|
1494
|
+
"CustomTags",
|
|
1495
|
+
"CustomTagsMeta",
|
|
1496
|
+
"CustomTagsMetaTypedDict",
|
|
1497
|
+
"CustomTagsTypedDict",
|
|
1273
1498
|
"Data",
|
|
1274
1499
|
"DataTypedDict",
|
|
1275
1500
|
"DeleteAPIKeyRequest",
|
|
@@ -1284,8 +1509,12 @@ __all__ = [
|
|
|
1284
1509
|
"DeleteProjectSSHKeyRequestTypedDict",
|
|
1285
1510
|
"DeleteProjectUserDataRequest",
|
|
1286
1511
|
"DeleteProjectUserDataRequestTypedDict",
|
|
1512
|
+
"DeleteSSHKeyRequest",
|
|
1513
|
+
"DeleteSSHKeyRequestTypedDict",
|
|
1287
1514
|
"DeleteStorageFilesystemsRequest",
|
|
1288
1515
|
"DeleteStorageFilesystemsRequestTypedDict",
|
|
1516
|
+
"DeleteUserDataRequest",
|
|
1517
|
+
"DeleteUserDataRequestTypedDict",
|
|
1289
1518
|
"DeleteVirtualNetworksAssignmentsRequest",
|
|
1290
1519
|
"DeleteVirtualNetworksAssignmentsRequestTypedDict",
|
|
1291
1520
|
"DeleteVpnSessionRequest",
|
|
@@ -1325,6 +1554,19 @@ __all__ = [
|
|
|
1325
1554
|
"ErrorObjectMetaTypedDict",
|
|
1326
1555
|
"Errors",
|
|
1327
1556
|
"ErrorsTypedDict",
|
|
1557
|
+
"EventData",
|
|
1558
|
+
"EventDataAttributes",
|
|
1559
|
+
"EventDataAttributesTypedDict",
|
|
1560
|
+
"EventDataAuthor",
|
|
1561
|
+
"EventDataAuthorTypedDict",
|
|
1562
|
+
"EventDataProject",
|
|
1563
|
+
"EventDataProjectTypedDict",
|
|
1564
|
+
"EventDataTarget",
|
|
1565
|
+
"EventDataTargetTypedDict",
|
|
1566
|
+
"EventDataTeam",
|
|
1567
|
+
"EventDataTeamTypedDict",
|
|
1568
|
+
"EventDataType",
|
|
1569
|
+
"EventDataTypedDict",
|
|
1328
1570
|
"Events",
|
|
1329
1571
|
"EventsAttributes",
|
|
1330
1572
|
"EventsAttributesTypedDict",
|
|
@@ -1348,8 +1590,30 @@ __all__ = [
|
|
|
1348
1590
|
"FilterStockLevel",
|
|
1349
1591
|
"FilterType",
|
|
1350
1592
|
"Firewall",
|
|
1593
|
+
"FirewallAssignmentData",
|
|
1594
|
+
"FirewallAssignmentDataAttributes",
|
|
1595
|
+
"FirewallAssignmentDataAttributesTypedDict",
|
|
1596
|
+
"FirewallAssignmentDataServer",
|
|
1597
|
+
"FirewallAssignmentDataServerTypedDict",
|
|
1598
|
+
"FirewallAssignmentDataType",
|
|
1599
|
+
"FirewallAssignmentDataTypedDict",
|
|
1600
|
+
"FirewallAssignments",
|
|
1601
|
+
"FirewallAssignmentsMeta",
|
|
1602
|
+
"FirewallAssignmentsMetaTypedDict",
|
|
1603
|
+
"FirewallAssignmentsTypedDict",
|
|
1351
1604
|
"FirewallAttributes",
|
|
1352
1605
|
"FirewallAttributesTypedDict",
|
|
1606
|
+
"FirewallData",
|
|
1607
|
+
"FirewallDataAttributes",
|
|
1608
|
+
"FirewallDataAttributesTypedDict",
|
|
1609
|
+
"FirewallDataProject",
|
|
1610
|
+
"FirewallDataProjectTypedDict",
|
|
1611
|
+
"FirewallDataRules",
|
|
1612
|
+
"FirewallDataRulesTypedDict",
|
|
1613
|
+
"FirewallDataType",
|
|
1614
|
+
"FirewallDataTypedDict",
|
|
1615
|
+
"FirewallMeta",
|
|
1616
|
+
"FirewallMetaTypedDict",
|
|
1353
1617
|
"FirewallProject",
|
|
1354
1618
|
"FirewallProjectTypedDict",
|
|
1355
1619
|
"FirewallServer",
|
|
@@ -1362,6 +1626,8 @@ __all__ = [
|
|
|
1362
1626
|
"FirewallType",
|
|
1363
1627
|
"FirewallTypedDict",
|
|
1364
1628
|
"Firewalls",
|
|
1629
|
+
"FirewallsMeta",
|
|
1630
|
+
"FirewallsMetaTypedDict",
|
|
1365
1631
|
"FirewallsTypedDict",
|
|
1366
1632
|
"GetBandwidthPlansRequest",
|
|
1367
1633
|
"GetBandwidthPlansRequestTypedDict",
|
|
@@ -1429,6 +1695,12 @@ __all__ = [
|
|
|
1429
1695
|
"GetRolesResponseBody",
|
|
1430
1696
|
"GetRolesResponseBodyTypedDict",
|
|
1431
1697
|
"GetRolesResponseTypedDict",
|
|
1698
|
+
"GetSSHKeyRequest",
|
|
1699
|
+
"GetSSHKeyRequestTypedDict",
|
|
1700
|
+
"GetSSHKeyResponseBody",
|
|
1701
|
+
"GetSSHKeyResponseBodyTypedDict",
|
|
1702
|
+
"GetSSHKeysRequest",
|
|
1703
|
+
"GetSSHKeysRequestTypedDict",
|
|
1432
1704
|
"GetServerDeployConfigRequest",
|
|
1433
1705
|
"GetServerDeployConfigRequestTypedDict",
|
|
1434
1706
|
"GetServerOutOfBandRequest",
|
|
@@ -1449,8 +1721,14 @@ __all__ = [
|
|
|
1449
1721
|
"GetTrafficConsumptionRequestTypedDict",
|
|
1450
1722
|
"GetTrafficQuotaRequest",
|
|
1451
1723
|
"GetTrafficQuotaRequestTypedDict",
|
|
1724
|
+
"GetUserDataRequest",
|
|
1725
|
+
"GetUserDataRequestTypedDict",
|
|
1452
1726
|
"GetUserProfileResponseBody",
|
|
1453
1727
|
"GetUserProfileResponseBodyTypedDict",
|
|
1728
|
+
"GetUsersDataRequest",
|
|
1729
|
+
"GetUsersDataRequestTypedDict",
|
|
1730
|
+
"GetUsersDataResponseBody",
|
|
1731
|
+
"GetUsersDataResponseBodyTypedDict",
|
|
1454
1732
|
"GetVirtualNetworkRequest",
|
|
1455
1733
|
"GetVirtualNetworkRequestTypedDict",
|
|
1456
1734
|
"GetVirtualNetworkResponseBody",
|
|
@@ -1492,6 +1770,7 @@ __all__ = [
|
|
|
1492
1770
|
"IpmiSessionType",
|
|
1493
1771
|
"IpmiSessionTypedDict",
|
|
1494
1772
|
"IpmiStatus",
|
|
1773
|
+
"LatitudeshError",
|
|
1495
1774
|
"ListFirewallsRequest",
|
|
1496
1775
|
"ListFirewallsRequestTypedDict",
|
|
1497
1776
|
"ListFirewallsResponse",
|
|
@@ -1515,19 +1794,27 @@ __all__ = [
|
|
|
1515
1794
|
"MetadataTypedDict",
|
|
1516
1795
|
"Nics",
|
|
1517
1796
|
"NicsTypedDict",
|
|
1797
|
+
"NoResponseError",
|
|
1518
1798
|
"OperatingSystem",
|
|
1799
|
+
"OperatingSystemData",
|
|
1800
|
+
"OperatingSystemDataAttributes",
|
|
1801
|
+
"OperatingSystemDataAttributesTypedDict",
|
|
1802
|
+
"OperatingSystemDataFeatures",
|
|
1803
|
+
"OperatingSystemDataFeaturesTypedDict",
|
|
1804
|
+
"OperatingSystemDataType",
|
|
1805
|
+
"OperatingSystemDataTypedDict",
|
|
1519
1806
|
"OperatingSystemTypedDict",
|
|
1520
1807
|
"OperatingSystems",
|
|
1521
1808
|
"OperatingSystemsAttributes",
|
|
1522
1809
|
"OperatingSystemsAttributesTypedDict",
|
|
1810
|
+
"OperatingSystemsMeta",
|
|
1811
|
+
"OperatingSystemsMetaTypedDict",
|
|
1523
1812
|
"OperatingSystemsTypedDict",
|
|
1524
1813
|
"OutOfBandConnection",
|
|
1525
1814
|
"OutOfBandConnectionAttributes",
|
|
1526
1815
|
"OutOfBandConnectionAttributesTypedDict",
|
|
1527
1816
|
"OutOfBandConnectionData",
|
|
1528
1817
|
"OutOfBandConnectionDataTypedDict",
|
|
1529
|
-
"OutOfBandConnectionSSHKey",
|
|
1530
|
-
"OutOfBandConnectionSSHKeyTypedDict",
|
|
1531
1818
|
"OutOfBandConnectionTypedDict",
|
|
1532
1819
|
"Packages",
|
|
1533
1820
|
"PackagesTypedDict",
|
|
@@ -1554,6 +1841,15 @@ __all__ = [
|
|
|
1554
1841
|
"PatchStorageFilesystemsStorageRequestBody",
|
|
1555
1842
|
"PatchStorageFilesystemsStorageRequestBodyTypedDict",
|
|
1556
1843
|
"PatchStorageFilesystemsStorageType",
|
|
1844
|
+
"PatchUserDataRequest",
|
|
1845
|
+
"PatchUserDataRequestTypedDict",
|
|
1846
|
+
"PatchUserDataUserDataAttributes",
|
|
1847
|
+
"PatchUserDataUserDataAttributesTypedDict",
|
|
1848
|
+
"PatchUserDataUserDataData",
|
|
1849
|
+
"PatchUserDataUserDataDataTypedDict",
|
|
1850
|
+
"PatchUserDataUserDataRequestBody",
|
|
1851
|
+
"PatchUserDataUserDataRequestBodyTypedDict",
|
|
1852
|
+
"PatchUserDataUserDataType",
|
|
1557
1853
|
"PatchUserProfileRequest",
|
|
1558
1854
|
"PatchUserProfileRequestTypedDict",
|
|
1559
1855
|
"PatchUserProfileResponseBody",
|
|
@@ -1606,6 +1902,15 @@ __all__ = [
|
|
|
1606
1902
|
"PostProjectUserDataUserDataRequestBody",
|
|
1607
1903
|
"PostProjectUserDataUserDataRequestBodyTypedDict",
|
|
1608
1904
|
"PostProjectUserDataUserDataType",
|
|
1905
|
+
"PostSSHKeyResponseBody",
|
|
1906
|
+
"PostSSHKeyResponseBodyTypedDict",
|
|
1907
|
+
"PostSSHKeySSHKeysAttributes",
|
|
1908
|
+
"PostSSHKeySSHKeysAttributesTypedDict",
|
|
1909
|
+
"PostSSHKeySSHKeysData",
|
|
1910
|
+
"PostSSHKeySSHKeysDataTypedDict",
|
|
1911
|
+
"PostSSHKeySSHKeysRequestBody",
|
|
1912
|
+
"PostSSHKeySSHKeysRequestBodyTypedDict",
|
|
1913
|
+
"PostSSHKeySSHKeysType",
|
|
1609
1914
|
"PostStorageFilesystemsResponseBody",
|
|
1610
1915
|
"PostStorageFilesystemsResponseBodyTypedDict",
|
|
1611
1916
|
"PostStorageFilesystemsStorageAttributes",
|
|
@@ -1633,6 +1938,13 @@ __all__ = [
|
|
|
1633
1938
|
"PostTeamTeamsRequestBody",
|
|
1634
1939
|
"PostTeamTeamsRequestBodyTypedDict",
|
|
1635
1940
|
"PostTeamTeamsType",
|
|
1941
|
+
"PostUserDataUserDataAttributes",
|
|
1942
|
+
"PostUserDataUserDataAttributesTypedDict",
|
|
1943
|
+
"PostUserDataUserDataData",
|
|
1944
|
+
"PostUserDataUserDataDataTypedDict",
|
|
1945
|
+
"PostUserDataUserDataRequestBody",
|
|
1946
|
+
"PostUserDataUserDataRequestBodyTypedDict",
|
|
1947
|
+
"PostUserDataUserDataType",
|
|
1636
1948
|
"PostVpnSessionVpnSessionsAttributes",
|
|
1637
1949
|
"PostVpnSessionVpnSessionsAttributesTypedDict",
|
|
1638
1950
|
"PostVpnSessionVpnSessionsData",
|
|
@@ -1677,6 +1989,17 @@ __all__ = [
|
|
|
1677
1989
|
"PutProjectUserDataUserDataRequestBody",
|
|
1678
1990
|
"PutProjectUserDataUserDataRequestBodyTypedDict",
|
|
1679
1991
|
"PutProjectUserDataUserDataType",
|
|
1992
|
+
"PutSSHKeyRequest",
|
|
1993
|
+
"PutSSHKeyRequestTypedDict",
|
|
1994
|
+
"PutSSHKeyResponseBody",
|
|
1995
|
+
"PutSSHKeyResponseBodyTypedDict",
|
|
1996
|
+
"PutSSHKeySSHKeysAttributes",
|
|
1997
|
+
"PutSSHKeySSHKeysAttributesTypedDict",
|
|
1998
|
+
"PutSSHKeySSHKeysData",
|
|
1999
|
+
"PutSSHKeySSHKeysDataTypedDict",
|
|
2000
|
+
"PutSSHKeySSHKeysRequestBody",
|
|
2001
|
+
"PutSSHKeySSHKeysRequestBodyTypedDict",
|
|
2002
|
+
"PutSSHKeySSHKeysType",
|
|
1680
2003
|
"PutVpnSessionRequest",
|
|
1681
2004
|
"PutVpnSessionRequestTypedDict",
|
|
1682
2005
|
"QuotaInMbps",
|
|
@@ -1695,6 +2018,8 @@ __all__ = [
|
|
|
1695
2018
|
"RegionData",
|
|
1696
2019
|
"RegionDataTypedDict",
|
|
1697
2020
|
"RegionResourceData",
|
|
2021
|
+
"RegionResourceDataSite",
|
|
2022
|
+
"RegionResourceDataSiteTypedDict",
|
|
1698
2023
|
"RegionResourceDataTypedDict",
|
|
1699
2024
|
"RegionTypedDict",
|
|
1700
2025
|
"Regions",
|
|
@@ -1703,12 +2028,15 @@ __all__ = [
|
|
|
1703
2028
|
"RegionsData",
|
|
1704
2029
|
"RegionsDataTypedDict",
|
|
1705
2030
|
"RegionsTypedDict",
|
|
2031
|
+
"ResponseValidationError",
|
|
1706
2032
|
"Role",
|
|
1707
2033
|
"RoleData",
|
|
1708
2034
|
"RoleDataAttributes",
|
|
1709
2035
|
"RoleDataAttributesTypedDict",
|
|
1710
2036
|
"RoleDataType",
|
|
1711
2037
|
"RoleDataTypedDict",
|
|
2038
|
+
"RoleMeta",
|
|
2039
|
+
"RoleMetaTypedDict",
|
|
1712
2040
|
"RoleTypedDict",
|
|
1713
2041
|
"Rules",
|
|
1714
2042
|
"RulesTypedDict",
|
|
@@ -1719,6 +2047,10 @@ __all__ = [
|
|
|
1719
2047
|
"SSHKeyDataType",
|
|
1720
2048
|
"SSHKeyDataTypedDict",
|
|
1721
2049
|
"SSHKeyTypedDict",
|
|
2050
|
+
"SSHKeys",
|
|
2051
|
+
"SSHKeysMeta",
|
|
2052
|
+
"SSHKeysMetaTypedDict",
|
|
2053
|
+
"SSHKeysTypedDict",
|
|
1722
2054
|
"Security",
|
|
1723
2055
|
"SecurityTypedDict",
|
|
1724
2056
|
"Server",
|
|
@@ -1751,6 +2083,8 @@ __all__ = [
|
|
|
1751
2083
|
"ServerLockRequestTypedDict",
|
|
1752
2084
|
"ServerMeta",
|
|
1753
2085
|
"ServerMetaTypedDict",
|
|
2086
|
+
"ServerRegionResourceData",
|
|
2087
|
+
"ServerRegionResourceDataTypedDict",
|
|
1754
2088
|
"ServerRescue",
|
|
1755
2089
|
"ServerRescueMeta",
|
|
1756
2090
|
"ServerRescueMetaTypedDict",
|
|
@@ -1787,13 +2121,16 @@ __all__ = [
|
|
|
1787
2121
|
"StatsTypedDict",
|
|
1788
2122
|
"Status",
|
|
1789
2123
|
"StockLevel",
|
|
1790
|
-
"StoragePlan",
|
|
1791
2124
|
"StoragePlanData",
|
|
2125
|
+
"StoragePlanDataAttributes",
|
|
2126
|
+
"StoragePlanDataAttributesTypedDict",
|
|
2127
|
+
"StoragePlanDataPricing",
|
|
2128
|
+
"StoragePlanDataPricingTypedDict",
|
|
2129
|
+
"StoragePlanDataType",
|
|
1792
2130
|
"StoragePlanDataTypedDict",
|
|
1793
|
-
"StoragePlanPricing",
|
|
1794
|
-
"StoragePlanPricingTypedDict",
|
|
1795
|
-
"StoragePlanTypedDict",
|
|
1796
2131
|
"StoragePlans",
|
|
2132
|
+
"StoragePlansMeta",
|
|
2133
|
+
"StoragePlansMetaTypedDict",
|
|
1797
2134
|
"StoragePlansTypedDict",
|
|
1798
2135
|
"Target",
|
|
1799
2136
|
"TargetTypedDict",
|
|
@@ -1890,12 +2227,18 @@ __all__ = [
|
|
|
1890
2227
|
"UpdateServerDeployConfigServersType",
|
|
1891
2228
|
"UpdateServerRequest",
|
|
1892
2229
|
"UpdateServerRequestTypedDict",
|
|
1893
|
-
"
|
|
1894
|
-
"
|
|
1895
|
-
"
|
|
2230
|
+
"UpdateServerServersData",
|
|
2231
|
+
"UpdateServerServersDataTypedDict",
|
|
2232
|
+
"UpdateServerServersRequestApplicationJSONAttributes",
|
|
2233
|
+
"UpdateServerServersRequestApplicationJSONAttributesTypedDict",
|
|
2234
|
+
"UpdateServerServersRequestApplicationJSONBilling",
|
|
2235
|
+
"UpdateServerServersRequestApplicationJSONType",
|
|
2236
|
+
"UpdateServerServersRequestAttributes",
|
|
2237
|
+
"UpdateServerServersRequestAttributesTypedDict",
|
|
2238
|
+
"UpdateServerServersRequestBilling",
|
|
1896
2239
|
"UpdateServerServersRequestBody",
|
|
1897
2240
|
"UpdateServerServersRequestBodyTypedDict",
|
|
1898
|
-
"
|
|
2241
|
+
"UpdateServerServersRequestType",
|
|
1899
2242
|
"UpdateTagRequest",
|
|
1900
2243
|
"UpdateTagRequestTypedDict",
|
|
1901
2244
|
"UpdateTagTagsAttributes",
|
|
@@ -1921,6 +2264,8 @@ __all__ = [
|
|
|
1921
2264
|
"UserAttributes",
|
|
1922
2265
|
"UserAttributesTypedDict",
|
|
1923
2266
|
"UserData",
|
|
2267
|
+
"UserDataMeta",
|
|
2268
|
+
"UserDataMetaTypedDict",
|
|
1924
2269
|
"UserDataProperties",
|
|
1925
2270
|
"UserDataPropertiesAttributes",
|
|
1926
2271
|
"UserDataPropertiesAttributesTypedDict",
|
|
@@ -1985,6 +2330,17 @@ __all__ = [
|
|
|
1985
2330
|
"VirtualNetworkAssignment",
|
|
1986
2331
|
"VirtualNetworkAssignmentAttributes",
|
|
1987
2332
|
"VirtualNetworkAssignmentAttributesTypedDict",
|
|
2333
|
+
"VirtualNetworkAssignmentData",
|
|
2334
|
+
"VirtualNetworkAssignmentDataAttributes",
|
|
2335
|
+
"VirtualNetworkAssignmentDataAttributesTypedDict",
|
|
2336
|
+
"VirtualNetworkAssignmentDataServer",
|
|
2337
|
+
"VirtualNetworkAssignmentDataServerTypedDict",
|
|
2338
|
+
"VirtualNetworkAssignmentDataType",
|
|
2339
|
+
"VirtualNetworkAssignmentDataTypedDict",
|
|
2340
|
+
"VirtualNetworkAssignmentMeta",
|
|
2341
|
+
"VirtualNetworkAssignmentMetaTypedDict",
|
|
2342
|
+
"VirtualNetworkAssignmentServer",
|
|
2343
|
+
"VirtualNetworkAssignmentServerTypedDict",
|
|
1988
2344
|
"VirtualNetworkAssignmentTypedDict",
|
|
1989
2345
|
"VirtualNetworkAssignments",
|
|
1990
2346
|
"VirtualNetworkAssignmentsMeta",
|
|
@@ -1998,8 +2354,21 @@ __all__ = [
|
|
|
1998
2354
|
"VirtualNetworkAttributesSite",
|
|
1999
2355
|
"VirtualNetworkAttributesSiteTypedDict",
|
|
2000
2356
|
"VirtualNetworkAttributesTypedDict",
|
|
2357
|
+
"VirtualNetworkData",
|
|
2358
|
+
"VirtualNetworkDataAttributes",
|
|
2359
|
+
"VirtualNetworkDataAttributesTypedDict",
|
|
2360
|
+
"VirtualNetworkDataRegion",
|
|
2361
|
+
"VirtualNetworkDataRegionTypedDict",
|
|
2362
|
+
"VirtualNetworkDataSite",
|
|
2363
|
+
"VirtualNetworkDataSiteTypedDict",
|
|
2364
|
+
"VirtualNetworkDataType",
|
|
2365
|
+
"VirtualNetworkDataTypedDict",
|
|
2001
2366
|
"VirtualNetworkError",
|
|
2002
2367
|
"VirtualNetworkErrorData",
|
|
2368
|
+
"VirtualNetworkMeta",
|
|
2369
|
+
"VirtualNetworkMeta1",
|
|
2370
|
+
"VirtualNetworkMeta1TypedDict",
|
|
2371
|
+
"VirtualNetworkMetaTypedDict",
|
|
2003
2372
|
"VirtualNetworkRegion",
|
|
2004
2373
|
"VirtualNetworkRegionTypedDict",
|
|
2005
2374
|
"VirtualNetworkSite",
|
|
@@ -2020,3 +2389,1094 @@ __all__ = [
|
|
|
2020
2389
|
"VpnSessionWithPassword",
|
|
2021
2390
|
"VpnSessionWithPasswordTypedDict",
|
|
2022
2391
|
]
|
|
2392
|
+
|
|
2393
|
+
_dynamic_imports: dict[str, str] = {
|
|
2394
|
+
"APIKey": ".api_key",
|
|
2395
|
+
"APIKeyTypedDict": ".api_key",
|
|
2396
|
+
"APIKeyUser": ".api_key",
|
|
2397
|
+
"APIKeyUserTypedDict": ".api_key",
|
|
2398
|
+
"Attributes": ".api_key",
|
|
2399
|
+
"AttributesTypedDict": ".api_key",
|
|
2400
|
+
"Type": ".api_key",
|
|
2401
|
+
"APIError": ".apierror",
|
|
2402
|
+
"AssignServerVirtualNetworkPrivateNetworksAttributes": ".assign_server_virtual_networkop",
|
|
2403
|
+
"AssignServerVirtualNetworkPrivateNetworksAttributesTypedDict": ".assign_server_virtual_networkop",
|
|
2404
|
+
"AssignServerVirtualNetworkPrivateNetworksData": ".assign_server_virtual_networkop",
|
|
2405
|
+
"AssignServerVirtualNetworkPrivateNetworksDataTypedDict": ".assign_server_virtual_networkop",
|
|
2406
|
+
"AssignServerVirtualNetworkPrivateNetworksRequestBody": ".assign_server_virtual_networkop",
|
|
2407
|
+
"AssignServerVirtualNetworkPrivateNetworksRequestBodyTypedDict": ".assign_server_virtual_networkop",
|
|
2408
|
+
"AssignServerVirtualNetworkPrivateNetworksType": ".assign_server_virtual_networkop",
|
|
2409
|
+
"BandwidthPackages": ".bandwidth_packages",
|
|
2410
|
+
"BandwidthPackagesAttributes": ".bandwidth_packages",
|
|
2411
|
+
"BandwidthPackagesAttributesTypedDict": ".bandwidth_packages",
|
|
2412
|
+
"BandwidthPackagesProject": ".bandwidth_packages",
|
|
2413
|
+
"BandwidthPackagesProjectTypedDict": ".bandwidth_packages",
|
|
2414
|
+
"BandwidthPackagesType": ".bandwidth_packages",
|
|
2415
|
+
"BandwidthPackagesTypedDict": ".bandwidth_packages",
|
|
2416
|
+
"Packages": ".bandwidth_packages",
|
|
2417
|
+
"PackagesTypedDict": ".bandwidth_packages",
|
|
2418
|
+
"BandwidthPlanData": ".bandwidth_plan_data",
|
|
2419
|
+
"BandwidthPlanDataAttributes": ".bandwidth_plan_data",
|
|
2420
|
+
"BandwidthPlanDataAttributesTypedDict": ".bandwidth_plan_data",
|
|
2421
|
+
"BandwidthPlanDataType": ".bandwidth_plan_data",
|
|
2422
|
+
"BandwidthPlanDataTypedDict": ".bandwidth_plan_data",
|
|
2423
|
+
"Brl": ".bandwidth_plan_data",
|
|
2424
|
+
"BrlTypedDict": ".bandwidth_plan_data",
|
|
2425
|
+
"Pricing": ".bandwidth_plan_data",
|
|
2426
|
+
"PricingTypedDict": ".bandwidth_plan_data",
|
|
2427
|
+
"Usd": ".bandwidth_plan_data",
|
|
2428
|
+
"UsdTypedDict": ".bandwidth_plan_data",
|
|
2429
|
+
"BandwidthPlans": ".bandwidth_plans",
|
|
2430
|
+
"BandwidthPlansMeta": ".bandwidth_plans",
|
|
2431
|
+
"BandwidthPlansMetaTypedDict": ".bandwidth_plans",
|
|
2432
|
+
"BandwidthPlansTypedDict": ".bandwidth_plans",
|
|
2433
|
+
"BillingUsage": ".billing_usage",
|
|
2434
|
+
"BillingUsageAttributes": ".billing_usage",
|
|
2435
|
+
"BillingUsageAttributesTypedDict": ".billing_usage",
|
|
2436
|
+
"BillingUsageData": ".billing_usage",
|
|
2437
|
+
"BillingUsageDataTypedDict": ".billing_usage",
|
|
2438
|
+
"BillingUsageProject": ".billing_usage",
|
|
2439
|
+
"BillingUsageProjectTypedDict": ".billing_usage",
|
|
2440
|
+
"BillingUsageType": ".billing_usage",
|
|
2441
|
+
"BillingUsageTypedDict": ".billing_usage",
|
|
2442
|
+
"Discounts": ".billing_usage",
|
|
2443
|
+
"DiscountsTypedDict": ".billing_usage",
|
|
2444
|
+
"Metadata": ".billing_usage",
|
|
2445
|
+
"MetadataTypedDict": ".billing_usage",
|
|
2446
|
+
"Period": ".billing_usage",
|
|
2447
|
+
"PeriodTypedDict": ".billing_usage",
|
|
2448
|
+
"Products": ".billing_usage",
|
|
2449
|
+
"ProductsTypedDict": ".billing_usage",
|
|
2450
|
+
"Unit": ".billing_usage",
|
|
2451
|
+
"UsageType": ".billing_usage",
|
|
2452
|
+
"CreateAPIKey": ".create_api_key",
|
|
2453
|
+
"CreateAPIKeyAttributes": ".create_api_key",
|
|
2454
|
+
"CreateAPIKeyAttributesTypedDict": ".create_api_key",
|
|
2455
|
+
"CreateAPIKeyType": ".create_api_key",
|
|
2456
|
+
"CreateAPIKeyTypedDict": ".create_api_key",
|
|
2457
|
+
"Data": ".create_api_key",
|
|
2458
|
+
"DataTypedDict": ".create_api_key",
|
|
2459
|
+
"CreateFirewallAssignmentFirewallsAttributes": ".create_firewall_assignmentop",
|
|
2460
|
+
"CreateFirewallAssignmentFirewallsAttributesTypedDict": ".create_firewall_assignmentop",
|
|
2461
|
+
"CreateFirewallAssignmentFirewallsData": ".create_firewall_assignmentop",
|
|
2462
|
+
"CreateFirewallAssignmentFirewallsDataTypedDict": ".create_firewall_assignmentop",
|
|
2463
|
+
"CreateFirewallAssignmentFirewallsRequestBody": ".create_firewall_assignmentop",
|
|
2464
|
+
"CreateFirewallAssignmentFirewallsRequestBodyTypedDict": ".create_firewall_assignmentop",
|
|
2465
|
+
"CreateFirewallAssignmentFirewallsType": ".create_firewall_assignmentop",
|
|
2466
|
+
"CreateFirewallAssignmentRequest": ".create_firewall_assignmentop",
|
|
2467
|
+
"CreateFirewallAssignmentRequestTypedDict": ".create_firewall_assignmentop",
|
|
2468
|
+
"CreateFirewallFirewallsAttributes": ".create_firewallop",
|
|
2469
|
+
"CreateFirewallFirewallsAttributesTypedDict": ".create_firewallop",
|
|
2470
|
+
"CreateFirewallFirewallsData": ".create_firewallop",
|
|
2471
|
+
"CreateFirewallFirewallsDataTypedDict": ".create_firewallop",
|
|
2472
|
+
"CreateFirewallFirewallsRequestBody": ".create_firewallop",
|
|
2473
|
+
"CreateFirewallFirewallsRequestBodyTypedDict": ".create_firewallop",
|
|
2474
|
+
"CreateFirewallFirewallsType": ".create_firewallop",
|
|
2475
|
+
"CreateFirewallProtocol": ".create_firewallop",
|
|
2476
|
+
"CreateFirewallRules": ".create_firewallop",
|
|
2477
|
+
"CreateFirewallRulesTypedDict": ".create_firewallop",
|
|
2478
|
+
"CreateIpmiSessionRequest": ".create_ipmi_sessionop",
|
|
2479
|
+
"CreateIpmiSessionRequestTypedDict": ".create_ipmi_sessionop",
|
|
2480
|
+
"CreateProjectProjectsAttributes": ".create_projectop",
|
|
2481
|
+
"CreateProjectProjectsAttributesTypedDict": ".create_projectop",
|
|
2482
|
+
"CreateProjectProjectsData": ".create_projectop",
|
|
2483
|
+
"CreateProjectProjectsDataTypedDict": ".create_projectop",
|
|
2484
|
+
"CreateProjectProjectsEnvironment": ".create_projectop",
|
|
2485
|
+
"CreateProjectProjectsRequestBody": ".create_projectop",
|
|
2486
|
+
"CreateProjectProjectsRequestBodyTypedDict": ".create_projectop",
|
|
2487
|
+
"CreateProjectProjectsType": ".create_projectop",
|
|
2488
|
+
"CreateProjectProvisioningType": ".create_projectop",
|
|
2489
|
+
"CreateProjectResponseBody": ".create_projectop",
|
|
2490
|
+
"CreateProjectResponseBodyTypedDict": ".create_projectop",
|
|
2491
|
+
"CreateServerActionAction": ".create_server_actionop",
|
|
2492
|
+
"CreateServerActionRequest": ".create_server_actionop",
|
|
2493
|
+
"CreateServerActionRequestTypedDict": ".create_server_actionop",
|
|
2494
|
+
"CreateServerActionServersAttributes": ".create_server_actionop",
|
|
2495
|
+
"CreateServerActionServersAttributesTypedDict": ".create_server_actionop",
|
|
2496
|
+
"CreateServerActionServersData": ".create_server_actionop",
|
|
2497
|
+
"CreateServerActionServersDataTypedDict": ".create_server_actionop",
|
|
2498
|
+
"CreateServerActionServersRequestBody": ".create_server_actionop",
|
|
2499
|
+
"CreateServerActionServersRequestBodyTypedDict": ".create_server_actionop",
|
|
2500
|
+
"CreateServerActionServersType": ".create_server_actionop",
|
|
2501
|
+
"CreateServerOutOfBandRequest": ".create_server_out_of_bandop",
|
|
2502
|
+
"CreateServerOutOfBandRequestTypedDict": ".create_server_out_of_bandop",
|
|
2503
|
+
"CreateServerOutOfBandServersAttributes": ".create_server_out_of_bandop",
|
|
2504
|
+
"CreateServerOutOfBandServersAttributesTypedDict": ".create_server_out_of_bandop",
|
|
2505
|
+
"CreateServerOutOfBandServersData": ".create_server_out_of_bandop",
|
|
2506
|
+
"CreateServerOutOfBandServersDataTypedDict": ".create_server_out_of_bandop",
|
|
2507
|
+
"CreateServerOutOfBandServersRequestBody": ".create_server_out_of_bandop",
|
|
2508
|
+
"CreateServerOutOfBandServersRequestBodyTypedDict": ".create_server_out_of_bandop",
|
|
2509
|
+
"CreateServerOutOfBandServersType": ".create_server_out_of_bandop",
|
|
2510
|
+
"CreateServerReinstallRequest": ".create_server_reinstallop",
|
|
2511
|
+
"CreateServerReinstallRequestTypedDict": ".create_server_reinstallop",
|
|
2512
|
+
"CreateServerReinstallServersAttributes": ".create_server_reinstallop",
|
|
2513
|
+
"CreateServerReinstallServersAttributesTypedDict": ".create_server_reinstallop",
|
|
2514
|
+
"CreateServerReinstallServersData": ".create_server_reinstallop",
|
|
2515
|
+
"CreateServerReinstallServersDataTypedDict": ".create_server_reinstallop",
|
|
2516
|
+
"CreateServerReinstallServersOperatingSystem": ".create_server_reinstallop",
|
|
2517
|
+
"CreateServerReinstallServersPartitions": ".create_server_reinstallop",
|
|
2518
|
+
"CreateServerReinstallServersPartitionsTypedDict": ".create_server_reinstallop",
|
|
2519
|
+
"CreateServerReinstallServersRaid": ".create_server_reinstallop",
|
|
2520
|
+
"CreateServerReinstallServersRequestBody": ".create_server_reinstallop",
|
|
2521
|
+
"CreateServerReinstallServersRequestBodyTypedDict": ".create_server_reinstallop",
|
|
2522
|
+
"CreateServerReinstallServersType": ".create_server_reinstallop",
|
|
2523
|
+
"CreateServerRaid": ".create_serverop",
|
|
2524
|
+
"CreateServerServersAttributes": ".create_serverop",
|
|
2525
|
+
"CreateServerServersAttributesTypedDict": ".create_serverop",
|
|
2526
|
+
"CreateServerServersBilling": ".create_serverop",
|
|
2527
|
+
"CreateServerServersData": ".create_serverop",
|
|
2528
|
+
"CreateServerServersDataTypedDict": ".create_serverop",
|
|
2529
|
+
"CreateServerServersOperatingSystem": ".create_serverop",
|
|
2530
|
+
"CreateServerServersPlan": ".create_serverop",
|
|
2531
|
+
"CreateServerServersRequestBody": ".create_serverop",
|
|
2532
|
+
"CreateServerServersRequestBodyTypedDict": ".create_serverop",
|
|
2533
|
+
"CreateServerServersSite": ".create_serverop",
|
|
2534
|
+
"CreateServerServersType": ".create_serverop",
|
|
2535
|
+
"CreateTagTagsAttributes": ".create_tagop",
|
|
2536
|
+
"CreateTagTagsAttributesTypedDict": ".create_tagop",
|
|
2537
|
+
"CreateTagTagsData": ".create_tagop",
|
|
2538
|
+
"CreateTagTagsDataTypedDict": ".create_tagop",
|
|
2539
|
+
"CreateTagTagsRequestBody": ".create_tagop",
|
|
2540
|
+
"CreateTagTagsRequestBodyTypedDict": ".create_tagop",
|
|
2541
|
+
"CreateTagTagsType": ".create_tagop",
|
|
2542
|
+
"CreateVirtualNetworkPrivateNetworksAttributes": ".create_virtual_networkop",
|
|
2543
|
+
"CreateVirtualNetworkPrivateNetworksAttributesTypedDict": ".create_virtual_networkop",
|
|
2544
|
+
"CreateVirtualNetworkPrivateNetworksData": ".create_virtual_networkop",
|
|
2545
|
+
"CreateVirtualNetworkPrivateNetworksDataTypedDict": ".create_virtual_networkop",
|
|
2546
|
+
"CreateVirtualNetworkPrivateNetworksRequestBody": ".create_virtual_networkop",
|
|
2547
|
+
"CreateVirtualNetworkPrivateNetworksRequestBodyTypedDict": ".create_virtual_networkop",
|
|
2548
|
+
"CreateVirtualNetworkPrivateNetworksSite": ".create_virtual_networkop",
|
|
2549
|
+
"CreateVirtualNetworkPrivateNetworksType": ".create_virtual_networkop",
|
|
2550
|
+
"CustomTag": ".custom_tag",
|
|
2551
|
+
"CustomTagAttributes": ".custom_tag",
|
|
2552
|
+
"CustomTagAttributesTypedDict": ".custom_tag",
|
|
2553
|
+
"CustomTagMeta": ".custom_tag",
|
|
2554
|
+
"CustomTagMetaTypedDict": ".custom_tag",
|
|
2555
|
+
"CustomTagType": ".custom_tag",
|
|
2556
|
+
"CustomTagTypedDict": ".custom_tag",
|
|
2557
|
+
"CustomTagData": ".custom_tag_data",
|
|
2558
|
+
"CustomTagDataAttributes": ".custom_tag_data",
|
|
2559
|
+
"CustomTagDataAttributesTypedDict": ".custom_tag_data",
|
|
2560
|
+
"CustomTagDataType": ".custom_tag_data",
|
|
2561
|
+
"CustomTagDataTypedDict": ".custom_tag_data",
|
|
2562
|
+
"CustomTags": ".custom_tags",
|
|
2563
|
+
"CustomTagsMeta": ".custom_tags",
|
|
2564
|
+
"CustomTagsMetaTypedDict": ".custom_tags",
|
|
2565
|
+
"CustomTagsTypedDict": ".custom_tags",
|
|
2566
|
+
"DeleteAPIKeyRequest": ".delete_api_keyop",
|
|
2567
|
+
"DeleteAPIKeyRequestTypedDict": ".delete_api_keyop",
|
|
2568
|
+
"DeleteFirewallAssignmentRequest": ".delete_firewall_assignmentop",
|
|
2569
|
+
"DeleteFirewallAssignmentRequestTypedDict": ".delete_firewall_assignmentop",
|
|
2570
|
+
"DeleteFirewallRequest": ".delete_firewallop",
|
|
2571
|
+
"DeleteFirewallRequestTypedDict": ".delete_firewallop",
|
|
2572
|
+
"DeleteProjectSSHKeyRequest": ".delete_project_ssh_keyop",
|
|
2573
|
+
"DeleteProjectSSHKeyRequestTypedDict": ".delete_project_ssh_keyop",
|
|
2574
|
+
"DeleteProjectUserDataRequest": ".delete_project_user_dataop",
|
|
2575
|
+
"DeleteProjectUserDataRequestTypedDict": ".delete_project_user_dataop",
|
|
2576
|
+
"DeleteProjectRequest": ".delete_projectop",
|
|
2577
|
+
"DeleteProjectRequestTypedDict": ".delete_projectop",
|
|
2578
|
+
"DeleteSSHKeyRequest": ".delete_ssh_keyop",
|
|
2579
|
+
"DeleteSSHKeyRequestTypedDict": ".delete_ssh_keyop",
|
|
2580
|
+
"DeleteStorageFilesystemsRequest": ".delete_storage_filesystemsop",
|
|
2581
|
+
"DeleteStorageFilesystemsRequestTypedDict": ".delete_storage_filesystemsop",
|
|
2582
|
+
"DeleteUserDataRequest": ".delete_user_dataop",
|
|
2583
|
+
"DeleteUserDataRequestTypedDict": ".delete_user_dataop",
|
|
2584
|
+
"DeleteVirtualNetworksAssignmentsRequest": ".delete_virtual_networks_assignmentsop",
|
|
2585
|
+
"DeleteVirtualNetworksAssignmentsRequestTypedDict": ".delete_virtual_networks_assignmentsop",
|
|
2586
|
+
"DeleteVpnSessionRequest": ".delete_vpn_sessionop",
|
|
2587
|
+
"DeleteVpnSessionRequestTypedDict": ".delete_vpn_sessionop",
|
|
2588
|
+
"DeployConfig": ".deploy_config",
|
|
2589
|
+
"DeployConfigAttributes": ".deploy_config",
|
|
2590
|
+
"DeployConfigAttributesTypedDict": ".deploy_config",
|
|
2591
|
+
"DeployConfigData": ".deploy_config",
|
|
2592
|
+
"DeployConfigDataTypedDict": ".deploy_config",
|
|
2593
|
+
"DeployConfigError": ".deploy_config",
|
|
2594
|
+
"DeployConfigErrorData": ".deploy_config",
|
|
2595
|
+
"DeployConfigPartitions": ".deploy_config",
|
|
2596
|
+
"DeployConfigPartitionsTypedDict": ".deploy_config",
|
|
2597
|
+
"DeployConfigTypedDict": ".deploy_config",
|
|
2598
|
+
"DestroyServerRequest": ".destroy_serverop",
|
|
2599
|
+
"DestroyServerRequestTypedDict": ".destroy_serverop",
|
|
2600
|
+
"DestroyTagRequest": ".destroy_tagop",
|
|
2601
|
+
"DestroyTagRequestTypedDict": ".destroy_tagop",
|
|
2602
|
+
"DestroyTeamMemberRequest": ".destroy_team_memberop",
|
|
2603
|
+
"DestroyTeamMemberRequestTypedDict": ".destroy_team_memberop",
|
|
2604
|
+
"DestroyVirtualMachineRequest": ".destroy_virtual_machineop",
|
|
2605
|
+
"DestroyVirtualMachineRequestTypedDict": ".destroy_virtual_machineop",
|
|
2606
|
+
"DestroyVirtualNetworkRequest": ".destroy_virtual_networkop",
|
|
2607
|
+
"DestroyVirtualNetworkRequestTypedDict": ".destroy_virtual_networkop",
|
|
2608
|
+
"ErrorObject": ".error_object",
|
|
2609
|
+
"ErrorObjectData": ".error_object",
|
|
2610
|
+
"ErrorObjectMeta": ".error_object",
|
|
2611
|
+
"ErrorObjectMetaTypedDict": ".error_object",
|
|
2612
|
+
"Errors": ".error_object",
|
|
2613
|
+
"ErrorsTypedDict": ".error_object",
|
|
2614
|
+
"EventData": ".event_data",
|
|
2615
|
+
"EventDataAttributes": ".event_data",
|
|
2616
|
+
"EventDataAttributesTypedDict": ".event_data",
|
|
2617
|
+
"EventDataAuthor": ".event_data",
|
|
2618
|
+
"EventDataAuthorTypedDict": ".event_data",
|
|
2619
|
+
"EventDataProject": ".event_data",
|
|
2620
|
+
"EventDataProjectTypedDict": ".event_data",
|
|
2621
|
+
"EventDataTarget": ".event_data",
|
|
2622
|
+
"EventDataTargetTypedDict": ".event_data",
|
|
2623
|
+
"EventDataTeam": ".event_data",
|
|
2624
|
+
"EventDataTeamTypedDict": ".event_data",
|
|
2625
|
+
"EventDataType": ".event_data",
|
|
2626
|
+
"EventDataTypedDict": ".event_data",
|
|
2627
|
+
"Author": ".events",
|
|
2628
|
+
"AuthorTypedDict": ".events",
|
|
2629
|
+
"Events": ".events",
|
|
2630
|
+
"EventsAttributes": ".events",
|
|
2631
|
+
"EventsAttributesTypedDict": ".events",
|
|
2632
|
+
"EventsProject": ".events",
|
|
2633
|
+
"EventsProjectTypedDict": ".events",
|
|
2634
|
+
"EventsTeam": ".events",
|
|
2635
|
+
"EventsTeamTypedDict": ".events",
|
|
2636
|
+
"EventsTypedDict": ".events",
|
|
2637
|
+
"Meta": ".events",
|
|
2638
|
+
"MetaTypedDict": ".events",
|
|
2639
|
+
"Target": ".events",
|
|
2640
|
+
"TargetTypedDict": ".events",
|
|
2641
|
+
"FilesystemData": ".filesystem_data",
|
|
2642
|
+
"FilesystemDataAttributes": ".filesystem_data",
|
|
2643
|
+
"FilesystemDataAttributesTypedDict": ".filesystem_data",
|
|
2644
|
+
"FilesystemDataProject": ".filesystem_data",
|
|
2645
|
+
"FilesystemDataProjectTypedDict": ".filesystem_data",
|
|
2646
|
+
"FilesystemDataType": ".filesystem_data",
|
|
2647
|
+
"FilesystemDataTypedDict": ".filesystem_data",
|
|
2648
|
+
"Firewall": ".firewall",
|
|
2649
|
+
"FirewallAttributes": ".firewall",
|
|
2650
|
+
"FirewallAttributesTypedDict": ".firewall",
|
|
2651
|
+
"FirewallMeta": ".firewall",
|
|
2652
|
+
"FirewallMetaTypedDict": ".firewall",
|
|
2653
|
+
"FirewallProject": ".firewall",
|
|
2654
|
+
"FirewallProjectTypedDict": ".firewall",
|
|
2655
|
+
"FirewallType": ".firewall",
|
|
2656
|
+
"FirewallTypedDict": ".firewall",
|
|
2657
|
+
"Rules": ".firewall",
|
|
2658
|
+
"RulesTypedDict": ".firewall",
|
|
2659
|
+
"FirewallAssignmentData": ".firewall_assignment_data",
|
|
2660
|
+
"FirewallAssignmentDataAttributes": ".firewall_assignment_data",
|
|
2661
|
+
"FirewallAssignmentDataAttributesTypedDict": ".firewall_assignment_data",
|
|
2662
|
+
"FirewallAssignmentDataServer": ".firewall_assignment_data",
|
|
2663
|
+
"FirewallAssignmentDataServerTypedDict": ".firewall_assignment_data",
|
|
2664
|
+
"FirewallAssignmentDataType": ".firewall_assignment_data",
|
|
2665
|
+
"FirewallAssignmentDataTypedDict": ".firewall_assignment_data",
|
|
2666
|
+
"FirewallAssignments": ".firewall_assignments",
|
|
2667
|
+
"FirewallAssignmentsMeta": ".firewall_assignments",
|
|
2668
|
+
"FirewallAssignmentsMetaTypedDict": ".firewall_assignments",
|
|
2669
|
+
"FirewallAssignmentsTypedDict": ".firewall_assignments",
|
|
2670
|
+
"FirewallData": ".firewall_data",
|
|
2671
|
+
"FirewallDataAttributes": ".firewall_data",
|
|
2672
|
+
"FirewallDataAttributesTypedDict": ".firewall_data",
|
|
2673
|
+
"FirewallDataProject": ".firewall_data",
|
|
2674
|
+
"FirewallDataProjectTypedDict": ".firewall_data",
|
|
2675
|
+
"FirewallDataRules": ".firewall_data",
|
|
2676
|
+
"FirewallDataRulesTypedDict": ".firewall_data",
|
|
2677
|
+
"FirewallDataType": ".firewall_data",
|
|
2678
|
+
"FirewallDataTypedDict": ".firewall_data",
|
|
2679
|
+
"FirewallServer": ".firewall_server",
|
|
2680
|
+
"FirewallServerAttributes": ".firewall_server",
|
|
2681
|
+
"FirewallServerAttributesTypedDict": ".firewall_server",
|
|
2682
|
+
"FirewallServerServer": ".firewall_server",
|
|
2683
|
+
"FirewallServerServerTypedDict": ".firewall_server",
|
|
2684
|
+
"FirewallServerType": ".firewall_server",
|
|
2685
|
+
"FirewallServerTypedDict": ".firewall_server",
|
|
2686
|
+
"Firewalls": ".firewalls",
|
|
2687
|
+
"FirewallsMeta": ".firewalls",
|
|
2688
|
+
"FirewallsMetaTypedDict": ".firewalls",
|
|
2689
|
+
"FirewallsTypedDict": ".firewalls",
|
|
2690
|
+
"GetBandwidthPlansRequest": ".get_bandwidth_plansop",
|
|
2691
|
+
"GetBandwidthPlansRequestTypedDict": ".get_bandwidth_plansop",
|
|
2692
|
+
"GetBandwidthPlansResponse": ".get_bandwidth_plansop",
|
|
2693
|
+
"GetBandwidthPlansResponseTypedDict": ".get_bandwidth_plansop",
|
|
2694
|
+
"GetBillingUsageRequest": ".get_billing_usageop",
|
|
2695
|
+
"GetBillingUsageRequestTypedDict": ".get_billing_usageop",
|
|
2696
|
+
"GetEventsRequest": ".get_eventsop",
|
|
2697
|
+
"GetEventsRequestTypedDict": ".get_eventsop",
|
|
2698
|
+
"GetEventsResponse": ".get_eventsop",
|
|
2699
|
+
"GetEventsResponseBody": ".get_eventsop",
|
|
2700
|
+
"GetEventsResponseBodyTypedDict": ".get_eventsop",
|
|
2701
|
+
"GetEventsResponseTypedDict": ".get_eventsop",
|
|
2702
|
+
"GetFirewallAssignmentsRequest": ".get_firewall_assignmentsop",
|
|
2703
|
+
"GetFirewallAssignmentsRequestTypedDict": ".get_firewall_assignmentsop",
|
|
2704
|
+
"GetFirewallAssignmentsResponse": ".get_firewall_assignmentsop",
|
|
2705
|
+
"GetFirewallAssignmentsResponseTypedDict": ".get_firewall_assignmentsop",
|
|
2706
|
+
"GetFirewallRequest": ".get_firewallop",
|
|
2707
|
+
"GetFirewallRequestTypedDict": ".get_firewallop",
|
|
2708
|
+
"GetIPRequest": ".get_ipop",
|
|
2709
|
+
"GetIPRequestTypedDict": ".get_ipop",
|
|
2710
|
+
"FilterFamily": ".get_ipsop",
|
|
2711
|
+
"FilterType": ".get_ipsop",
|
|
2712
|
+
"GetIpsRequest": ".get_ipsop",
|
|
2713
|
+
"GetIpsRequestTypedDict": ".get_ipsop",
|
|
2714
|
+
"GetIpsResponse": ".get_ipsop",
|
|
2715
|
+
"GetIpsResponseTypedDict": ".get_ipsop",
|
|
2716
|
+
"GetPlanRequest": ".get_planop",
|
|
2717
|
+
"GetPlanRequestTypedDict": ".get_planop",
|
|
2718
|
+
"GetPlansOperatingSystemRequest": ".get_plans_operating_systemop",
|
|
2719
|
+
"GetPlansOperatingSystemRequestTypedDict": ".get_plans_operating_systemop",
|
|
2720
|
+
"GetPlansOperatingSystemResponse": ".get_plans_operating_systemop",
|
|
2721
|
+
"GetPlansOperatingSystemResponseBody": ".get_plans_operating_systemop",
|
|
2722
|
+
"GetPlansOperatingSystemResponseBodyTypedDict": ".get_plans_operating_systemop",
|
|
2723
|
+
"GetPlansOperatingSystemResponseTypedDict": ".get_plans_operating_systemop",
|
|
2724
|
+
"FilterStockLevel": ".get_plansop",
|
|
2725
|
+
"GetPlansRequest": ".get_plansop",
|
|
2726
|
+
"GetPlansRequestTypedDict": ".get_plansop",
|
|
2727
|
+
"GetPlansResponseBody": ".get_plansop",
|
|
2728
|
+
"GetPlansResponseBodyTypedDict": ".get_plansop",
|
|
2729
|
+
"GetProjectSSHKeyRequest": ".get_project_ssh_keyop",
|
|
2730
|
+
"GetProjectSSHKeyRequestTypedDict": ".get_project_ssh_keyop",
|
|
2731
|
+
"GetProjectSSHKeyResponseBody": ".get_project_ssh_keyop",
|
|
2732
|
+
"GetProjectSSHKeyResponseBodyTypedDict": ".get_project_ssh_keyop",
|
|
2733
|
+
"GetProjectSSHKeysRequest": ".get_project_ssh_keysop",
|
|
2734
|
+
"GetProjectSSHKeysRequestTypedDict": ".get_project_ssh_keysop",
|
|
2735
|
+
"GetProjectUserDataRequest": ".get_project_user_dataop",
|
|
2736
|
+
"GetProjectUserDataRequestTypedDict": ".get_project_user_dataop",
|
|
2737
|
+
"GetProjectUsersDataRequest": ".get_project_users_dataop",
|
|
2738
|
+
"GetProjectUsersDataRequestTypedDict": ".get_project_users_dataop",
|
|
2739
|
+
"GetProjectUsersDataResponseBody": ".get_project_users_dataop",
|
|
2740
|
+
"GetProjectUsersDataResponseBodyTypedDict": ".get_project_users_dataop",
|
|
2741
|
+
"GetProjectsRequest": ".get_projectsop",
|
|
2742
|
+
"GetProjectsRequestTypedDict": ".get_projectsop",
|
|
2743
|
+
"GetProjectsResponse": ".get_projectsop",
|
|
2744
|
+
"GetProjectsResponseTypedDict": ".get_projectsop",
|
|
2745
|
+
"GetRegionRequest": ".get_regionop",
|
|
2746
|
+
"GetRegionRequestTypedDict": ".get_regionop",
|
|
2747
|
+
"GetRegionsRequest": ".get_regionsop",
|
|
2748
|
+
"GetRegionsRequestTypedDict": ".get_regionsop",
|
|
2749
|
+
"GetRegionsResponse": ".get_regionsop",
|
|
2750
|
+
"GetRegionsResponseTypedDict": ".get_regionsop",
|
|
2751
|
+
"GetRoleIDRequest": ".get_role_idop",
|
|
2752
|
+
"GetRoleIDRequestTypedDict": ".get_role_idop",
|
|
2753
|
+
"GetRolesRequest": ".get_rolesop",
|
|
2754
|
+
"GetRolesRequestTypedDict": ".get_rolesop",
|
|
2755
|
+
"GetRolesResponse": ".get_rolesop",
|
|
2756
|
+
"GetRolesResponseBody": ".get_rolesop",
|
|
2757
|
+
"GetRolesResponseBodyTypedDict": ".get_rolesop",
|
|
2758
|
+
"GetRolesResponseTypedDict": ".get_rolesop",
|
|
2759
|
+
"GetServerDeployConfigRequest": ".get_server_deploy_configop",
|
|
2760
|
+
"GetServerDeployConfigRequestTypedDict": ".get_server_deploy_configop",
|
|
2761
|
+
"GetServerOutOfBandRequest": ".get_server_out_of_bandop",
|
|
2762
|
+
"GetServerOutOfBandRequestTypedDict": ".get_server_out_of_bandop",
|
|
2763
|
+
"GetServerRequest": ".get_serverop",
|
|
2764
|
+
"GetServerRequestTypedDict": ".get_serverop",
|
|
2765
|
+
"GetServersRequest": ".get_serversop",
|
|
2766
|
+
"GetServersRequestTypedDict": ".get_serversop",
|
|
2767
|
+
"GetServersResponse": ".get_serversop",
|
|
2768
|
+
"GetServersResponseTypedDict": ".get_serversop",
|
|
2769
|
+
"GetSSHKeyRequest": ".get_ssh_keyop",
|
|
2770
|
+
"GetSSHKeyRequestTypedDict": ".get_ssh_keyop",
|
|
2771
|
+
"GetSSHKeyResponseBody": ".get_ssh_keyop",
|
|
2772
|
+
"GetSSHKeyResponseBodyTypedDict": ".get_ssh_keyop",
|
|
2773
|
+
"GetSSHKeysRequest": ".get_ssh_keysop",
|
|
2774
|
+
"GetSSHKeysRequestTypedDict": ".get_ssh_keysop",
|
|
2775
|
+
"GetStorageFilesystemsRequest": ".get_storage_filesystemsop",
|
|
2776
|
+
"GetStorageFilesystemsRequestTypedDict": ".get_storage_filesystemsop",
|
|
2777
|
+
"GetTeamMembersRequest": ".get_team_membersop",
|
|
2778
|
+
"GetTeamMembersRequestTypedDict": ".get_team_membersop",
|
|
2779
|
+
"GetTeamMembersResponse": ".get_team_membersop",
|
|
2780
|
+
"GetTeamMembersResponseTypedDict": ".get_team_membersop",
|
|
2781
|
+
"GetTrafficConsumptionRequest": ".get_traffic_consumptionop",
|
|
2782
|
+
"GetTrafficConsumptionRequestTypedDict": ".get_traffic_consumptionop",
|
|
2783
|
+
"GetTrafficQuotaRequest": ".get_traffic_quotaop",
|
|
2784
|
+
"GetTrafficQuotaRequestTypedDict": ".get_traffic_quotaop",
|
|
2785
|
+
"GetUserDataRequest": ".get_user_dataop",
|
|
2786
|
+
"GetUserDataRequestTypedDict": ".get_user_dataop",
|
|
2787
|
+
"GetUserProfileResponseBody": ".get_user_profileop",
|
|
2788
|
+
"GetUserProfileResponseBodyTypedDict": ".get_user_profileop",
|
|
2789
|
+
"GetUsersDataRequest": ".get_users_dataop",
|
|
2790
|
+
"GetUsersDataRequestTypedDict": ".get_users_dataop",
|
|
2791
|
+
"GetUsersDataResponseBody": ".get_users_dataop",
|
|
2792
|
+
"GetUsersDataResponseBodyTypedDict": ".get_users_dataop",
|
|
2793
|
+
"GetVirtualNetworkRequest": ".get_virtual_networkop",
|
|
2794
|
+
"GetVirtualNetworkRequestTypedDict": ".get_virtual_networkop",
|
|
2795
|
+
"GetVirtualNetworkResponseBody": ".get_virtual_networkop",
|
|
2796
|
+
"GetVirtualNetworkResponseBodyTypedDict": ".get_virtual_networkop",
|
|
2797
|
+
"GetVirtualNetworksAssignmentsRequest": ".get_virtual_networks_assignmentsop",
|
|
2798
|
+
"GetVirtualNetworksAssignmentsRequestTypedDict": ".get_virtual_networks_assignmentsop",
|
|
2799
|
+
"GetVirtualNetworksAssignmentsResponse": ".get_virtual_networks_assignmentsop",
|
|
2800
|
+
"GetVirtualNetworksAssignmentsResponseTypedDict": ".get_virtual_networks_assignmentsop",
|
|
2801
|
+
"GetVirtualNetworksRequest": ".get_virtual_networksop",
|
|
2802
|
+
"GetVirtualNetworksRequestTypedDict": ".get_virtual_networksop",
|
|
2803
|
+
"GetVirtualNetworksResponse": ".get_virtual_networksop",
|
|
2804
|
+
"GetVirtualNetworksResponseTypedDict": ".get_virtual_networksop",
|
|
2805
|
+
"FilterLocation": ".get_vpn_sessionsop",
|
|
2806
|
+
"GetVpnSessionsMeta": ".get_vpn_sessionsop",
|
|
2807
|
+
"GetVpnSessionsMetaTypedDict": ".get_vpn_sessionsop",
|
|
2808
|
+
"GetVpnSessionsRequest": ".get_vpn_sessionsop",
|
|
2809
|
+
"GetVpnSessionsRequestTypedDict": ".get_vpn_sessionsop",
|
|
2810
|
+
"GetVpnSessionsResponseBody": ".get_vpn_sessionsop",
|
|
2811
|
+
"GetVpnSessionsResponseBodyTypedDict": ".get_vpn_sessionsop",
|
|
2812
|
+
"IndexVirtualMachineRequest": ".index_virtual_machineop",
|
|
2813
|
+
"IndexVirtualMachineRequestTypedDict": ".index_virtual_machineop",
|
|
2814
|
+
"Assignment": ".ip_address",
|
|
2815
|
+
"AssignmentTypedDict": ".ip_address",
|
|
2816
|
+
"Family": ".ip_address",
|
|
2817
|
+
"IPAddress": ".ip_address",
|
|
2818
|
+
"IPAddressAttributes": ".ip_address",
|
|
2819
|
+
"IPAddressAttributesTypedDict": ".ip_address",
|
|
2820
|
+
"IPAddressProject": ".ip_address",
|
|
2821
|
+
"IPAddressProjectTypedDict": ".ip_address",
|
|
2822
|
+
"IPAddressRegion": ".ip_address",
|
|
2823
|
+
"IPAddressRegionTypedDict": ".ip_address",
|
|
2824
|
+
"IPAddressType": ".ip_address",
|
|
2825
|
+
"IPAddressTypedDict": ".ip_address",
|
|
2826
|
+
"Location": ".ip_address",
|
|
2827
|
+
"LocationTypedDict": ".ip_address",
|
|
2828
|
+
"IPAddresses": ".ip_addresses",
|
|
2829
|
+
"IPAddressesTypedDict": ".ip_addresses",
|
|
2830
|
+
"IpmiSession": ".ipmi_session",
|
|
2831
|
+
"IpmiSessionAttributes": ".ipmi_session",
|
|
2832
|
+
"IpmiSessionAttributesTypedDict": ".ipmi_session",
|
|
2833
|
+
"IpmiSessionData": ".ipmi_session",
|
|
2834
|
+
"IpmiSessionDataTypedDict": ".ipmi_session",
|
|
2835
|
+
"IpmiSessionType": ".ipmi_session",
|
|
2836
|
+
"IpmiSessionTypedDict": ".ipmi_session",
|
|
2837
|
+
"LatitudeshError": ".latitudesherror",
|
|
2838
|
+
"ListFirewallsRequest": ".list_firewallsop",
|
|
2839
|
+
"ListFirewallsRequestTypedDict": ".list_firewallsop",
|
|
2840
|
+
"ListFirewallsResponse": ".list_firewallsop",
|
|
2841
|
+
"ListFirewallsResponseTypedDict": ".list_firewallsop",
|
|
2842
|
+
"Membership": ".membership",
|
|
2843
|
+
"MembershipAttributes": ".membership",
|
|
2844
|
+
"MembershipAttributesTypedDict": ".membership",
|
|
2845
|
+
"MembershipData": ".membership",
|
|
2846
|
+
"MembershipDataTypedDict": ".membership",
|
|
2847
|
+
"MembershipRole": ".membership",
|
|
2848
|
+
"MembershipTypedDict": ".membership",
|
|
2849
|
+
"NoResponseError": ".no_response_error",
|
|
2850
|
+
"OperatingSystemData": ".operating_system_data",
|
|
2851
|
+
"OperatingSystemDataAttributes": ".operating_system_data",
|
|
2852
|
+
"OperatingSystemDataAttributesTypedDict": ".operating_system_data",
|
|
2853
|
+
"OperatingSystemDataFeatures": ".operating_system_data",
|
|
2854
|
+
"OperatingSystemDataFeaturesTypedDict": ".operating_system_data",
|
|
2855
|
+
"OperatingSystemDataType": ".operating_system_data",
|
|
2856
|
+
"OperatingSystemDataTypedDict": ".operating_system_data",
|
|
2857
|
+
"Features": ".operating_systems",
|
|
2858
|
+
"FeaturesTypedDict": ".operating_systems",
|
|
2859
|
+
"OperatingSystems": ".operating_systems",
|
|
2860
|
+
"OperatingSystemsAttributes": ".operating_systems",
|
|
2861
|
+
"OperatingSystemsAttributesTypedDict": ".operating_systems",
|
|
2862
|
+
"OperatingSystemsMeta": ".operating_systems",
|
|
2863
|
+
"OperatingSystemsMetaTypedDict": ".operating_systems",
|
|
2864
|
+
"OperatingSystemsTypedDict": ".operating_systems",
|
|
2865
|
+
"Credentials": ".out_of_band_connection",
|
|
2866
|
+
"CredentialsTypedDict": ".out_of_band_connection",
|
|
2867
|
+
"OutOfBandConnection": ".out_of_band_connection",
|
|
2868
|
+
"OutOfBandConnectionAttributes": ".out_of_band_connection",
|
|
2869
|
+
"OutOfBandConnectionAttributesTypedDict": ".out_of_band_connection",
|
|
2870
|
+
"OutOfBandConnectionData": ".out_of_band_connection",
|
|
2871
|
+
"OutOfBandConnectionDataTypedDict": ".out_of_band_connection",
|
|
2872
|
+
"OutOfBandConnectionTypedDict": ".out_of_band_connection",
|
|
2873
|
+
"SSHKey": ".out_of_band_connection",
|
|
2874
|
+
"SSHKeyTypedDict": ".out_of_band_connection",
|
|
2875
|
+
"PatchCurrentTeamRequest": ".patch_current_teamop",
|
|
2876
|
+
"PatchCurrentTeamRequestTypedDict": ".patch_current_teamop",
|
|
2877
|
+
"PatchCurrentTeamResponseBody": ".patch_current_teamop",
|
|
2878
|
+
"PatchCurrentTeamResponseBodyTypedDict": ".patch_current_teamop",
|
|
2879
|
+
"PatchCurrentTeamTeamsAttributes": ".patch_current_teamop",
|
|
2880
|
+
"PatchCurrentTeamTeamsAttributesTypedDict": ".patch_current_teamop",
|
|
2881
|
+
"PatchCurrentTeamTeamsCurrency": ".patch_current_teamop",
|
|
2882
|
+
"PatchCurrentTeamTeamsData": ".patch_current_teamop",
|
|
2883
|
+
"PatchCurrentTeamTeamsDataTypedDict": ".patch_current_teamop",
|
|
2884
|
+
"PatchCurrentTeamTeamsRequestBody": ".patch_current_teamop",
|
|
2885
|
+
"PatchCurrentTeamTeamsRequestBodyTypedDict": ".patch_current_teamop",
|
|
2886
|
+
"PatchCurrentTeamTeamsType": ".patch_current_teamop",
|
|
2887
|
+
"PatchStorageFilesystemsRequest": ".patch_storage_filesystemsop",
|
|
2888
|
+
"PatchStorageFilesystemsRequestTypedDict": ".patch_storage_filesystemsop",
|
|
2889
|
+
"PatchStorageFilesystemsResponseBody": ".patch_storage_filesystemsop",
|
|
2890
|
+
"PatchStorageFilesystemsResponseBodyTypedDict": ".patch_storage_filesystemsop",
|
|
2891
|
+
"PatchStorageFilesystemsStorageAttributes": ".patch_storage_filesystemsop",
|
|
2892
|
+
"PatchStorageFilesystemsStorageAttributesTypedDict": ".patch_storage_filesystemsop",
|
|
2893
|
+
"PatchStorageFilesystemsStorageData": ".patch_storage_filesystemsop",
|
|
2894
|
+
"PatchStorageFilesystemsStorageDataTypedDict": ".patch_storage_filesystemsop",
|
|
2895
|
+
"PatchStorageFilesystemsStorageRequestBody": ".patch_storage_filesystemsop",
|
|
2896
|
+
"PatchStorageFilesystemsStorageRequestBodyTypedDict": ".patch_storage_filesystemsop",
|
|
2897
|
+
"PatchStorageFilesystemsStorageType": ".patch_storage_filesystemsop",
|
|
2898
|
+
"PatchUserDataRequest": ".patch_user_dataop",
|
|
2899
|
+
"PatchUserDataRequestTypedDict": ".patch_user_dataop",
|
|
2900
|
+
"PatchUserDataUserDataAttributes": ".patch_user_dataop",
|
|
2901
|
+
"PatchUserDataUserDataAttributesTypedDict": ".patch_user_dataop",
|
|
2902
|
+
"PatchUserDataUserDataData": ".patch_user_dataop",
|
|
2903
|
+
"PatchUserDataUserDataDataTypedDict": ".patch_user_dataop",
|
|
2904
|
+
"PatchUserDataUserDataRequestBody": ".patch_user_dataop",
|
|
2905
|
+
"PatchUserDataUserDataRequestBodyTypedDict": ".patch_user_dataop",
|
|
2906
|
+
"PatchUserDataUserDataType": ".patch_user_dataop",
|
|
2907
|
+
"PatchUserProfileRequest": ".patch_user_profileop",
|
|
2908
|
+
"PatchUserProfileRequestTypedDict": ".patch_user_profileop",
|
|
2909
|
+
"PatchUserProfileResponseBody": ".patch_user_profileop",
|
|
2910
|
+
"PatchUserProfileResponseBodyTypedDict": ".patch_user_profileop",
|
|
2911
|
+
"PatchUserProfileUserProfileAttributes": ".patch_user_profileop",
|
|
2912
|
+
"PatchUserProfileUserProfileAttributesTypedDict": ".patch_user_profileop",
|
|
2913
|
+
"PatchUserProfileUserProfileData": ".patch_user_profileop",
|
|
2914
|
+
"PatchUserProfileUserProfileDataTypedDict": ".patch_user_profileop",
|
|
2915
|
+
"PatchUserProfileUserProfileRequestBody": ".patch_user_profileop",
|
|
2916
|
+
"PatchUserProfileUserProfileRequestBodyTypedDict": ".patch_user_profileop",
|
|
2917
|
+
"PatchUserProfileUserProfileRole": ".patch_user_profileop",
|
|
2918
|
+
"PatchUserProfileUserProfileType": ".patch_user_profileop",
|
|
2919
|
+
"Plan": ".plan",
|
|
2920
|
+
"PlanTypedDict": ".plan",
|
|
2921
|
+
"CPU": ".plan_data",
|
|
2922
|
+
"CPUTypedDict": ".plan_data",
|
|
2923
|
+
"Drives": ".plan_data",
|
|
2924
|
+
"DrivesTypedDict": ".plan_data",
|
|
2925
|
+
"Gpu": ".plan_data",
|
|
2926
|
+
"GpuTypedDict": ".plan_data",
|
|
2927
|
+
"Locations": ".plan_data",
|
|
2928
|
+
"LocationsTypedDict": ".plan_data",
|
|
2929
|
+
"Memory": ".plan_data",
|
|
2930
|
+
"MemoryTypedDict": ".plan_data",
|
|
2931
|
+
"Nics": ".plan_data",
|
|
2932
|
+
"NicsTypedDict": ".plan_data",
|
|
2933
|
+
"PlanData": ".plan_data",
|
|
2934
|
+
"PlanDataAttributes": ".plan_data",
|
|
2935
|
+
"PlanDataAttributesType": ".plan_data",
|
|
2936
|
+
"PlanDataAttributesTypedDict": ".plan_data",
|
|
2937
|
+
"PlanDataBRL": ".plan_data",
|
|
2938
|
+
"PlanDataBRLTypedDict": ".plan_data",
|
|
2939
|
+
"PlanDataPricing": ".plan_data",
|
|
2940
|
+
"PlanDataPricingTypedDict": ".plan_data",
|
|
2941
|
+
"PlanDataRegions": ".plan_data",
|
|
2942
|
+
"PlanDataRegionsTypedDict": ".plan_data",
|
|
2943
|
+
"PlanDataType": ".plan_data",
|
|
2944
|
+
"PlanDataTypedDict": ".plan_data",
|
|
2945
|
+
"PlanDataUSD": ".plan_data",
|
|
2946
|
+
"PlanDataUSDTypedDict": ".plan_data",
|
|
2947
|
+
"Specs": ".plan_data",
|
|
2948
|
+
"SpecsTypedDict": ".plan_data",
|
|
2949
|
+
"StockLevel": ".plan_data",
|
|
2950
|
+
"PostAPIKeyResponseBody": ".post_api_keyop",
|
|
2951
|
+
"PostAPIKeyResponseBodyTypedDict": ".post_api_keyop",
|
|
2952
|
+
"PostProjectSSHKeyRequest": ".post_project_ssh_keyop",
|
|
2953
|
+
"PostProjectSSHKeyRequestTypedDict": ".post_project_ssh_keyop",
|
|
2954
|
+
"PostProjectSSHKeyResponseBody": ".post_project_ssh_keyop",
|
|
2955
|
+
"PostProjectSSHKeyResponseBodyTypedDict": ".post_project_ssh_keyop",
|
|
2956
|
+
"PostProjectSSHKeySSHKeysAttributes": ".post_project_ssh_keyop",
|
|
2957
|
+
"PostProjectSSHKeySSHKeysAttributesTypedDict": ".post_project_ssh_keyop",
|
|
2958
|
+
"PostProjectSSHKeySSHKeysData": ".post_project_ssh_keyop",
|
|
2959
|
+
"PostProjectSSHKeySSHKeysDataTypedDict": ".post_project_ssh_keyop",
|
|
2960
|
+
"PostProjectSSHKeySSHKeysRequestBody": ".post_project_ssh_keyop",
|
|
2961
|
+
"PostProjectSSHKeySSHKeysRequestBodyTypedDict": ".post_project_ssh_keyop",
|
|
2962
|
+
"PostProjectSSHKeySSHKeysType": ".post_project_ssh_keyop",
|
|
2963
|
+
"PostProjectUserDataRequest": ".post_project_user_dataop",
|
|
2964
|
+
"PostProjectUserDataRequestTypedDict": ".post_project_user_dataop",
|
|
2965
|
+
"PostProjectUserDataUserDataAttributes": ".post_project_user_dataop",
|
|
2966
|
+
"PostProjectUserDataUserDataAttributesTypedDict": ".post_project_user_dataop",
|
|
2967
|
+
"PostProjectUserDataUserDataData": ".post_project_user_dataop",
|
|
2968
|
+
"PostProjectUserDataUserDataDataTypedDict": ".post_project_user_dataop",
|
|
2969
|
+
"PostProjectUserDataUserDataRequestBody": ".post_project_user_dataop",
|
|
2970
|
+
"PostProjectUserDataUserDataRequestBodyTypedDict": ".post_project_user_dataop",
|
|
2971
|
+
"PostProjectUserDataUserDataType": ".post_project_user_dataop",
|
|
2972
|
+
"PostSSHKeyResponseBody": ".post_ssh_keyop",
|
|
2973
|
+
"PostSSHKeyResponseBodyTypedDict": ".post_ssh_keyop",
|
|
2974
|
+
"PostSSHKeySSHKeysAttributes": ".post_ssh_keyop",
|
|
2975
|
+
"PostSSHKeySSHKeysAttributesTypedDict": ".post_ssh_keyop",
|
|
2976
|
+
"PostSSHKeySSHKeysData": ".post_ssh_keyop",
|
|
2977
|
+
"PostSSHKeySSHKeysDataTypedDict": ".post_ssh_keyop",
|
|
2978
|
+
"PostSSHKeySSHKeysRequestBody": ".post_ssh_keyop",
|
|
2979
|
+
"PostSSHKeySSHKeysRequestBodyTypedDict": ".post_ssh_keyop",
|
|
2980
|
+
"PostSSHKeySSHKeysType": ".post_ssh_keyop",
|
|
2981
|
+
"PostStorageFilesystemsResponseBody": ".post_storage_filesystemsop",
|
|
2982
|
+
"PostStorageFilesystemsResponseBodyTypedDict": ".post_storage_filesystemsop",
|
|
2983
|
+
"PostStorageFilesystemsStorageAttributes": ".post_storage_filesystemsop",
|
|
2984
|
+
"PostStorageFilesystemsStorageAttributesTypedDict": ".post_storage_filesystemsop",
|
|
2985
|
+
"PostStorageFilesystemsStorageData": ".post_storage_filesystemsop",
|
|
2986
|
+
"PostStorageFilesystemsStorageDataTypedDict": ".post_storage_filesystemsop",
|
|
2987
|
+
"PostStorageFilesystemsStorageRequestBody": ".post_storage_filesystemsop",
|
|
2988
|
+
"PostStorageFilesystemsStorageRequestBodyTypedDict": ".post_storage_filesystemsop",
|
|
2989
|
+
"PostStorageFilesystemsStorageType": ".post_storage_filesystemsop",
|
|
2990
|
+
"PostTeamMembersTeamsMembersAttributes": ".post_team_membersop",
|
|
2991
|
+
"PostTeamMembersTeamsMembersAttributesTypedDict": ".post_team_membersop",
|
|
2992
|
+
"PostTeamMembersTeamsMembersData": ".post_team_membersop",
|
|
2993
|
+
"PostTeamMembersTeamsMembersDataTypedDict": ".post_team_membersop",
|
|
2994
|
+
"PostTeamMembersTeamsMembersRequestBody": ".post_team_membersop",
|
|
2995
|
+
"PostTeamMembersTeamsMembersRequestBodyTypedDict": ".post_team_membersop",
|
|
2996
|
+
"PostTeamMembersTeamsMembersRole": ".post_team_membersop",
|
|
2997
|
+
"PostTeamMembersTeamsMembersType": ".post_team_membersop",
|
|
2998
|
+
"PostTeamResponseBody": ".post_teamop",
|
|
2999
|
+
"PostTeamResponseBodyTypedDict": ".post_teamop",
|
|
3000
|
+
"PostTeamTeamsAttributes": ".post_teamop",
|
|
3001
|
+
"PostTeamTeamsAttributesTypedDict": ".post_teamop",
|
|
3002
|
+
"PostTeamTeamsCurrency": ".post_teamop",
|
|
3003
|
+
"PostTeamTeamsData": ".post_teamop",
|
|
3004
|
+
"PostTeamTeamsDataTypedDict": ".post_teamop",
|
|
3005
|
+
"PostTeamTeamsRequestBody": ".post_teamop",
|
|
3006
|
+
"PostTeamTeamsRequestBodyTypedDict": ".post_teamop",
|
|
3007
|
+
"PostTeamTeamsType": ".post_teamop",
|
|
3008
|
+
"PostUserDataUserDataAttributes": ".post_user_dataop",
|
|
3009
|
+
"PostUserDataUserDataAttributesTypedDict": ".post_user_dataop",
|
|
3010
|
+
"PostUserDataUserDataData": ".post_user_dataop",
|
|
3011
|
+
"PostUserDataUserDataDataTypedDict": ".post_user_dataop",
|
|
3012
|
+
"PostUserDataUserDataRequestBody": ".post_user_dataop",
|
|
3013
|
+
"PostUserDataUserDataRequestBodyTypedDict": ".post_user_dataop",
|
|
3014
|
+
"PostUserDataUserDataType": ".post_user_dataop",
|
|
3015
|
+
"PostVpnSessionVpnSessionsAttributes": ".post_vpn_sessionop",
|
|
3016
|
+
"PostVpnSessionVpnSessionsAttributesTypedDict": ".post_vpn_sessionop",
|
|
3017
|
+
"PostVpnSessionVpnSessionsData": ".post_vpn_sessionop",
|
|
3018
|
+
"PostVpnSessionVpnSessionsDataTypedDict": ".post_vpn_sessionop",
|
|
3019
|
+
"PostVpnSessionVpnSessionsRequestBody": ".post_vpn_sessionop",
|
|
3020
|
+
"PostVpnSessionVpnSessionsRequestBodyTypedDict": ".post_vpn_sessionop",
|
|
3021
|
+
"PostVpnSessionVpnSessionsSite": ".post_vpn_sessionop",
|
|
3022
|
+
"PostVpnSessionVpnSessionsType": ".post_vpn_sessionop",
|
|
3023
|
+
"BillingMethod": ".project",
|
|
3024
|
+
"BillingType": ".project",
|
|
3025
|
+
"Environment": ".project",
|
|
3026
|
+
"Project": ".project",
|
|
3027
|
+
"ProjectAttributes": ".project",
|
|
3028
|
+
"ProjectAttributesTypedDict": ".project",
|
|
3029
|
+
"ProjectBilling": ".project",
|
|
3030
|
+
"ProjectBillingTypedDict": ".project",
|
|
3031
|
+
"ProjectStats": ".project",
|
|
3032
|
+
"ProjectStatsTypedDict": ".project",
|
|
3033
|
+
"ProjectTypedDict": ".project",
|
|
3034
|
+
"BillingModel": ".project_include",
|
|
3035
|
+
"BillingModelTypedDict": ".project_include",
|
|
3036
|
+
"ProjectInclude": ".project_include",
|
|
3037
|
+
"ProjectIncludeTypedDict": ".project_include",
|
|
3038
|
+
"Stats": ".project_include",
|
|
3039
|
+
"StatsTypedDict": ".project_include",
|
|
3040
|
+
"Projects": ".projects",
|
|
3041
|
+
"ProjectsTypedDict": ".projects",
|
|
3042
|
+
"PutProjectSSHKeyRequest": ".put_project_ssh_keyop",
|
|
3043
|
+
"PutProjectSSHKeyRequestTypedDict": ".put_project_ssh_keyop",
|
|
3044
|
+
"PutProjectSSHKeyResponseBody": ".put_project_ssh_keyop",
|
|
3045
|
+
"PutProjectSSHKeyResponseBodyTypedDict": ".put_project_ssh_keyop",
|
|
3046
|
+
"PutProjectSSHKeySSHKeysAttributes": ".put_project_ssh_keyop",
|
|
3047
|
+
"PutProjectSSHKeySSHKeysAttributesTypedDict": ".put_project_ssh_keyop",
|
|
3048
|
+
"PutProjectSSHKeySSHKeysData": ".put_project_ssh_keyop",
|
|
3049
|
+
"PutProjectSSHKeySSHKeysDataTypedDict": ".put_project_ssh_keyop",
|
|
3050
|
+
"PutProjectSSHKeySSHKeysRequestBody": ".put_project_ssh_keyop",
|
|
3051
|
+
"PutProjectSSHKeySSHKeysRequestBodyTypedDict": ".put_project_ssh_keyop",
|
|
3052
|
+
"PutProjectSSHKeySSHKeysType": ".put_project_ssh_keyop",
|
|
3053
|
+
"PutProjectUserDataRequest": ".put_project_user_dataop",
|
|
3054
|
+
"PutProjectUserDataRequestTypedDict": ".put_project_user_dataop",
|
|
3055
|
+
"PutProjectUserDataUserDataAttributes": ".put_project_user_dataop",
|
|
3056
|
+
"PutProjectUserDataUserDataAttributesTypedDict": ".put_project_user_dataop",
|
|
3057
|
+
"PutProjectUserDataUserDataData": ".put_project_user_dataop",
|
|
3058
|
+
"PutProjectUserDataUserDataDataTypedDict": ".put_project_user_dataop",
|
|
3059
|
+
"PutProjectUserDataUserDataRequestBody": ".put_project_user_dataop",
|
|
3060
|
+
"PutProjectUserDataUserDataRequestBodyTypedDict": ".put_project_user_dataop",
|
|
3061
|
+
"PutProjectUserDataUserDataType": ".put_project_user_dataop",
|
|
3062
|
+
"PutSSHKeyRequest": ".put_ssh_keyop",
|
|
3063
|
+
"PutSSHKeyRequestTypedDict": ".put_ssh_keyop",
|
|
3064
|
+
"PutSSHKeyResponseBody": ".put_ssh_keyop",
|
|
3065
|
+
"PutSSHKeyResponseBodyTypedDict": ".put_ssh_keyop",
|
|
3066
|
+
"PutSSHKeySSHKeysAttributes": ".put_ssh_keyop",
|
|
3067
|
+
"PutSSHKeySSHKeysAttributesTypedDict": ".put_ssh_keyop",
|
|
3068
|
+
"PutSSHKeySSHKeysData": ".put_ssh_keyop",
|
|
3069
|
+
"PutSSHKeySSHKeysDataTypedDict": ".put_ssh_keyop",
|
|
3070
|
+
"PutSSHKeySSHKeysRequestBody": ".put_ssh_keyop",
|
|
3071
|
+
"PutSSHKeySSHKeysRequestBodyTypedDict": ".put_ssh_keyop",
|
|
3072
|
+
"PutSSHKeySSHKeysType": ".put_ssh_keyop",
|
|
3073
|
+
"PutVpnSessionRequest": ".put_vpn_sessionop",
|
|
3074
|
+
"PutVpnSessionRequestTypedDict": ".put_vpn_sessionop",
|
|
3075
|
+
"Region": ".region",
|
|
3076
|
+
"RegionAttributes": ".region",
|
|
3077
|
+
"RegionAttributesTypedDict": ".region",
|
|
3078
|
+
"RegionCountry": ".region",
|
|
3079
|
+
"RegionCountryTypedDict": ".region",
|
|
3080
|
+
"RegionData": ".region",
|
|
3081
|
+
"RegionDataTypedDict": ".region",
|
|
3082
|
+
"RegionTypedDict": ".region",
|
|
3083
|
+
"RegionResourceData": ".region_resource_data",
|
|
3084
|
+
"RegionResourceDataSite": ".region_resource_data",
|
|
3085
|
+
"RegionResourceDataSiteTypedDict": ".region_resource_data",
|
|
3086
|
+
"RegionResourceDataTypedDict": ".region_resource_data",
|
|
3087
|
+
"Country": ".regions",
|
|
3088
|
+
"CountryTypedDict": ".regions",
|
|
3089
|
+
"Regions": ".regions",
|
|
3090
|
+
"RegionsAttributes": ".regions",
|
|
3091
|
+
"RegionsAttributesTypedDict": ".regions",
|
|
3092
|
+
"RegionsData": ".regions",
|
|
3093
|
+
"RegionsDataTypedDict": ".regions",
|
|
3094
|
+
"RegionsTypedDict": ".regions",
|
|
3095
|
+
"ResponseValidationError": ".responsevalidationerror",
|
|
3096
|
+
"Role": ".role",
|
|
3097
|
+
"RoleMeta": ".role",
|
|
3098
|
+
"RoleMetaTypedDict": ".role",
|
|
3099
|
+
"RoleTypedDict": ".role",
|
|
3100
|
+
"RoleData": ".role_data",
|
|
3101
|
+
"RoleDataAttributes": ".role_data",
|
|
3102
|
+
"RoleDataAttributesTypedDict": ".role_data",
|
|
3103
|
+
"RoleDataType": ".role_data",
|
|
3104
|
+
"RoleDataTypedDict": ".role_data",
|
|
3105
|
+
"Security": ".security",
|
|
3106
|
+
"SecurityTypedDict": ".security",
|
|
3107
|
+
"Server": ".server",
|
|
3108
|
+
"Server1": ".server",
|
|
3109
|
+
"Server1TypedDict": ".server",
|
|
3110
|
+
"ServerError": ".server",
|
|
3111
|
+
"ServerErrorData": ".server",
|
|
3112
|
+
"ServerMeta": ".server",
|
|
3113
|
+
"ServerMetaTypedDict": ".server",
|
|
3114
|
+
"ServerTypedDict": ".server",
|
|
3115
|
+
"ServerAction": ".server_action",
|
|
3116
|
+
"ServerActionAttributes": ".server_action",
|
|
3117
|
+
"ServerActionAttributesTypedDict": ".server_action",
|
|
3118
|
+
"ServerActionData": ".server_action",
|
|
3119
|
+
"ServerActionDataTypedDict": ".server_action",
|
|
3120
|
+
"ServerActionMeta": ".server_action",
|
|
3121
|
+
"ServerActionMetaTypedDict": ".server_action",
|
|
3122
|
+
"ServerActionType": ".server_action",
|
|
3123
|
+
"ServerActionTypedDict": ".server_action",
|
|
3124
|
+
"Distro": ".server_data",
|
|
3125
|
+
"DistroTypedDict": ".server_data",
|
|
3126
|
+
"IpmiStatus": ".server_data",
|
|
3127
|
+
"OperatingSystem": ".server_data",
|
|
3128
|
+
"OperatingSystemTypedDict": ".server_data",
|
|
3129
|
+
"ServerData": ".server_data",
|
|
3130
|
+
"ServerDataAttributes": ".server_data",
|
|
3131
|
+
"ServerDataAttributesTypedDict": ".server_data",
|
|
3132
|
+
"ServerDataFeatures": ".server_data",
|
|
3133
|
+
"ServerDataFeaturesTypedDict": ".server_data",
|
|
3134
|
+
"ServerDataPlan": ".server_data",
|
|
3135
|
+
"ServerDataPlanTypedDict": ".server_data",
|
|
3136
|
+
"ServerDataSpecs": ".server_data",
|
|
3137
|
+
"ServerDataSpecsTypedDict": ".server_data",
|
|
3138
|
+
"ServerDataTypedDict": ".server_data",
|
|
3139
|
+
"Status": ".server_data",
|
|
3140
|
+
"ServerExitRescueModeRequest": ".server_exit_rescue_modeop",
|
|
3141
|
+
"ServerExitRescueModeRequestTypedDict": ".server_exit_rescue_modeop",
|
|
3142
|
+
"ServerLockRequest": ".server_lockop",
|
|
3143
|
+
"ServerLockRequestTypedDict": ".server_lockop",
|
|
3144
|
+
"ServerRegionResourceData": ".server_region_resource_data",
|
|
3145
|
+
"ServerRegionResourceDataTypedDict": ".server_region_resource_data",
|
|
3146
|
+
"Site": ".server_region_resource_data",
|
|
3147
|
+
"SiteTypedDict": ".server_region_resource_data",
|
|
3148
|
+
"ServerRescue": ".server_rescue",
|
|
3149
|
+
"ServerRescueMeta": ".server_rescue",
|
|
3150
|
+
"ServerRescueMetaTypedDict": ".server_rescue",
|
|
3151
|
+
"ServerRescueTypedDict": ".server_rescue",
|
|
3152
|
+
"ServerScheduleDeletion": ".server_schedule_deletion",
|
|
3153
|
+
"ServerScheduleDeletionAttributes": ".server_schedule_deletion",
|
|
3154
|
+
"ServerScheduleDeletionAttributesTypedDict": ".server_schedule_deletion",
|
|
3155
|
+
"ServerScheduleDeletionData": ".server_schedule_deletion",
|
|
3156
|
+
"ServerScheduleDeletionDataTypedDict": ".server_schedule_deletion",
|
|
3157
|
+
"ServerScheduleDeletionType": ".server_schedule_deletion",
|
|
3158
|
+
"ServerScheduleDeletionTypedDict": ".server_schedule_deletion",
|
|
3159
|
+
"ServerScheduleDeletionRequest": ".server_schedule_deletionop",
|
|
3160
|
+
"ServerScheduleDeletionRequestTypedDict": ".server_schedule_deletionop",
|
|
3161
|
+
"ServerStartRescueModeRequest": ".server_start_rescue_modeop",
|
|
3162
|
+
"ServerStartRescueModeRequestTypedDict": ".server_start_rescue_modeop",
|
|
3163
|
+
"ServerUnlockRequest": ".server_unlockop",
|
|
3164
|
+
"ServerUnlockRequestTypedDict": ".server_unlockop",
|
|
3165
|
+
"ServerUnscheduleDeletionRequest": ".server_unschedule_deletionop",
|
|
3166
|
+
"ServerUnscheduleDeletionRequestTypedDict": ".server_unschedule_deletionop",
|
|
3167
|
+
"Servers": ".servers",
|
|
3168
|
+
"ServersMeta": ".servers",
|
|
3169
|
+
"ServersMetaTypedDict": ".servers",
|
|
3170
|
+
"ServersTypedDict": ".servers",
|
|
3171
|
+
"ShowVirtualMachineRequest": ".show_virtual_machineop",
|
|
3172
|
+
"ShowVirtualMachineRequestTypedDict": ".show_virtual_machineop",
|
|
3173
|
+
"SSHKeyData": ".ssh_key_data",
|
|
3174
|
+
"SSHKeyDataAttributes": ".ssh_key_data",
|
|
3175
|
+
"SSHKeyDataAttributesTypedDict": ".ssh_key_data",
|
|
3176
|
+
"SSHKeyDataType": ".ssh_key_data",
|
|
3177
|
+
"SSHKeyDataTypedDict": ".ssh_key_data",
|
|
3178
|
+
"SSHKeys": ".ssh_keys",
|
|
3179
|
+
"SSHKeysMeta": ".ssh_keys",
|
|
3180
|
+
"SSHKeysMetaTypedDict": ".ssh_keys",
|
|
3181
|
+
"SSHKeysTypedDict": ".ssh_keys",
|
|
3182
|
+
"StoragePlanData": ".storage_plan_data",
|
|
3183
|
+
"StoragePlanDataAttributes": ".storage_plan_data",
|
|
3184
|
+
"StoragePlanDataAttributesTypedDict": ".storage_plan_data",
|
|
3185
|
+
"StoragePlanDataPricing": ".storage_plan_data",
|
|
3186
|
+
"StoragePlanDataPricingTypedDict": ".storage_plan_data",
|
|
3187
|
+
"StoragePlanDataType": ".storage_plan_data",
|
|
3188
|
+
"StoragePlanDataTypedDict": ".storage_plan_data",
|
|
3189
|
+
"StoragePlans": ".storage_plans",
|
|
3190
|
+
"StoragePlansMeta": ".storage_plans",
|
|
3191
|
+
"StoragePlansMetaTypedDict": ".storage_plans",
|
|
3192
|
+
"StoragePlansTypedDict": ".storage_plans",
|
|
3193
|
+
"Team": ".team",
|
|
3194
|
+
"TeamAttributes": ".team",
|
|
3195
|
+
"TeamAttributesTypedDict": ".team",
|
|
3196
|
+
"TeamBilling": ".team",
|
|
3197
|
+
"TeamBillingTypedDict": ".team",
|
|
3198
|
+
"TeamTypedDict": ".team",
|
|
3199
|
+
"Currency": ".team_include",
|
|
3200
|
+
"CurrencyTypedDict": ".team_include",
|
|
3201
|
+
"TeamInclude": ".team_include",
|
|
3202
|
+
"TeamIncludeTypedDict": ".team_include",
|
|
3203
|
+
"TeamMembers": ".team_members",
|
|
3204
|
+
"TeamMembersData": ".team_members",
|
|
3205
|
+
"TeamMembersDataTypedDict": ".team_members",
|
|
3206
|
+
"TeamMembersRole": ".team_members",
|
|
3207
|
+
"TeamMembersRoleTypedDict": ".team_members",
|
|
3208
|
+
"TeamMembersTypedDict": ".team_members",
|
|
3209
|
+
"Teams": ".teams",
|
|
3210
|
+
"TeamsMeta": ".teams",
|
|
3211
|
+
"TeamsMetaTypedDict": ".teams",
|
|
3212
|
+
"TeamsTypedDict": ".teams",
|
|
3213
|
+
"Traffic": ".traffic",
|
|
3214
|
+
"TrafficAttributes": ".traffic",
|
|
3215
|
+
"TrafficAttributesTypedDict": ".traffic",
|
|
3216
|
+
"TrafficData": ".traffic",
|
|
3217
|
+
"TrafficDataData": ".traffic",
|
|
3218
|
+
"TrafficDataDataTypedDict": ".traffic",
|
|
3219
|
+
"TrafficDataTypedDict": ".traffic",
|
|
3220
|
+
"TrafficRegions": ".traffic",
|
|
3221
|
+
"TrafficRegionsTypedDict": ".traffic",
|
|
3222
|
+
"TrafficType": ".traffic",
|
|
3223
|
+
"TrafficTypedDict": ".traffic",
|
|
3224
|
+
"QuotaInMbps": ".traffic_quota",
|
|
3225
|
+
"QuotaInMbpsTypedDict": ".traffic_quota",
|
|
3226
|
+
"QuotaInTb": ".traffic_quota",
|
|
3227
|
+
"QuotaInTbTypedDict": ".traffic_quota",
|
|
3228
|
+
"QuotaPerProject": ".traffic_quota",
|
|
3229
|
+
"QuotaPerProjectTypedDict": ".traffic_quota",
|
|
3230
|
+
"QuotaPerRegion": ".traffic_quota",
|
|
3231
|
+
"QuotaPerRegionTypedDict": ".traffic_quota",
|
|
3232
|
+
"TrafficQuota": ".traffic_quota",
|
|
3233
|
+
"TrafficQuotaAttributes": ".traffic_quota",
|
|
3234
|
+
"TrafficQuotaAttributesTypedDict": ".traffic_quota",
|
|
3235
|
+
"TrafficQuotaData": ".traffic_quota",
|
|
3236
|
+
"TrafficQuotaDataTypedDict": ".traffic_quota",
|
|
3237
|
+
"TrafficQuotaType": ".traffic_quota",
|
|
3238
|
+
"TrafficQuotaTypedDict": ".traffic_quota",
|
|
3239
|
+
"UpdateAPIKey": ".update_api_key",
|
|
3240
|
+
"UpdateAPIKeyAttributes": ".update_api_key",
|
|
3241
|
+
"UpdateAPIKeyAttributesTypedDict": ".update_api_key",
|
|
3242
|
+
"UpdateAPIKeyData": ".update_api_key",
|
|
3243
|
+
"UpdateAPIKeyDataTypedDict": ".update_api_key",
|
|
3244
|
+
"UpdateAPIKeyType": ".update_api_key",
|
|
3245
|
+
"UpdateAPIKeyTypedDict": ".update_api_key",
|
|
3246
|
+
"UpdateAPIKeyRequest": ".update_api_keyop",
|
|
3247
|
+
"UpdateAPIKeyRequestTypedDict": ".update_api_keyop",
|
|
3248
|
+
"UpdateAPIKeyResponseBody": ".update_api_keyop",
|
|
3249
|
+
"UpdateAPIKeyResponseBodyTypedDict": ".update_api_keyop",
|
|
3250
|
+
"UpdateFirewallFirewallsAttributes": ".update_firewallop",
|
|
3251
|
+
"UpdateFirewallFirewallsAttributesTypedDict": ".update_firewallop",
|
|
3252
|
+
"UpdateFirewallFirewallsData": ".update_firewallop",
|
|
3253
|
+
"UpdateFirewallFirewallsDataTypedDict": ".update_firewallop",
|
|
3254
|
+
"UpdateFirewallFirewallsProtocol": ".update_firewallop",
|
|
3255
|
+
"UpdateFirewallFirewallsRequestBody": ".update_firewallop",
|
|
3256
|
+
"UpdateFirewallFirewallsRequestBodyTypedDict": ".update_firewallop",
|
|
3257
|
+
"UpdateFirewallFirewallsRules": ".update_firewallop",
|
|
3258
|
+
"UpdateFirewallFirewallsRulesTypedDict": ".update_firewallop",
|
|
3259
|
+
"UpdateFirewallFirewallsType": ".update_firewallop",
|
|
3260
|
+
"UpdateFirewallRequest": ".update_firewallop",
|
|
3261
|
+
"UpdateFirewallRequestTypedDict": ".update_firewallop",
|
|
3262
|
+
"UpdatePlansBandwidthPlansAttributes": ".update_plans_bandwidthop",
|
|
3263
|
+
"UpdatePlansBandwidthPlansAttributesTypedDict": ".update_plans_bandwidthop",
|
|
3264
|
+
"UpdatePlansBandwidthPlansData": ".update_plans_bandwidthop",
|
|
3265
|
+
"UpdatePlansBandwidthPlansDataTypedDict": ".update_plans_bandwidthop",
|
|
3266
|
+
"UpdatePlansBandwidthPlansRequestBody": ".update_plans_bandwidthop",
|
|
3267
|
+
"UpdatePlansBandwidthPlansRequestBodyTypedDict": ".update_plans_bandwidthop",
|
|
3268
|
+
"UpdatePlansBandwidthPlansType": ".update_plans_bandwidthop",
|
|
3269
|
+
"UpdateProjectProjectsAttributes": ".update_projectop",
|
|
3270
|
+
"UpdateProjectProjectsAttributesTypedDict": ".update_projectop",
|
|
3271
|
+
"UpdateProjectProjectsData": ".update_projectop",
|
|
3272
|
+
"UpdateProjectProjectsDataTypedDict": ".update_projectop",
|
|
3273
|
+
"UpdateProjectProjectsEnvironment": ".update_projectop",
|
|
3274
|
+
"UpdateProjectProjectsRequestBody": ".update_projectop",
|
|
3275
|
+
"UpdateProjectProjectsRequestBodyTypedDict": ".update_projectop",
|
|
3276
|
+
"UpdateProjectProjectsType": ".update_projectop",
|
|
3277
|
+
"UpdateProjectRequest": ".update_projectop",
|
|
3278
|
+
"UpdateProjectRequestTypedDict": ".update_projectop",
|
|
3279
|
+
"UpdateProjectResponseBody": ".update_projectop",
|
|
3280
|
+
"UpdateProjectResponseBodyTypedDict": ".update_projectop",
|
|
3281
|
+
"UpdateServerDeployConfigPartitions": ".update_server_deploy_configop",
|
|
3282
|
+
"UpdateServerDeployConfigPartitionsTypedDict": ".update_server_deploy_configop",
|
|
3283
|
+
"UpdateServerDeployConfigRequest": ".update_server_deploy_configop",
|
|
3284
|
+
"UpdateServerDeployConfigRequestTypedDict": ".update_server_deploy_configop",
|
|
3285
|
+
"UpdateServerDeployConfigServersAttributes": ".update_server_deploy_configop",
|
|
3286
|
+
"UpdateServerDeployConfigServersAttributesTypedDict": ".update_server_deploy_configop",
|
|
3287
|
+
"UpdateServerDeployConfigServersOperatingSystem": ".update_server_deploy_configop",
|
|
3288
|
+
"UpdateServerDeployConfigServersRaid": ".update_server_deploy_configop",
|
|
3289
|
+
"UpdateServerDeployConfigServersRequestBody": ".update_server_deploy_configop",
|
|
3290
|
+
"UpdateServerDeployConfigServersRequestBodyTypedDict": ".update_server_deploy_configop",
|
|
3291
|
+
"UpdateServerDeployConfigServersType": ".update_server_deploy_configop",
|
|
3292
|
+
"UpdateServerRequest": ".update_serverop",
|
|
3293
|
+
"UpdateServerRequestTypedDict": ".update_serverop",
|
|
3294
|
+
"UpdateServerServersData": ".update_serverop",
|
|
3295
|
+
"UpdateServerServersDataTypedDict": ".update_serverop",
|
|
3296
|
+
"UpdateServerServersRequestApplicationJSONAttributes": ".update_serverop",
|
|
3297
|
+
"UpdateServerServersRequestApplicationJSONAttributesTypedDict": ".update_serverop",
|
|
3298
|
+
"UpdateServerServersRequestApplicationJSONBilling": ".update_serverop",
|
|
3299
|
+
"UpdateServerServersRequestApplicationJSONType": ".update_serverop",
|
|
3300
|
+
"UpdateServerServersRequestAttributes": ".update_serverop",
|
|
3301
|
+
"UpdateServerServersRequestAttributesTypedDict": ".update_serverop",
|
|
3302
|
+
"UpdateServerServersRequestBilling": ".update_serverop",
|
|
3303
|
+
"UpdateServerServersRequestBody": ".update_serverop",
|
|
3304
|
+
"UpdateServerServersRequestBodyTypedDict": ".update_serverop",
|
|
3305
|
+
"UpdateServerServersRequestType": ".update_serverop",
|
|
3306
|
+
"UpdateTagRequest": ".update_tagop",
|
|
3307
|
+
"UpdateTagRequestTypedDict": ".update_tagop",
|
|
3308
|
+
"UpdateTagTagsAttributes": ".update_tagop",
|
|
3309
|
+
"UpdateTagTagsAttributesTypedDict": ".update_tagop",
|
|
3310
|
+
"UpdateTagTagsData": ".update_tagop",
|
|
3311
|
+
"UpdateTagTagsDataTypedDict": ".update_tagop",
|
|
3312
|
+
"UpdateTagTagsRequestBody": ".update_tagop",
|
|
3313
|
+
"UpdateTagTagsRequestBodyTypedDict": ".update_tagop",
|
|
3314
|
+
"UpdateTagTagsType": ".update_tagop",
|
|
3315
|
+
"UpdateVirtualNetworkPrivateNetworksAttributes": ".update_virtual_networkop",
|
|
3316
|
+
"UpdateVirtualNetworkPrivateNetworksAttributesTypedDict": ".update_virtual_networkop",
|
|
3317
|
+
"UpdateVirtualNetworkPrivateNetworksData": ".update_virtual_networkop",
|
|
3318
|
+
"UpdateVirtualNetworkPrivateNetworksDataTypedDict": ".update_virtual_networkop",
|
|
3319
|
+
"UpdateVirtualNetworkPrivateNetworksRequestBody": ".update_virtual_networkop",
|
|
3320
|
+
"UpdateVirtualNetworkPrivateNetworksRequestBodyTypedDict": ".update_virtual_networkop",
|
|
3321
|
+
"UpdateVirtualNetworkPrivateNetworksType": ".update_virtual_networkop",
|
|
3322
|
+
"UpdateVirtualNetworkRequest": ".update_virtual_networkop",
|
|
3323
|
+
"UpdateVirtualNetworkRequestTypedDict": ".update_virtual_networkop",
|
|
3324
|
+
"User": ".user",
|
|
3325
|
+
"UserAttributes": ".user",
|
|
3326
|
+
"UserAttributesTypedDict": ".user",
|
|
3327
|
+
"UserRole": ".user",
|
|
3328
|
+
"UserRoleTypedDict": ".user",
|
|
3329
|
+
"UserTypedDict": ".user",
|
|
3330
|
+
"UserData": ".user_data",
|
|
3331
|
+
"UserDataMeta": ".user_data",
|
|
3332
|
+
"UserDataMetaTypedDict": ".user_data",
|
|
3333
|
+
"UserDataTypedDict": ".user_data",
|
|
3334
|
+
"UserDataProperties": ".user_data_properties",
|
|
3335
|
+
"UserDataPropertiesAttributes": ".user_data_properties",
|
|
3336
|
+
"UserDataPropertiesAttributesTypedDict": ".user_data_properties",
|
|
3337
|
+
"UserDataPropertiesType": ".user_data_properties",
|
|
3338
|
+
"UserDataPropertiesTypedDict": ".user_data_properties",
|
|
3339
|
+
"UserInclude": ".user_include",
|
|
3340
|
+
"UserIncludeRole": ".user_include",
|
|
3341
|
+
"UserIncludeRoleTypedDict": ".user_include",
|
|
3342
|
+
"UserIncludeTypedDict": ".user_include",
|
|
3343
|
+
"UserTeam": ".user_team",
|
|
3344
|
+
"UserTeamAttributes": ".user_team",
|
|
3345
|
+
"UserTeamAttributesTypedDict": ".user_team",
|
|
3346
|
+
"UserTeamBilling": ".user_team",
|
|
3347
|
+
"UserTeamBillingTypedDict": ".user_team",
|
|
3348
|
+
"UserTeamTypedDict": ".user_team",
|
|
3349
|
+
"UserTeams": ".user_teams",
|
|
3350
|
+
"UserTeamsMeta": ".user_teams",
|
|
3351
|
+
"UserTeamsMetaTypedDict": ".user_teams",
|
|
3352
|
+
"UserTeamsTypedDict": ".user_teams",
|
|
3353
|
+
"UserUpdate": ".user_update",
|
|
3354
|
+
"UserUpdateAttributes": ".user_update",
|
|
3355
|
+
"UserUpdateAttributesTypedDict": ".user_update",
|
|
3356
|
+
"UserUpdateTypedDict": ".user_update",
|
|
3357
|
+
"VirtualMachine": ".virtual_machine",
|
|
3358
|
+
"VirtualMachineMeta": ".virtual_machine",
|
|
3359
|
+
"VirtualMachineMetaTypedDict": ".virtual_machine",
|
|
3360
|
+
"VirtualMachineTypedDict": ".virtual_machine",
|
|
3361
|
+
"VirtualMachinePayload": ".virtual_machine_payload",
|
|
3362
|
+
"VirtualMachinePayloadAttributes": ".virtual_machine_payload",
|
|
3363
|
+
"VirtualMachinePayloadAttributesTypedDict": ".virtual_machine_payload",
|
|
3364
|
+
"VirtualMachinePayloadData": ".virtual_machine_payload",
|
|
3365
|
+
"VirtualMachinePayloadDataTypedDict": ".virtual_machine_payload",
|
|
3366
|
+
"VirtualMachinePayloadType": ".virtual_machine_payload",
|
|
3367
|
+
"VirtualMachinePayloadTypedDict": ".virtual_machine_payload",
|
|
3368
|
+
"Disk": ".virtual_machine_plans",
|
|
3369
|
+
"DiskTypedDict": ".virtual_machine_plans",
|
|
3370
|
+
"Size": ".virtual_machine_plans",
|
|
3371
|
+
"SizeTypedDict": ".virtual_machine_plans",
|
|
3372
|
+
"VirtualMachinePlans": ".virtual_machine_plans",
|
|
3373
|
+
"VirtualMachinePlansAttributes": ".virtual_machine_plans",
|
|
3374
|
+
"VirtualMachinePlansAttributesTypedDict": ".virtual_machine_plans",
|
|
3375
|
+
"VirtualMachinePlansBRL": ".virtual_machine_plans",
|
|
3376
|
+
"VirtualMachinePlansBRLTypedDict": ".virtual_machine_plans",
|
|
3377
|
+
"VirtualMachinePlansData": ".virtual_machine_plans",
|
|
3378
|
+
"VirtualMachinePlansDataType": ".virtual_machine_plans",
|
|
3379
|
+
"VirtualMachinePlansDataTypedDict": ".virtual_machine_plans",
|
|
3380
|
+
"VirtualMachinePlansPricing": ".virtual_machine_plans",
|
|
3381
|
+
"VirtualMachinePlansPricingTypedDict": ".virtual_machine_plans",
|
|
3382
|
+
"VirtualMachinePlansRegions": ".virtual_machine_plans",
|
|
3383
|
+
"VirtualMachinePlansRegionsTypedDict": ".virtual_machine_plans",
|
|
3384
|
+
"VirtualMachinePlansSpecs": ".virtual_machine_plans",
|
|
3385
|
+
"VirtualMachinePlansSpecsTypedDict": ".virtual_machine_plans",
|
|
3386
|
+
"VirtualMachinePlansStockLevel": ".virtual_machine_plans",
|
|
3387
|
+
"VirtualMachinePlansType": ".virtual_machine_plans",
|
|
3388
|
+
"VirtualMachinePlansTypedDict": ".virtual_machine_plans",
|
|
3389
|
+
"VirtualMachinePlansUSD": ".virtual_machine_plans",
|
|
3390
|
+
"VirtualMachinePlansUSDTypedDict": ".virtual_machine_plans",
|
|
3391
|
+
"VirtualMachinePlansUnit": ".virtual_machine_plans",
|
|
3392
|
+
"VirtualNetwork": ".virtual_network",
|
|
3393
|
+
"VirtualNetworkAttributes1": ".virtual_network",
|
|
3394
|
+
"VirtualNetworkAttributes1TypedDict": ".virtual_network",
|
|
3395
|
+
"VirtualNetworkAttributesRegion": ".virtual_network",
|
|
3396
|
+
"VirtualNetworkAttributesRegionTypedDict": ".virtual_network",
|
|
3397
|
+
"VirtualNetworkAttributesSite": ".virtual_network",
|
|
3398
|
+
"VirtualNetworkAttributesSiteTypedDict": ".virtual_network",
|
|
3399
|
+
"VirtualNetworkError": ".virtual_network",
|
|
3400
|
+
"VirtualNetworkErrorData": ".virtual_network",
|
|
3401
|
+
"VirtualNetworkMeta1": ".virtual_network",
|
|
3402
|
+
"VirtualNetworkMeta1TypedDict": ".virtual_network",
|
|
3403
|
+
"VirtualNetworkType1": ".virtual_network",
|
|
3404
|
+
"VirtualNetworkTypedDict": ".virtual_network",
|
|
3405
|
+
"VirtualNetworkAssignment": ".virtual_network_assignment",
|
|
3406
|
+
"VirtualNetworkAssignmentAttributes": ".virtual_network_assignment",
|
|
3407
|
+
"VirtualNetworkAssignmentAttributesTypedDict": ".virtual_network_assignment",
|
|
3408
|
+
"VirtualNetworkAssignmentMeta": ".virtual_network_assignment",
|
|
3409
|
+
"VirtualNetworkAssignmentMetaTypedDict": ".virtual_network_assignment",
|
|
3410
|
+
"VirtualNetworkAssignmentServer": ".virtual_network_assignment",
|
|
3411
|
+
"VirtualNetworkAssignmentServerTypedDict": ".virtual_network_assignment",
|
|
3412
|
+
"VirtualNetworkAssignmentTypedDict": ".virtual_network_assignment",
|
|
3413
|
+
"VirtualNetworkAssignmentData": ".virtual_network_assignment_data",
|
|
3414
|
+
"VirtualNetworkAssignmentDataAttributes": ".virtual_network_assignment_data",
|
|
3415
|
+
"VirtualNetworkAssignmentDataAttributesTypedDict": ".virtual_network_assignment_data",
|
|
3416
|
+
"VirtualNetworkAssignmentDataServer": ".virtual_network_assignment_data",
|
|
3417
|
+
"VirtualNetworkAssignmentDataServerTypedDict": ".virtual_network_assignment_data",
|
|
3418
|
+
"VirtualNetworkAssignmentDataType": ".virtual_network_assignment_data",
|
|
3419
|
+
"VirtualNetworkAssignmentDataTypedDict": ".virtual_network_assignment_data",
|
|
3420
|
+
"VirtualNetworkAssignments": ".virtual_network_assignments",
|
|
3421
|
+
"VirtualNetworkAssignmentsMeta": ".virtual_network_assignments",
|
|
3422
|
+
"VirtualNetworkAssignmentsMetaTypedDict": ".virtual_network_assignments",
|
|
3423
|
+
"VirtualNetworkAssignmentsTypedDict": ".virtual_network_assignments",
|
|
3424
|
+
"VirtualNetworkData": ".virtual_network_data",
|
|
3425
|
+
"VirtualNetworkDataAttributes": ".virtual_network_data",
|
|
3426
|
+
"VirtualNetworkDataAttributesTypedDict": ".virtual_network_data",
|
|
3427
|
+
"VirtualNetworkDataRegion": ".virtual_network_data",
|
|
3428
|
+
"VirtualNetworkDataRegionTypedDict": ".virtual_network_data",
|
|
3429
|
+
"VirtualNetworkDataSite": ".virtual_network_data",
|
|
3430
|
+
"VirtualNetworkDataSiteTypedDict": ".virtual_network_data",
|
|
3431
|
+
"VirtualNetworkDataType": ".virtual_network_data",
|
|
3432
|
+
"VirtualNetworkDataTypedDict": ".virtual_network_data",
|
|
3433
|
+
"VirtualNetwork1": ".virtual_network1",
|
|
3434
|
+
"VirtualNetwork1TypedDict": ".virtual_network1",
|
|
3435
|
+
"VirtualNetworkAttributes": ".virtual_network1",
|
|
3436
|
+
"VirtualNetworkAttributesTypedDict": ".virtual_network1",
|
|
3437
|
+
"VirtualNetworkMeta": ".virtual_network1",
|
|
3438
|
+
"VirtualNetworkMetaTypedDict": ".virtual_network1",
|
|
3439
|
+
"VirtualNetworkRegion": ".virtual_network1",
|
|
3440
|
+
"VirtualNetworkRegionTypedDict": ".virtual_network1",
|
|
3441
|
+
"VirtualNetworkSite": ".virtual_network1",
|
|
3442
|
+
"VirtualNetworkSiteTypedDict": ".virtual_network1",
|
|
3443
|
+
"VirtualNetworkType": ".virtual_network1",
|
|
3444
|
+
"VirtualNetworks": ".virtual_networks",
|
|
3445
|
+
"VirtualNetworksMeta": ".virtual_networks",
|
|
3446
|
+
"VirtualNetworksMetaTypedDict": ".virtual_networks",
|
|
3447
|
+
"VirtualNetworksTypedDict": ".virtual_networks",
|
|
3448
|
+
"VpnSessionDataWithPassword": ".vpn_session_data_with_password",
|
|
3449
|
+
"VpnSessionDataWithPasswordAttributes": ".vpn_session_data_with_password",
|
|
3450
|
+
"VpnSessionDataWithPasswordAttributesTypedDict": ".vpn_session_data_with_password",
|
|
3451
|
+
"VpnSessionDataWithPasswordStatus": ".vpn_session_data_with_password",
|
|
3452
|
+
"VpnSessionDataWithPasswordType": ".vpn_session_data_with_password",
|
|
3453
|
+
"VpnSessionDataWithPasswordTypedDict": ".vpn_session_data_with_password",
|
|
3454
|
+
"VpnSessionWithPassword": ".vpn_session_with_password",
|
|
3455
|
+
"VpnSessionWithPasswordTypedDict": ".vpn_session_with_password",
|
|
3456
|
+
}
|
|
3457
|
+
|
|
3458
|
+
|
|
3459
|
+
def __getattr__(attr_name: str) -> object:
|
|
3460
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
3461
|
+
if module_name is None:
|
|
3462
|
+
raise AttributeError(
|
|
3463
|
+
f"No {attr_name} found in _dynamic_imports for module name -> {__name__} "
|
|
3464
|
+
)
|
|
3465
|
+
|
|
3466
|
+
try:
|
|
3467
|
+
module = import_module(module_name, __package__)
|
|
3468
|
+
result = getattr(module, attr_name)
|
|
3469
|
+
return result
|
|
3470
|
+
except ImportError as e:
|
|
3471
|
+
raise ImportError(
|
|
3472
|
+
f"Failed to import {attr_name} from {module_name}: {e}"
|
|
3473
|
+
) from e
|
|
3474
|
+
except AttributeError as e:
|
|
3475
|
+
raise AttributeError(
|
|
3476
|
+
f"Failed to get {attr_name} from {module_name}: {e}"
|
|
3477
|
+
) from e
|
|
3478
|
+
|
|
3479
|
+
|
|
3480
|
+
def __dir__():
|
|
3481
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
3482
|
+
return sorted(lazy_attrs)
|