latitudesh-python-sdk 0.0.6__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.

Files changed (206) hide show
  1. latitudesh_python_sdk/__init__.py +18 -0
  2. latitudesh_python_sdk/_hooks/__init__.py +5 -0
  3. latitudesh_python_sdk/_hooks/registration.py +13 -0
  4. latitudesh_python_sdk/_hooks/sdkhooks.py +76 -0
  5. latitudesh_python_sdk/_hooks/types.py +106 -0
  6. latitudesh_python_sdk/_version.py +15 -0
  7. latitudesh_python_sdk/apikeys.py +802 -0
  8. latitudesh_python_sdk/basesdk.py +366 -0
  9. latitudesh_python_sdk/billing.py +210 -0
  10. latitudesh_python_sdk/events_sdk.py +240 -0
  11. latitudesh_python_sdk/firewalls_sdk.py +1640 -0
  12. latitudesh_python_sdk/httpclient.py +136 -0
  13. latitudesh_python_sdk/ipaddresses_sdk.py +448 -0
  14. latitudesh_python_sdk/models/__init__.py +1927 -0
  15. latitudesh_python_sdk/models/api_key.py +81 -0
  16. latitudesh_python_sdk/models/apierror.py +22 -0
  17. latitudesh_python_sdk/models/assign_server_virtual_networkop.py +43 -0
  18. latitudesh_python_sdk/models/bandwidth_packages.py +67 -0
  19. latitudesh_python_sdk/models/bandwidth_plan.py +72 -0
  20. latitudesh_python_sdk/models/bandwidth_plans.py +15 -0
  21. latitudesh_python_sdk/models/billing_usage.py +158 -0
  22. latitudesh_python_sdk/models/create_api_key.py +40 -0
  23. latitudesh_python_sdk/models/create_firewall_assignmentop.py +61 -0
  24. latitudesh_python_sdk/models/create_firewallop.py +69 -0
  25. latitudesh_python_sdk/models/create_ipmi_sessionop.py +16 -0
  26. latitudesh_python_sdk/models/create_projectop.py +79 -0
  27. latitudesh_python_sdk/models/create_server_actionop.py +69 -0
  28. latitudesh_python_sdk/models/create_server_out_of_bandop.py +61 -0
  29. latitudesh_python_sdk/models/create_server_reinstallop.py +140 -0
  30. latitudesh_python_sdk/models/create_serverop.py +173 -0
  31. latitudesh_python_sdk/models/create_tagop.py +50 -0
  32. latitudesh_python_sdk/models/create_virtual_networkop.py +72 -0
  33. latitudesh_python_sdk/models/custom_tag.py +54 -0
  34. latitudesh_python_sdk/models/delete_api_keyop.py +16 -0
  35. latitudesh_python_sdk/models/delete_firewall_assignmentop.py +25 -0
  36. latitudesh_python_sdk/models/delete_firewallop.py +18 -0
  37. latitudesh_python_sdk/models/delete_project_ssh_keyop.py +23 -0
  38. latitudesh_python_sdk/models/delete_project_user_dataop.py +23 -0
  39. latitudesh_python_sdk/models/delete_projectop.py +18 -0
  40. latitudesh_python_sdk/models/delete_storage_filesystemsop.py +16 -0
  41. latitudesh_python_sdk/models/delete_virtual_networks_assignmentsop.py +16 -0
  42. latitudesh_python_sdk/models/delete_vpn_sessionop.py +16 -0
  43. latitudesh_python_sdk/models/deploy_config.py +74 -0
  44. latitudesh_python_sdk/models/destroy_serverop.py +31 -0
  45. latitudesh_python_sdk/models/destroy_tagop.py +16 -0
  46. latitudesh_python_sdk/models/destroy_team_memberop.py +18 -0
  47. latitudesh_python_sdk/models/destroy_virtual_machineop.py +16 -0
  48. latitudesh_python_sdk/models/destroy_virtual_networkop.py +18 -0
  49. latitudesh_python_sdk/models/error_object.py +49 -0
  50. latitudesh_python_sdk/models/events.py +90 -0
  51. latitudesh_python_sdk/models/filesystem_data.py +53 -0
  52. latitudesh_python_sdk/models/firewall.py +71 -0
  53. latitudesh_python_sdk/models/firewall_server.py +50 -0
  54. latitudesh_python_sdk/models/firewalls.py +26 -0
  55. latitudesh_python_sdk/models/get_bandwidth_plansop.py +33 -0
  56. latitudesh_python_sdk/models/get_billing_usageop.py +46 -0
  57. latitudesh_python_sdk/models/get_eventsop.py +98 -0
  58. latitudesh_python_sdk/models/get_firewall_assignmentsop.py +18 -0
  59. latitudesh_python_sdk/models/get_firewallop.py +18 -0
  60. latitudesh_python_sdk/models/get_ipop.py +33 -0
  61. latitudesh_python_sdk/models/get_ipsop.py +91 -0
  62. latitudesh_python_sdk/models/get_planop.py +16 -0
  63. latitudesh_python_sdk/models/get_plans_operating_systemop.py +19 -0
  64. latitudesh_python_sdk/models/get_plansop.py +125 -0
  65. latitudesh_python_sdk/models/get_project_ssh_keyop.py +37 -0
  66. latitudesh_python_sdk/models/get_project_ssh_keysop.py +33 -0
  67. latitudesh_python_sdk/models/get_project_user_dataop.py +38 -0
  68. latitudesh_python_sdk/models/get_project_users_dataop.py +46 -0
  69. latitudesh_python_sdk/models/get_projectsop.py +76 -0
  70. latitudesh_python_sdk/models/get_regionop.py +18 -0
  71. latitudesh_python_sdk/models/get_role_idop.py +16 -0
  72. latitudesh_python_sdk/models/get_rolesop.py +19 -0
  73. latitudesh_python_sdk/models/get_server_deploy_configop.py +18 -0
  74. latitudesh_python_sdk/models/get_server_out_of_bandop.py +18 -0
  75. latitudesh_python_sdk/models/get_serverop.py +33 -0
  76. latitudesh_python_sdk/models/get_serversop.py +156 -0
  77. latitudesh_python_sdk/models/get_storage_filesystemsop.py +22 -0
  78. latitudesh_python_sdk/models/get_traffic_consumptionop.py +45 -0
  79. latitudesh_python_sdk/models/get_traffic_quotaop.py +20 -0
  80. latitudesh_python_sdk/models/get_user_profileop.py +19 -0
  81. latitudesh_python_sdk/models/get_virtual_networkop.py +32 -0
  82. latitudesh_python_sdk/models/get_virtual_networks_assignmentsop.py +40 -0
  83. latitudesh_python_sdk/models/get_virtual_networksop.py +40 -0
  84. latitudesh_python_sdk/models/get_vpn_sessionsop.py +70 -0
  85. latitudesh_python_sdk/models/index_virtual_machineop.py +22 -0
  86. latitudesh_python_sdk/models/ip_address.py +122 -0
  87. latitudesh_python_sdk/models/ip_addresses.py +15 -0
  88. latitudesh_python_sdk/models/ipmi_session.py +53 -0
  89. latitudesh_python_sdk/models/list_firewallsop.py +20 -0
  90. latitudesh_python_sdk/models/membership.py +63 -0
  91. latitudesh_python_sdk/models/operating_systems.py +57 -0
  92. latitudesh_python_sdk/models/out_of_band_connection.py +88 -0
  93. latitudesh_python_sdk/models/patch_current_teamop.py +91 -0
  94. latitudesh_python_sdk/models/patch_storage_filesystemsop.py +79 -0
  95. latitudesh_python_sdk/models/patch_user_profileop.py +88 -0
  96. latitudesh_python_sdk/models/plan.py +15 -0
  97. latitudesh_python_sdk/models/plan_data.py +206 -0
  98. latitudesh_python_sdk/models/post_api_keyop.py +19 -0
  99. latitudesh_python_sdk/models/post_project_ssh_keyop.py +81 -0
  100. latitudesh_python_sdk/models/post_project_user_dataop.py +68 -0
  101. latitudesh_python_sdk/models/post_storage_filesystemsop.py +63 -0
  102. latitudesh_python_sdk/models/post_team_membersop.py +54 -0
  103. latitudesh_python_sdk/models/post_teamop.py +67 -0
  104. latitudesh_python_sdk/models/post_vpn_sessionop.py +63 -0
  105. latitudesh_python_sdk/models/project.py +130 -0
  106. latitudesh_python_sdk/models/project_include.py +72 -0
  107. latitudesh_python_sdk/models/projects.py +15 -0
  108. latitudesh_python_sdk/models/put_project_ssh_keyop.py +87 -0
  109. latitudesh_python_sdk/models/put_project_user_dataop.py +76 -0
  110. latitudesh_python_sdk/models/put_vpn_sessionop.py +16 -0
  111. latitudesh_python_sdk/models/region.py +50 -0
  112. latitudesh_python_sdk/models/region_resource_data.py +37 -0
  113. latitudesh_python_sdk/models/regions.py +50 -0
  114. latitudesh_python_sdk/models/role.py +15 -0
  115. latitudesh_python_sdk/models/role_data.py +35 -0
  116. latitudesh_python_sdk/models/security.py +25 -0
  117. latitudesh_python_sdk/models/server.py +54 -0
  118. latitudesh_python_sdk/models/server_action.py +52 -0
  119. latitudesh_python_sdk/models/server_data.py +219 -0
  120. latitudesh_python_sdk/models/server_exit_rescue_modeop.py +16 -0
  121. latitudesh_python_sdk/models/server_lockop.py +16 -0
  122. latitudesh_python_sdk/models/server_rescue.py +22 -0
  123. latitudesh_python_sdk/models/server_schedule_deletion.py +44 -0
  124. latitudesh_python_sdk/models/server_schedule_deletionop.py +16 -0
  125. latitudesh_python_sdk/models/server_start_rescue_modeop.py +16 -0
  126. latitudesh_python_sdk/models/server_unlockop.py +16 -0
  127. latitudesh_python_sdk/models/server_unschedule_deletionop.py +16 -0
  128. latitudesh_python_sdk/models/servers.py +26 -0
  129. latitudesh_python_sdk/models/show_virtual_machineop.py +16 -0
  130. latitudesh_python_sdk/models/ssh_key.py +15 -0
  131. latitudesh_python_sdk/models/ssh_key_data.py +55 -0
  132. latitudesh_python_sdk/models/storage_plan.py +36 -0
  133. latitudesh_python_sdk/models/storage_plans.py +15 -0
  134. latitudesh_python_sdk/models/team.py +74 -0
  135. latitudesh_python_sdk/models/team_include.py +43 -0
  136. latitudesh_python_sdk/models/team_members.py +51 -0
  137. latitudesh_python_sdk/models/teams.py +26 -0
  138. latitudesh_python_sdk/models/traffic.py +133 -0
  139. latitudesh_python_sdk/models/traffic_quota.py +106 -0
  140. latitudesh_python_sdk/models/update_api_key.py +48 -0
  141. latitudesh_python_sdk/models/update_api_keyop.py +41 -0
  142. latitudesh_python_sdk/models/update_firewallop.py +89 -0
  143. latitudesh_python_sdk/models/update_plans_bandwidthop.py +50 -0
  144. latitudesh_python_sdk/models/update_projectop.py +95 -0
  145. latitudesh_python_sdk/models/update_server_deploy_configop.py +122 -0
  146. latitudesh_python_sdk/models/update_serverop.py +69 -0
  147. latitudesh_python_sdk/models/update_tagop.py +74 -0
  148. latitudesh_python_sdk/models/update_virtual_networkop.py +67 -0
  149. latitudesh_python_sdk/models/user.py +59 -0
  150. latitudesh_python_sdk/models/user_data.py +15 -0
  151. latitudesh_python_sdk/models/user_data_properties.py +46 -0
  152. latitudesh_python_sdk/models/user_include.py +52 -0
  153. latitudesh_python_sdk/models/user_team.py +61 -0
  154. latitudesh_python_sdk/models/user_teams.py +26 -0
  155. latitudesh_python_sdk/models/user_update.py +37 -0
  156. latitudesh_python_sdk/models/virtual_machine.py +25 -0
  157. latitudesh_python_sdk/models/virtual_machine_payload.py +41 -0
  158. latitudesh_python_sdk/models/virtual_machine_plans.py +180 -0
  159. latitudesh_python_sdk/models/virtual_network.py +103 -0
  160. latitudesh_python_sdk/models/virtual_network1.py +84 -0
  161. latitudesh_python_sdk/models/virtual_network_assignment.py +37 -0
  162. latitudesh_python_sdk/models/virtual_network_assignments.py +29 -0
  163. latitudesh_python_sdk/models/virtual_networks.py +26 -0
  164. latitudesh_python_sdk/models/vpn_session_data_with_password.py +77 -0
  165. latitudesh_python_sdk/models/vpn_session_with_password.py +18 -0
  166. latitudesh_python_sdk/operatingsystems_sdk.py +188 -0
  167. latitudesh_python_sdk/plans.py +1178 -0
  168. latitudesh_python_sdk/privatenetworks.py +1672 -0
  169. latitudesh_python_sdk/projects_sdk.py +864 -0
  170. latitudesh_python_sdk/py.typed +1 -0
  171. latitudesh_python_sdk/regions_sdk.py +376 -0
  172. latitudesh_python_sdk/roles.py +374 -0
  173. latitudesh_python_sdk/sdk.py +214 -0
  174. latitudesh_python_sdk/sdkconfiguration.py +57 -0
  175. latitudesh_python_sdk/servers_sdk.py +3810 -0
  176. latitudesh_python_sdk/sshkeys.py +1050 -0
  177. latitudesh_python_sdk/storage.py +820 -0
  178. latitudesh_python_sdk/tags.py +786 -0
  179. latitudesh_python_sdk/teams_sdk.py +596 -0
  180. latitudesh_python_sdk/teamsmembers.py +578 -0
  181. latitudesh_python_sdk/traffic_sdk.py +400 -0
  182. latitudesh_python_sdk/types/__init__.py +21 -0
  183. latitudesh_python_sdk/types/basemodel.py +39 -0
  184. latitudesh_python_sdk/userdata_sdk.py +1052 -0
  185. latitudesh_python_sdk/userprofile.py +596 -0
  186. latitudesh_python_sdk/utils/__init__.py +101 -0
  187. latitudesh_python_sdk/utils/annotations.py +55 -0
  188. latitudesh_python_sdk/utils/enums.py +34 -0
  189. latitudesh_python_sdk/utils/eventstreaming.py +238 -0
  190. latitudesh_python_sdk/utils/forms.py +202 -0
  191. latitudesh_python_sdk/utils/headers.py +136 -0
  192. latitudesh_python_sdk/utils/logger.py +27 -0
  193. latitudesh_python_sdk/utils/metadata.py +118 -0
  194. latitudesh_python_sdk/utils/queryparams.py +205 -0
  195. latitudesh_python_sdk/utils/requestbodies.py +66 -0
  196. latitudesh_python_sdk/utils/retries.py +217 -0
  197. latitudesh_python_sdk/utils/security.py +192 -0
  198. latitudesh_python_sdk/utils/serializers.py +219 -0
  199. latitudesh_python_sdk/utils/url.py +155 -0
  200. latitudesh_python_sdk/utils/values.py +137 -0
  201. latitudesh_python_sdk/virtualmachines.py +772 -0
  202. latitudesh_python_sdk/vpnsessions.py +818 -0
  203. latitudesh_python_sdk-0.0.6.dist-info/LICENSE +21 -0
  204. latitudesh_python_sdk-0.0.6.dist-info/METADATA +730 -0
  205. latitudesh_python_sdk-0.0.6.dist-info/RECORD +206 -0
  206. latitudesh_python_sdk-0.0.6.dist-info/WHEEL +4 -0
@@ -0,0 +1,1927 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from .api_key import (
4
+ APIKey,
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
+ BillingUsageTypedDict,
56
+ Metadata,
57
+ MetadataTypedDict,
58
+ Period,
59
+ PeriodTypedDict,
60
+ Products,
61
+ ProductsTypedDict,
62
+ Unit,
63
+ UsageType,
64
+ )
65
+ from .create_api_key import (
66
+ CreateAPIKey,
67
+ CreateAPIKeyAttributes,
68
+ CreateAPIKeyAttributesTypedDict,
69
+ CreateAPIKeyType,
70
+ CreateAPIKeyTypedDict,
71
+ Data,
72
+ DataTypedDict,
73
+ )
74
+ from .create_firewall_assignmentop import (
75
+ CreateFirewallAssignmentFirewallsAttributes,
76
+ CreateFirewallAssignmentFirewallsAttributesTypedDict,
77
+ CreateFirewallAssignmentFirewallsData,
78
+ CreateFirewallAssignmentFirewallsDataTypedDict,
79
+ CreateFirewallAssignmentFirewallsRequestBody,
80
+ CreateFirewallAssignmentFirewallsRequestBodyTypedDict,
81
+ CreateFirewallAssignmentFirewallsType,
82
+ CreateFirewallAssignmentRequest,
83
+ CreateFirewallAssignmentRequestTypedDict,
84
+ )
85
+ from .create_firewallop import (
86
+ CreateFirewallFirewallsAttributes,
87
+ CreateFirewallFirewallsAttributesTypedDict,
88
+ CreateFirewallFirewallsData,
89
+ CreateFirewallFirewallsDataTypedDict,
90
+ CreateFirewallFirewallsRequestBody,
91
+ CreateFirewallFirewallsRequestBodyTypedDict,
92
+ CreateFirewallFirewallsType,
93
+ CreateFirewallProtocol,
94
+ CreateFirewallRules,
95
+ CreateFirewallRulesTypedDict,
96
+ )
97
+ from .create_ipmi_sessionop import (
98
+ CreateIpmiSessionRequest,
99
+ CreateIpmiSessionRequestTypedDict,
100
+ )
101
+ from .create_projectop import (
102
+ CreateProjectProjectsAttributes,
103
+ CreateProjectProjectsAttributesTypedDict,
104
+ CreateProjectProjectsData,
105
+ CreateProjectProjectsDataTypedDict,
106
+ CreateProjectProjectsEnvironment,
107
+ CreateProjectProjectsRequestBody,
108
+ CreateProjectProjectsRequestBodyTypedDict,
109
+ CreateProjectProjectsType,
110
+ CreateProjectProvisioningType,
111
+ CreateProjectResponseBody,
112
+ CreateProjectResponseBodyTypedDict,
113
+ )
114
+ from .create_server_actionop import (
115
+ CreateServerActionAction,
116
+ CreateServerActionRequest,
117
+ CreateServerActionRequestTypedDict,
118
+ CreateServerActionServersAttributes,
119
+ CreateServerActionServersAttributesTypedDict,
120
+ CreateServerActionServersData,
121
+ CreateServerActionServersDataTypedDict,
122
+ CreateServerActionServersRequestBody,
123
+ CreateServerActionServersRequestBodyTypedDict,
124
+ CreateServerActionServersType,
125
+ )
126
+ from .create_server_out_of_bandop import (
127
+ CreateServerOutOfBandRequest,
128
+ CreateServerOutOfBandRequestTypedDict,
129
+ CreateServerOutOfBandServersAttributes,
130
+ CreateServerOutOfBandServersAttributesTypedDict,
131
+ CreateServerOutOfBandServersData,
132
+ CreateServerOutOfBandServersDataTypedDict,
133
+ CreateServerOutOfBandServersRequestBody,
134
+ CreateServerOutOfBandServersRequestBodyTypedDict,
135
+ CreateServerOutOfBandServersType,
136
+ )
137
+ from .create_server_reinstallop import (
138
+ CreateServerReinstallRequest,
139
+ CreateServerReinstallRequestTypedDict,
140
+ CreateServerReinstallServersAttributes,
141
+ CreateServerReinstallServersAttributesTypedDict,
142
+ CreateServerReinstallServersData,
143
+ CreateServerReinstallServersDataTypedDict,
144
+ CreateServerReinstallServersOperatingSystem,
145
+ CreateServerReinstallServersPartitions,
146
+ CreateServerReinstallServersPartitionsTypedDict,
147
+ CreateServerReinstallServersRaid,
148
+ CreateServerReinstallServersRequestBody,
149
+ CreateServerReinstallServersRequestBodyTypedDict,
150
+ CreateServerReinstallServersType,
151
+ )
152
+ from .create_serverop import (
153
+ CreateServerRaid,
154
+ CreateServerServersAttributes,
155
+ CreateServerServersAttributesTypedDict,
156
+ CreateServerServersBilling,
157
+ CreateServerServersData,
158
+ CreateServerServersDataTypedDict,
159
+ CreateServerServersOperatingSystem,
160
+ CreateServerServersPlan,
161
+ CreateServerServersRequestBody,
162
+ CreateServerServersRequestBodyTypedDict,
163
+ CreateServerServersSite,
164
+ CreateServerServersType,
165
+ )
166
+ from .create_tagop import (
167
+ CreateTagTagsAttributes,
168
+ CreateTagTagsAttributesTypedDict,
169
+ CreateTagTagsData,
170
+ CreateTagTagsDataTypedDict,
171
+ CreateTagTagsRequestBody,
172
+ CreateTagTagsRequestBodyTypedDict,
173
+ CreateTagTagsType,
174
+ )
175
+ from .create_virtual_networkop import (
176
+ CreateVirtualNetworkPrivateNetworksAttributes,
177
+ CreateVirtualNetworkPrivateNetworksAttributesTypedDict,
178
+ CreateVirtualNetworkPrivateNetworksData,
179
+ CreateVirtualNetworkPrivateNetworksDataTypedDict,
180
+ CreateVirtualNetworkPrivateNetworksRequestBody,
181
+ CreateVirtualNetworkPrivateNetworksRequestBodyTypedDict,
182
+ CreateVirtualNetworkPrivateNetworksSite,
183
+ CreateVirtualNetworkPrivateNetworksType,
184
+ )
185
+ from .custom_tag import (
186
+ CustomTag,
187
+ CustomTagAttributes,
188
+ CustomTagAttributesTypedDict,
189
+ CustomTagType,
190
+ CustomTagTypedDict,
191
+ )
192
+ from .delete_api_keyop import DeleteAPIKeyRequest, DeleteAPIKeyRequestTypedDict
193
+ from .delete_firewall_assignmentop import (
194
+ DeleteFirewallAssignmentRequest,
195
+ DeleteFirewallAssignmentRequestTypedDict,
196
+ )
197
+ from .delete_firewallop import DeleteFirewallRequest, DeleteFirewallRequestTypedDict
198
+ from .delete_project_ssh_keyop import (
199
+ DeleteProjectSSHKeyRequest,
200
+ DeleteProjectSSHKeyRequestTypedDict,
201
+ )
202
+ from .delete_project_user_dataop import (
203
+ DeleteProjectUserDataRequest,
204
+ DeleteProjectUserDataRequestTypedDict,
205
+ )
206
+ from .delete_projectop import DeleteProjectRequest, DeleteProjectRequestTypedDict
207
+ from .delete_storage_filesystemsop import (
208
+ DeleteStorageFilesystemsRequest,
209
+ DeleteStorageFilesystemsRequestTypedDict,
210
+ )
211
+ from .delete_virtual_networks_assignmentsop import (
212
+ DeleteVirtualNetworksAssignmentsRequest,
213
+ DeleteVirtualNetworksAssignmentsRequestTypedDict,
214
+ )
215
+ from .delete_vpn_sessionop import (
216
+ DeleteVpnSessionRequest,
217
+ DeleteVpnSessionRequestTypedDict,
218
+ )
219
+ from .deploy_config import (
220
+ DeployConfig,
221
+ DeployConfigAttributes,
222
+ DeployConfigAttributesTypedDict,
223
+ DeployConfigData,
224
+ DeployConfigDataTypedDict,
225
+ DeployConfigError,
226
+ DeployConfigErrorData,
227
+ DeployConfigPartitions,
228
+ DeployConfigPartitionsTypedDict,
229
+ DeployConfigTypedDict,
230
+ )
231
+ from .destroy_serverop import DestroyServerRequest, DestroyServerRequestTypedDict
232
+ from .destroy_tagop import DestroyTagRequest, DestroyTagRequestTypedDict
233
+ from .destroy_team_memberop import (
234
+ DestroyTeamMemberRequest,
235
+ DestroyTeamMemberRequestTypedDict,
236
+ )
237
+ from .destroy_virtual_machineop import (
238
+ DestroyVirtualMachineRequest,
239
+ DestroyVirtualMachineRequestTypedDict,
240
+ )
241
+ from .destroy_virtual_networkop import (
242
+ DestroyVirtualNetworkRequest,
243
+ DestroyVirtualNetworkRequestTypedDict,
244
+ )
245
+ from .error_object import (
246
+ ErrorObject,
247
+ ErrorObjectData,
248
+ ErrorObjectMeta,
249
+ ErrorObjectMetaTypedDict,
250
+ Errors,
251
+ ErrorsTypedDict,
252
+ )
253
+ from .events import (
254
+ Author,
255
+ AuthorTypedDict,
256
+ Events,
257
+ EventsAttributes,
258
+ EventsAttributesTypedDict,
259
+ EventsProject,
260
+ EventsProjectTypedDict,
261
+ EventsTeam,
262
+ EventsTeamTypedDict,
263
+ EventsTypedDict,
264
+ Target,
265
+ TargetTypedDict,
266
+ )
267
+ from .filesystem_data import (
268
+ FilesystemData,
269
+ FilesystemDataAttributes,
270
+ FilesystemDataAttributesTypedDict,
271
+ FilesystemDataProject,
272
+ FilesystemDataProjectTypedDict,
273
+ FilesystemDataType,
274
+ FilesystemDataTypedDict,
275
+ )
276
+ from .firewall import (
277
+ Firewall,
278
+ FirewallAttributes,
279
+ FirewallAttributesTypedDict,
280
+ FirewallProject,
281
+ FirewallProjectTypedDict,
282
+ FirewallType,
283
+ FirewallTypedDict,
284
+ Rules,
285
+ RulesTypedDict,
286
+ )
287
+ from .firewall_server import (
288
+ FirewallServer,
289
+ FirewallServerAttributes,
290
+ FirewallServerAttributesTypedDict,
291
+ FirewallServerServer,
292
+ FirewallServerServerTypedDict,
293
+ FirewallServerType,
294
+ FirewallServerTypedDict,
295
+ )
296
+ from .firewalls import Firewalls, FirewallsTypedDict, Meta, MetaTypedDict
297
+ from .get_bandwidth_plansop import (
298
+ GetBandwidthPlansRequest,
299
+ GetBandwidthPlansRequestTypedDict,
300
+ )
301
+ from .get_billing_usageop import GetBillingUsageRequest, GetBillingUsageRequestTypedDict
302
+ from .get_eventsop import (
303
+ GetEventsRequest,
304
+ GetEventsRequestTypedDict,
305
+ GetEventsResponseBody,
306
+ GetEventsResponseBodyTypedDict,
307
+ )
308
+ from .get_firewall_assignmentsop import (
309
+ GetFirewallAssignmentsRequest,
310
+ GetFirewallAssignmentsRequestTypedDict,
311
+ )
312
+ from .get_firewallop import GetFirewallRequest, GetFirewallRequestTypedDict
313
+ from .get_ipop import GetIPRequest, GetIPRequestTypedDict
314
+ from .get_ipsop import FilterFamily, FilterType, GetIpsRequest, GetIpsRequestTypedDict
315
+ from .get_planop import GetPlanRequest, GetPlanRequestTypedDict
316
+ from .get_plans_operating_systemop import (
317
+ GetPlansOperatingSystemResponseBody,
318
+ GetPlansOperatingSystemResponseBodyTypedDict,
319
+ )
320
+ from .get_plansop import (
321
+ FilterStockLevel,
322
+ GetPlansRequest,
323
+ GetPlansRequestTypedDict,
324
+ GetPlansResponseBody,
325
+ GetPlansResponseBodyTypedDict,
326
+ )
327
+ from .get_project_ssh_keyop import (
328
+ GetProjectSSHKeyRequest,
329
+ GetProjectSSHKeyRequestTypedDict,
330
+ GetProjectSSHKeyResponseBody,
331
+ GetProjectSSHKeyResponseBodyTypedDict,
332
+ )
333
+ from .get_project_ssh_keysop import (
334
+ GetProjectSSHKeysRequest,
335
+ GetProjectSSHKeysRequestTypedDict,
336
+ )
337
+ from .get_project_user_dataop import (
338
+ GetProjectUserDataRequest,
339
+ GetProjectUserDataRequestTypedDict,
340
+ )
341
+ from .get_project_users_dataop import (
342
+ GetProjectUsersDataRequest,
343
+ GetProjectUsersDataRequestTypedDict,
344
+ GetProjectUsersDataResponseBody,
345
+ GetProjectUsersDataResponseBodyTypedDict,
346
+ )
347
+ from .get_projectsop import GetProjectsRequest, GetProjectsRequestTypedDict
348
+ from .get_regionop import GetRegionRequest, GetRegionRequestTypedDict
349
+ from .get_role_idop import GetRoleIDRequest, GetRoleIDRequestTypedDict
350
+ from .get_rolesop import GetRolesResponseBody, GetRolesResponseBodyTypedDict
351
+ from .get_server_deploy_configop import (
352
+ GetServerDeployConfigRequest,
353
+ GetServerDeployConfigRequestTypedDict,
354
+ )
355
+ from .get_server_out_of_bandop import (
356
+ GetServerOutOfBandRequest,
357
+ GetServerOutOfBandRequestTypedDict,
358
+ )
359
+ from .get_serverop import GetServerRequest, GetServerRequestTypedDict
360
+ from .get_serversop import GetServersRequest, GetServersRequestTypedDict
361
+ from .get_storage_filesystemsop import (
362
+ GetStorageFilesystemsRequest,
363
+ GetStorageFilesystemsRequestTypedDict,
364
+ )
365
+ from .get_traffic_consumptionop import (
366
+ GetTrafficConsumptionRequest,
367
+ GetTrafficConsumptionRequestTypedDict,
368
+ )
369
+ from .get_traffic_quotaop import GetTrafficQuotaRequest, GetTrafficQuotaRequestTypedDict
370
+ from .get_user_profileop import (
371
+ GetUserProfileResponseBody,
372
+ GetUserProfileResponseBodyTypedDict,
373
+ )
374
+ from .get_virtual_networkop import (
375
+ GetVirtualNetworkRequest,
376
+ GetVirtualNetworkRequestTypedDict,
377
+ GetVirtualNetworkResponseBody,
378
+ GetVirtualNetworkResponseBodyTypedDict,
379
+ )
380
+ from .get_virtual_networks_assignmentsop import (
381
+ GetVirtualNetworksAssignmentsRequest,
382
+ GetVirtualNetworksAssignmentsRequestTypedDict,
383
+ )
384
+ from .get_virtual_networksop import (
385
+ GetVirtualNetworksRequest,
386
+ GetVirtualNetworksRequestTypedDict,
387
+ )
388
+ from .get_vpn_sessionsop import (
389
+ FilterLocation,
390
+ GetVpnSessionsMeta,
391
+ GetVpnSessionsMetaTypedDict,
392
+ GetVpnSessionsRequest,
393
+ GetVpnSessionsRequestTypedDict,
394
+ GetVpnSessionsResponseBody,
395
+ GetVpnSessionsResponseBodyTypedDict,
396
+ )
397
+ from .index_virtual_machineop import (
398
+ IndexVirtualMachineRequest,
399
+ IndexVirtualMachineRequestTypedDict,
400
+ )
401
+ from .ip_address import (
402
+ Assignment,
403
+ AssignmentTypedDict,
404
+ Family,
405
+ IPAddress,
406
+ IPAddressAttributes,
407
+ IPAddressAttributesTypedDict,
408
+ IPAddressProject,
409
+ IPAddressProjectTypedDict,
410
+ IPAddressRegion,
411
+ IPAddressRegionTypedDict,
412
+ IPAddressType,
413
+ IPAddressTypedDict,
414
+ Location,
415
+ LocationTypedDict,
416
+ )
417
+ from .ip_addresses import IPAddresses, IPAddressesTypedDict
418
+ from .ipmi_session import (
419
+ IpmiSession,
420
+ IpmiSessionAttributes,
421
+ IpmiSessionAttributesTypedDict,
422
+ IpmiSessionData,
423
+ IpmiSessionDataTypedDict,
424
+ IpmiSessionType,
425
+ IpmiSessionTypedDict,
426
+ )
427
+ from .list_firewallsop import ListFirewallsRequest, ListFirewallsRequestTypedDict
428
+ from .membership import (
429
+ Membership,
430
+ MembershipAttributes,
431
+ MembershipAttributesTypedDict,
432
+ MembershipData,
433
+ MembershipDataTypedDict,
434
+ MembershipRole,
435
+ MembershipTypedDict,
436
+ )
437
+ from .operating_systems import (
438
+ Features,
439
+ FeaturesTypedDict,
440
+ OperatingSystems,
441
+ OperatingSystemsAttributes,
442
+ OperatingSystemsAttributesTypedDict,
443
+ OperatingSystemsTypedDict,
444
+ )
445
+ from .out_of_band_connection import (
446
+ Credentials,
447
+ CredentialsTypedDict,
448
+ OutOfBandConnection,
449
+ OutOfBandConnectionAttributes,
450
+ OutOfBandConnectionAttributesTypedDict,
451
+ OutOfBandConnectionData,
452
+ OutOfBandConnectionDataTypedDict,
453
+ OutOfBandConnectionSSHKey,
454
+ OutOfBandConnectionSSHKeyTypedDict,
455
+ OutOfBandConnectionTypedDict,
456
+ )
457
+ from .patch_current_teamop import (
458
+ PatchCurrentTeamRequest,
459
+ PatchCurrentTeamRequestTypedDict,
460
+ PatchCurrentTeamResponseBody,
461
+ PatchCurrentTeamResponseBodyTypedDict,
462
+ PatchCurrentTeamTeamsAttributes,
463
+ PatchCurrentTeamTeamsAttributesTypedDict,
464
+ PatchCurrentTeamTeamsCurrency,
465
+ PatchCurrentTeamTeamsData,
466
+ PatchCurrentTeamTeamsDataTypedDict,
467
+ PatchCurrentTeamTeamsRequestBody,
468
+ PatchCurrentTeamTeamsRequestBodyTypedDict,
469
+ PatchCurrentTeamTeamsType,
470
+ )
471
+ from .patch_storage_filesystemsop import (
472
+ PatchStorageFilesystemsRequest,
473
+ PatchStorageFilesystemsRequestTypedDict,
474
+ PatchStorageFilesystemsResponseBody,
475
+ PatchStorageFilesystemsResponseBodyTypedDict,
476
+ PatchStorageFilesystemsStorageAttributes,
477
+ PatchStorageFilesystemsStorageAttributesTypedDict,
478
+ PatchStorageFilesystemsStorageData,
479
+ PatchStorageFilesystemsStorageDataTypedDict,
480
+ PatchStorageFilesystemsStorageRequestBody,
481
+ PatchStorageFilesystemsStorageRequestBodyTypedDict,
482
+ PatchStorageFilesystemsStorageType,
483
+ )
484
+ from .patch_user_profileop import (
485
+ PatchUserProfileRequest,
486
+ PatchUserProfileRequestTypedDict,
487
+ PatchUserProfileResponseBody,
488
+ PatchUserProfileResponseBodyTypedDict,
489
+ PatchUserProfileUserProfileAttributes,
490
+ PatchUserProfileUserProfileAttributesTypedDict,
491
+ PatchUserProfileUserProfileData,
492
+ PatchUserProfileUserProfileDataTypedDict,
493
+ PatchUserProfileUserProfileRequestBody,
494
+ PatchUserProfileUserProfileRequestBodyTypedDict,
495
+ PatchUserProfileUserProfileRole,
496
+ PatchUserProfileUserProfileType,
497
+ )
498
+ from .plan import Plan, PlanTypedDict
499
+ from .plan_data import (
500
+ CPU,
501
+ CPUTypedDict,
502
+ Drives,
503
+ DrivesTypedDict,
504
+ Gpu,
505
+ GpuTypedDict,
506
+ Locations,
507
+ LocationsTypedDict,
508
+ Memory,
509
+ MemoryTypedDict,
510
+ Nics,
511
+ NicsTypedDict,
512
+ PlanData,
513
+ PlanDataAttributes,
514
+ PlanDataAttributesType,
515
+ PlanDataAttributesTypedDict,
516
+ PlanDataBRL,
517
+ PlanDataBRLTypedDict,
518
+ PlanDataPricing,
519
+ PlanDataPricingTypedDict,
520
+ PlanDataRegions,
521
+ PlanDataRegionsTypedDict,
522
+ PlanDataType,
523
+ PlanDataTypedDict,
524
+ PlanDataUSD,
525
+ PlanDataUSDTypedDict,
526
+ Specs,
527
+ SpecsTypedDict,
528
+ StockLevel,
529
+ )
530
+ from .post_api_keyop import PostAPIKeyResponseBody, PostAPIKeyResponseBodyTypedDict
531
+ from .post_project_ssh_keyop import (
532
+ PostProjectSSHKeyRequest,
533
+ PostProjectSSHKeyRequestTypedDict,
534
+ PostProjectSSHKeyResponseBody,
535
+ PostProjectSSHKeyResponseBodyTypedDict,
536
+ PostProjectSSHKeySSHKeysAttributes,
537
+ PostProjectSSHKeySSHKeysAttributesTypedDict,
538
+ PostProjectSSHKeySSHKeysData,
539
+ PostProjectSSHKeySSHKeysDataTypedDict,
540
+ PostProjectSSHKeySSHKeysRequestBody,
541
+ PostProjectSSHKeySSHKeysRequestBodyTypedDict,
542
+ PostProjectSSHKeySSHKeysType,
543
+ )
544
+ from .post_project_user_dataop import (
545
+ PostProjectUserDataRequest,
546
+ PostProjectUserDataRequestTypedDict,
547
+ PostProjectUserDataUserDataAttributes,
548
+ PostProjectUserDataUserDataAttributesTypedDict,
549
+ PostProjectUserDataUserDataData,
550
+ PostProjectUserDataUserDataDataTypedDict,
551
+ PostProjectUserDataUserDataRequestBody,
552
+ PostProjectUserDataUserDataRequestBodyTypedDict,
553
+ PostProjectUserDataUserDataType,
554
+ )
555
+ from .post_storage_filesystemsop import (
556
+ PostStorageFilesystemsResponseBody,
557
+ PostStorageFilesystemsResponseBodyTypedDict,
558
+ PostStorageFilesystemsStorageAttributes,
559
+ PostStorageFilesystemsStorageAttributesTypedDict,
560
+ PostStorageFilesystemsStorageData,
561
+ PostStorageFilesystemsStorageDataTypedDict,
562
+ PostStorageFilesystemsStorageRequestBody,
563
+ PostStorageFilesystemsStorageRequestBodyTypedDict,
564
+ PostStorageFilesystemsStorageType,
565
+ )
566
+ from .post_team_membersop import (
567
+ PostTeamMembersTeamsMembersAttributes,
568
+ PostTeamMembersTeamsMembersAttributesTypedDict,
569
+ PostTeamMembersTeamsMembersData,
570
+ PostTeamMembersTeamsMembersDataTypedDict,
571
+ PostTeamMembersTeamsMembersRequestBody,
572
+ PostTeamMembersTeamsMembersRequestBodyTypedDict,
573
+ PostTeamMembersTeamsMembersRole,
574
+ PostTeamMembersTeamsMembersType,
575
+ )
576
+ from .post_teamop import (
577
+ PostTeamResponseBody,
578
+ PostTeamResponseBodyTypedDict,
579
+ PostTeamTeamsAttributes,
580
+ PostTeamTeamsAttributesTypedDict,
581
+ PostTeamTeamsCurrency,
582
+ PostTeamTeamsData,
583
+ PostTeamTeamsDataTypedDict,
584
+ PostTeamTeamsRequestBody,
585
+ PostTeamTeamsRequestBodyTypedDict,
586
+ PostTeamTeamsType,
587
+ )
588
+ from .post_vpn_sessionop import (
589
+ PostVpnSessionVpnSessionsAttributes,
590
+ PostVpnSessionVpnSessionsAttributesTypedDict,
591
+ PostVpnSessionVpnSessionsData,
592
+ PostVpnSessionVpnSessionsDataTypedDict,
593
+ PostVpnSessionVpnSessionsRequestBody,
594
+ PostVpnSessionVpnSessionsRequestBodyTypedDict,
595
+ PostVpnSessionVpnSessionsSite,
596
+ PostVpnSessionVpnSessionsType,
597
+ )
598
+ from .project import (
599
+ BillingMethod,
600
+ BillingType,
601
+ Environment,
602
+ Project,
603
+ ProjectAttributes,
604
+ ProjectAttributesTypedDict,
605
+ ProjectBilling,
606
+ ProjectBillingTypedDict,
607
+ ProjectStats,
608
+ ProjectStatsTypedDict,
609
+ ProjectTypedDict,
610
+ )
611
+ from .project_include import (
612
+ BillingModel,
613
+ BillingModelTypedDict,
614
+ ProjectInclude,
615
+ ProjectIncludeTypedDict,
616
+ Stats,
617
+ StatsTypedDict,
618
+ )
619
+ from .projects import Projects, ProjectsTypedDict
620
+ from .put_project_ssh_keyop import (
621
+ PutProjectSSHKeyRequest,
622
+ PutProjectSSHKeyRequestTypedDict,
623
+ PutProjectSSHKeyResponseBody,
624
+ PutProjectSSHKeyResponseBodyTypedDict,
625
+ PutProjectSSHKeySSHKeysAttributes,
626
+ PutProjectSSHKeySSHKeysAttributesTypedDict,
627
+ PutProjectSSHKeySSHKeysData,
628
+ PutProjectSSHKeySSHKeysDataTypedDict,
629
+ PutProjectSSHKeySSHKeysRequestBody,
630
+ PutProjectSSHKeySSHKeysRequestBodyTypedDict,
631
+ PutProjectSSHKeySSHKeysType,
632
+ )
633
+ from .put_project_user_dataop import (
634
+ PutProjectUserDataRequest,
635
+ PutProjectUserDataRequestTypedDict,
636
+ PutProjectUserDataUserDataAttributes,
637
+ PutProjectUserDataUserDataAttributesTypedDict,
638
+ PutProjectUserDataUserDataData,
639
+ PutProjectUserDataUserDataDataTypedDict,
640
+ PutProjectUserDataUserDataRequestBody,
641
+ PutProjectUserDataUserDataRequestBodyTypedDict,
642
+ PutProjectUserDataUserDataType,
643
+ )
644
+ from .put_vpn_sessionop import PutVpnSessionRequest, PutVpnSessionRequestTypedDict
645
+ from .region import (
646
+ Region,
647
+ RegionAttributes,
648
+ RegionAttributesTypedDict,
649
+ RegionCountry,
650
+ RegionCountryTypedDict,
651
+ RegionData,
652
+ RegionDataTypedDict,
653
+ RegionTypedDict,
654
+ )
655
+ from .region_resource_data import (
656
+ RegionResourceData,
657
+ RegionResourceDataTypedDict,
658
+ Site,
659
+ SiteTypedDict,
660
+ )
661
+ from .regions import (
662
+ Country,
663
+ CountryTypedDict,
664
+ Regions,
665
+ RegionsAttributes,
666
+ RegionsAttributesTypedDict,
667
+ RegionsData,
668
+ RegionsDataTypedDict,
669
+ RegionsTypedDict,
670
+ )
671
+ from .role import Role, RoleTypedDict
672
+ from .role_data import (
673
+ RoleData,
674
+ RoleDataAttributes,
675
+ RoleDataAttributesTypedDict,
676
+ RoleDataType,
677
+ RoleDataTypedDict,
678
+ )
679
+ from .security import Security, SecurityTypedDict
680
+ from .server import (
681
+ Server,
682
+ Server1,
683
+ Server1TypedDict,
684
+ ServerError,
685
+ ServerErrorData,
686
+ ServerMeta,
687
+ ServerMetaTypedDict,
688
+ ServerTypedDict,
689
+ )
690
+ from .server_action import (
691
+ ServerAction,
692
+ ServerActionAttributes,
693
+ ServerActionAttributesTypedDict,
694
+ ServerActionData,
695
+ ServerActionDataTypedDict,
696
+ ServerActionMeta,
697
+ ServerActionMetaTypedDict,
698
+ ServerActionType,
699
+ ServerActionTypedDict,
700
+ )
701
+ from .server_data import (
702
+ Distro,
703
+ DistroTypedDict,
704
+ IpmiStatus,
705
+ OperatingSystem,
706
+ OperatingSystemTypedDict,
707
+ ServerData,
708
+ ServerDataAttributes,
709
+ ServerDataAttributesTypedDict,
710
+ ServerDataFeatures,
711
+ ServerDataFeaturesTypedDict,
712
+ ServerDataPlan,
713
+ ServerDataPlanTypedDict,
714
+ ServerDataSpecs,
715
+ ServerDataSpecsTypedDict,
716
+ ServerDataTypedDict,
717
+ Status,
718
+ )
719
+ from .server_exit_rescue_modeop import (
720
+ ServerExitRescueModeRequest,
721
+ ServerExitRescueModeRequestTypedDict,
722
+ )
723
+ from .server_lockop import ServerLockRequest, ServerLockRequestTypedDict
724
+ from .server_rescue import (
725
+ ServerRescue,
726
+ ServerRescueMeta,
727
+ ServerRescueMetaTypedDict,
728
+ ServerRescueTypedDict,
729
+ )
730
+ from .server_schedule_deletion import (
731
+ ServerScheduleDeletion,
732
+ ServerScheduleDeletionAttributes,
733
+ ServerScheduleDeletionAttributesTypedDict,
734
+ ServerScheduleDeletionData,
735
+ ServerScheduleDeletionDataTypedDict,
736
+ ServerScheduleDeletionType,
737
+ ServerScheduleDeletionTypedDict,
738
+ )
739
+ from .server_schedule_deletionop import (
740
+ ServerScheduleDeletionRequest,
741
+ ServerScheduleDeletionRequestTypedDict,
742
+ )
743
+ from .server_start_rescue_modeop import (
744
+ ServerStartRescueModeRequest,
745
+ ServerStartRescueModeRequestTypedDict,
746
+ )
747
+ from .server_unlockop import ServerUnlockRequest, ServerUnlockRequestTypedDict
748
+ from .server_unschedule_deletionop import (
749
+ ServerUnscheduleDeletionRequest,
750
+ ServerUnscheduleDeletionRequestTypedDict,
751
+ )
752
+ from .servers import Servers, ServersMeta, ServersMetaTypedDict, ServersTypedDict
753
+ from .show_virtual_machineop import (
754
+ ShowVirtualMachineRequest,
755
+ ShowVirtualMachineRequestTypedDict,
756
+ )
757
+ from .ssh_key import SSHKey, SSHKeyTypedDict
758
+ from .ssh_key_data import (
759
+ SSHKeyData,
760
+ SSHKeyDataAttributes,
761
+ SSHKeyDataAttributesTypedDict,
762
+ SSHKeyDataType,
763
+ SSHKeyDataTypedDict,
764
+ )
765
+ from .storage_plan import (
766
+ StoragePlan,
767
+ StoragePlanData,
768
+ StoragePlanDataTypedDict,
769
+ StoragePlanPricing,
770
+ StoragePlanPricingTypedDict,
771
+ StoragePlanTypedDict,
772
+ )
773
+ from .storage_plans import StoragePlans, StoragePlansTypedDict
774
+ from .team import (
775
+ Team,
776
+ TeamAttributes,
777
+ TeamAttributesTypedDict,
778
+ TeamBilling,
779
+ TeamBillingTypedDict,
780
+ TeamTypedDict,
781
+ )
782
+ from .team_include import Currency, CurrencyTypedDict, TeamInclude, TeamIncludeTypedDict
783
+ from .team_members import (
784
+ TeamMembers,
785
+ TeamMembersData,
786
+ TeamMembersDataTypedDict,
787
+ TeamMembersRole,
788
+ TeamMembersRoleTypedDict,
789
+ TeamMembersTypedDict,
790
+ )
791
+ from .teams import Teams, TeamsMeta, TeamsMetaTypedDict, TeamsTypedDict
792
+ from .traffic import (
793
+ Traffic,
794
+ TrafficAttributes,
795
+ TrafficAttributesTypedDict,
796
+ TrafficData,
797
+ TrafficDataData,
798
+ TrafficDataDataTypedDict,
799
+ TrafficDataTypedDict,
800
+ TrafficRegions,
801
+ TrafficRegionsTypedDict,
802
+ TrafficType,
803
+ TrafficTypedDict,
804
+ )
805
+ from .traffic_quota import (
806
+ QuotaInMbps,
807
+ QuotaInMbpsTypedDict,
808
+ QuotaInTb,
809
+ QuotaInTbTypedDict,
810
+ QuotaPerProject,
811
+ QuotaPerProjectTypedDict,
812
+ QuotaPerRegion,
813
+ QuotaPerRegionTypedDict,
814
+ TrafficQuota,
815
+ TrafficQuotaAttributes,
816
+ TrafficQuotaAttributesTypedDict,
817
+ TrafficQuotaData,
818
+ TrafficQuotaDataTypedDict,
819
+ TrafficQuotaType,
820
+ TrafficQuotaTypedDict,
821
+ )
822
+ from .update_api_key import (
823
+ UpdateAPIKey,
824
+ UpdateAPIKeyAttributes,
825
+ UpdateAPIKeyAttributesTypedDict,
826
+ UpdateAPIKeyData,
827
+ UpdateAPIKeyDataTypedDict,
828
+ UpdateAPIKeyType,
829
+ UpdateAPIKeyTypedDict,
830
+ )
831
+ from .update_api_keyop import (
832
+ UpdateAPIKeyRequest,
833
+ UpdateAPIKeyRequestTypedDict,
834
+ UpdateAPIKeyResponseBody,
835
+ UpdateAPIKeyResponseBodyTypedDict,
836
+ )
837
+ from .update_firewallop import (
838
+ UpdateFirewallFirewallsAttributes,
839
+ UpdateFirewallFirewallsAttributesTypedDict,
840
+ UpdateFirewallFirewallsData,
841
+ UpdateFirewallFirewallsDataTypedDict,
842
+ UpdateFirewallFirewallsProtocol,
843
+ UpdateFirewallFirewallsRequestBody,
844
+ UpdateFirewallFirewallsRequestBodyTypedDict,
845
+ UpdateFirewallFirewallsRules,
846
+ UpdateFirewallFirewallsRulesTypedDict,
847
+ UpdateFirewallFirewallsType,
848
+ UpdateFirewallRequest,
849
+ UpdateFirewallRequestTypedDict,
850
+ )
851
+ from .update_plans_bandwidthop import (
852
+ UpdatePlansBandwidthPlansAttributes,
853
+ UpdatePlansBandwidthPlansAttributesTypedDict,
854
+ UpdatePlansBandwidthPlansData,
855
+ UpdatePlansBandwidthPlansDataTypedDict,
856
+ UpdatePlansBandwidthPlansRequestBody,
857
+ UpdatePlansBandwidthPlansRequestBodyTypedDict,
858
+ UpdatePlansBandwidthPlansType,
859
+ )
860
+ from .update_projectop import (
861
+ UpdateProjectProjectsAttributes,
862
+ UpdateProjectProjectsAttributesTypedDict,
863
+ UpdateProjectProjectsData,
864
+ UpdateProjectProjectsDataTypedDict,
865
+ UpdateProjectProjectsEnvironment,
866
+ UpdateProjectProjectsRequestBody,
867
+ UpdateProjectProjectsRequestBodyTypedDict,
868
+ UpdateProjectProjectsType,
869
+ UpdateProjectRequest,
870
+ UpdateProjectRequestTypedDict,
871
+ UpdateProjectResponseBody,
872
+ UpdateProjectResponseBodyTypedDict,
873
+ )
874
+ from .update_server_deploy_configop import (
875
+ UpdateServerDeployConfigPartitions,
876
+ UpdateServerDeployConfigPartitionsTypedDict,
877
+ UpdateServerDeployConfigRequest,
878
+ UpdateServerDeployConfigRequestTypedDict,
879
+ UpdateServerDeployConfigServersAttributes,
880
+ UpdateServerDeployConfigServersAttributesTypedDict,
881
+ UpdateServerDeployConfigServersOperatingSystem,
882
+ UpdateServerDeployConfigServersRaid,
883
+ UpdateServerDeployConfigServersRequestBody,
884
+ UpdateServerDeployConfigServersRequestBodyTypedDict,
885
+ UpdateServerDeployConfigServersType,
886
+ )
887
+ from .update_serverop import (
888
+ UpdateServerRequest,
889
+ UpdateServerRequestTypedDict,
890
+ UpdateServerServersAttributes,
891
+ UpdateServerServersAttributesTypedDict,
892
+ UpdateServerServersBilling,
893
+ UpdateServerServersRequestBody,
894
+ UpdateServerServersRequestBodyTypedDict,
895
+ UpdateServerServersType,
896
+ )
897
+ from .update_tagop import (
898
+ UpdateTagRequest,
899
+ UpdateTagRequestTypedDict,
900
+ UpdateTagTagsAttributes,
901
+ UpdateTagTagsAttributesTypedDict,
902
+ UpdateTagTagsData,
903
+ UpdateTagTagsDataTypedDict,
904
+ UpdateTagTagsRequestBody,
905
+ UpdateTagTagsRequestBodyTypedDict,
906
+ UpdateTagTagsType,
907
+ )
908
+ from .update_virtual_networkop import (
909
+ UpdateVirtualNetworkPrivateNetworksAttributes,
910
+ UpdateVirtualNetworkPrivateNetworksAttributesTypedDict,
911
+ UpdateVirtualNetworkPrivateNetworksData,
912
+ UpdateVirtualNetworkPrivateNetworksDataTypedDict,
913
+ UpdateVirtualNetworkPrivateNetworksRequestBody,
914
+ UpdateVirtualNetworkPrivateNetworksRequestBodyTypedDict,
915
+ UpdateVirtualNetworkPrivateNetworksType,
916
+ UpdateVirtualNetworkRequest,
917
+ UpdateVirtualNetworkRequestTypedDict,
918
+ )
919
+ from .user import (
920
+ User,
921
+ UserAttributes,
922
+ UserAttributesTypedDict,
923
+ UserRole,
924
+ UserRoleTypedDict,
925
+ UserTypedDict,
926
+ )
927
+ from .user_data import UserData, UserDataTypedDict
928
+ from .user_data_properties import (
929
+ UserDataProperties,
930
+ UserDataPropertiesAttributes,
931
+ UserDataPropertiesAttributesTypedDict,
932
+ UserDataPropertiesType,
933
+ UserDataPropertiesTypedDict,
934
+ )
935
+ from .user_include import (
936
+ UserInclude,
937
+ UserIncludeRole,
938
+ UserIncludeRoleTypedDict,
939
+ UserIncludeTypedDict,
940
+ )
941
+ from .user_team import (
942
+ UserTeam,
943
+ UserTeamAttributes,
944
+ UserTeamAttributesTypedDict,
945
+ UserTeamBilling,
946
+ UserTeamBillingTypedDict,
947
+ UserTeamTypedDict,
948
+ )
949
+ from .user_teams import (
950
+ UserTeams,
951
+ UserTeamsMeta,
952
+ UserTeamsMetaTypedDict,
953
+ UserTeamsTypedDict,
954
+ )
955
+ from .user_update import (
956
+ UserUpdate,
957
+ UserUpdateAttributes,
958
+ UserUpdateAttributesTypedDict,
959
+ UserUpdateTypedDict,
960
+ )
961
+ from .virtual_machine import (
962
+ VirtualMachine,
963
+ VirtualMachineMeta,
964
+ VirtualMachineMetaTypedDict,
965
+ VirtualMachineTypedDict,
966
+ )
967
+ from .virtual_machine_payload import (
968
+ VirtualMachinePayload,
969
+ VirtualMachinePayloadAttributes,
970
+ VirtualMachinePayloadAttributesTypedDict,
971
+ VirtualMachinePayloadData,
972
+ VirtualMachinePayloadDataTypedDict,
973
+ VirtualMachinePayloadType,
974
+ VirtualMachinePayloadTypedDict,
975
+ )
976
+ from .virtual_machine_plans import (
977
+ Disk,
978
+ DiskTypedDict,
979
+ Size,
980
+ SizeTypedDict,
981
+ VirtualMachinePlans,
982
+ VirtualMachinePlansAttributes,
983
+ VirtualMachinePlansAttributesTypedDict,
984
+ VirtualMachinePlansBRL,
985
+ VirtualMachinePlansBRLTypedDict,
986
+ VirtualMachinePlansData,
987
+ VirtualMachinePlansDataType,
988
+ VirtualMachinePlansDataTypedDict,
989
+ VirtualMachinePlansPricing,
990
+ VirtualMachinePlansPricingTypedDict,
991
+ VirtualMachinePlansRegions,
992
+ VirtualMachinePlansRegionsTypedDict,
993
+ VirtualMachinePlansSpecs,
994
+ VirtualMachinePlansSpecsTypedDict,
995
+ VirtualMachinePlansStockLevel,
996
+ VirtualMachinePlansType,
997
+ VirtualMachinePlansTypedDict,
998
+ VirtualMachinePlansUSD,
999
+ VirtualMachinePlansUSDTypedDict,
1000
+ VirtualMachinePlansUnit,
1001
+ )
1002
+ from .virtual_network import (
1003
+ VirtualNetwork,
1004
+ VirtualNetworkAttributes1,
1005
+ VirtualNetworkAttributes1TypedDict,
1006
+ VirtualNetworkAttributesRegion,
1007
+ VirtualNetworkAttributesRegionTypedDict,
1008
+ VirtualNetworkAttributesSite,
1009
+ VirtualNetworkAttributesSiteTypedDict,
1010
+ VirtualNetworkError,
1011
+ VirtualNetworkErrorData,
1012
+ VirtualNetworkType1,
1013
+ VirtualNetworkTypedDict,
1014
+ )
1015
+ from .virtual_network_assignment import (
1016
+ VirtualNetworkAssignment,
1017
+ VirtualNetworkAssignmentAttributes,
1018
+ VirtualNetworkAssignmentAttributesTypedDict,
1019
+ VirtualNetworkAssignmentTypedDict,
1020
+ )
1021
+ from .virtual_network_assignments import (
1022
+ VirtualNetworkAssignments,
1023
+ VirtualNetworkAssignmentsMeta,
1024
+ VirtualNetworkAssignmentsMetaTypedDict,
1025
+ VirtualNetworkAssignmentsTypedDict,
1026
+ )
1027
+ from .virtual_network1 import (
1028
+ VirtualNetwork1,
1029
+ VirtualNetwork1TypedDict,
1030
+ VirtualNetworkAttributes,
1031
+ VirtualNetworkAttributesTypedDict,
1032
+ VirtualNetworkRegion,
1033
+ VirtualNetworkRegionTypedDict,
1034
+ VirtualNetworkSite,
1035
+ VirtualNetworkSiteTypedDict,
1036
+ VirtualNetworkType,
1037
+ )
1038
+ from .virtual_networks import (
1039
+ VirtualNetworks,
1040
+ VirtualNetworksMeta,
1041
+ VirtualNetworksMetaTypedDict,
1042
+ VirtualNetworksTypedDict,
1043
+ )
1044
+ from .vpn_session_data_with_password import (
1045
+ VpnSessionDataWithPassword,
1046
+ VpnSessionDataWithPasswordAttributes,
1047
+ VpnSessionDataWithPasswordAttributesTypedDict,
1048
+ VpnSessionDataWithPasswordStatus,
1049
+ VpnSessionDataWithPasswordType,
1050
+ VpnSessionDataWithPasswordTypedDict,
1051
+ )
1052
+ from .vpn_session_with_password import (
1053
+ VpnSessionWithPassword,
1054
+ VpnSessionWithPasswordTypedDict,
1055
+ )
1056
+
1057
+
1058
+ __all__ = [
1059
+ "APIError",
1060
+ "APIKey",
1061
+ "APIKeyTypedDict",
1062
+ "APIKeyUser",
1063
+ "APIKeyUserTypedDict",
1064
+ "AssignServerVirtualNetworkPrivateNetworksAttributes",
1065
+ "AssignServerVirtualNetworkPrivateNetworksAttributesTypedDict",
1066
+ "AssignServerVirtualNetworkPrivateNetworksData",
1067
+ "AssignServerVirtualNetworkPrivateNetworksDataTypedDict",
1068
+ "AssignServerVirtualNetworkPrivateNetworksRequestBody",
1069
+ "AssignServerVirtualNetworkPrivateNetworksRequestBodyTypedDict",
1070
+ "AssignServerVirtualNetworkPrivateNetworksType",
1071
+ "Assignment",
1072
+ "AssignmentTypedDict",
1073
+ "Attributes",
1074
+ "AttributesTypedDict",
1075
+ "Author",
1076
+ "AuthorTypedDict",
1077
+ "BandwidthPackages",
1078
+ "BandwidthPackagesAttributes",
1079
+ "BandwidthPackagesAttributesTypedDict",
1080
+ "BandwidthPackagesProject",
1081
+ "BandwidthPackagesProjectTypedDict",
1082
+ "BandwidthPackagesType",
1083
+ "BandwidthPackagesTypedDict",
1084
+ "BandwidthPlan",
1085
+ "BandwidthPlanAttributes",
1086
+ "BandwidthPlanAttributesTypedDict",
1087
+ "BandwidthPlanType",
1088
+ "BandwidthPlanTypedDict",
1089
+ "BandwidthPlans",
1090
+ "BandwidthPlansTypedDict",
1091
+ "BillingMethod",
1092
+ "BillingModel",
1093
+ "BillingModelTypedDict",
1094
+ "BillingType",
1095
+ "BillingUsage",
1096
+ "BillingUsageAttributes",
1097
+ "BillingUsageAttributesTypedDict",
1098
+ "BillingUsageData",
1099
+ "BillingUsageDataTypedDict",
1100
+ "BillingUsageProject",
1101
+ "BillingUsageProjectTypedDict",
1102
+ "BillingUsageTypedDict",
1103
+ "Brl",
1104
+ "BrlTypedDict",
1105
+ "CPU",
1106
+ "CPUTypedDict",
1107
+ "Country",
1108
+ "CountryTypedDict",
1109
+ "CreateAPIKey",
1110
+ "CreateAPIKeyAttributes",
1111
+ "CreateAPIKeyAttributesTypedDict",
1112
+ "CreateAPIKeyType",
1113
+ "CreateAPIKeyTypedDict",
1114
+ "CreateFirewallAssignmentFirewallsAttributes",
1115
+ "CreateFirewallAssignmentFirewallsAttributesTypedDict",
1116
+ "CreateFirewallAssignmentFirewallsData",
1117
+ "CreateFirewallAssignmentFirewallsDataTypedDict",
1118
+ "CreateFirewallAssignmentFirewallsRequestBody",
1119
+ "CreateFirewallAssignmentFirewallsRequestBodyTypedDict",
1120
+ "CreateFirewallAssignmentFirewallsType",
1121
+ "CreateFirewallAssignmentRequest",
1122
+ "CreateFirewallAssignmentRequestTypedDict",
1123
+ "CreateFirewallFirewallsAttributes",
1124
+ "CreateFirewallFirewallsAttributesTypedDict",
1125
+ "CreateFirewallFirewallsData",
1126
+ "CreateFirewallFirewallsDataTypedDict",
1127
+ "CreateFirewallFirewallsRequestBody",
1128
+ "CreateFirewallFirewallsRequestBodyTypedDict",
1129
+ "CreateFirewallFirewallsType",
1130
+ "CreateFirewallProtocol",
1131
+ "CreateFirewallRules",
1132
+ "CreateFirewallRulesTypedDict",
1133
+ "CreateIpmiSessionRequest",
1134
+ "CreateIpmiSessionRequestTypedDict",
1135
+ "CreateProjectProjectsAttributes",
1136
+ "CreateProjectProjectsAttributesTypedDict",
1137
+ "CreateProjectProjectsData",
1138
+ "CreateProjectProjectsDataTypedDict",
1139
+ "CreateProjectProjectsEnvironment",
1140
+ "CreateProjectProjectsRequestBody",
1141
+ "CreateProjectProjectsRequestBodyTypedDict",
1142
+ "CreateProjectProjectsType",
1143
+ "CreateProjectProvisioningType",
1144
+ "CreateProjectResponseBody",
1145
+ "CreateProjectResponseBodyTypedDict",
1146
+ "CreateServerActionAction",
1147
+ "CreateServerActionRequest",
1148
+ "CreateServerActionRequestTypedDict",
1149
+ "CreateServerActionServersAttributes",
1150
+ "CreateServerActionServersAttributesTypedDict",
1151
+ "CreateServerActionServersData",
1152
+ "CreateServerActionServersDataTypedDict",
1153
+ "CreateServerActionServersRequestBody",
1154
+ "CreateServerActionServersRequestBodyTypedDict",
1155
+ "CreateServerActionServersType",
1156
+ "CreateServerOutOfBandRequest",
1157
+ "CreateServerOutOfBandRequestTypedDict",
1158
+ "CreateServerOutOfBandServersAttributes",
1159
+ "CreateServerOutOfBandServersAttributesTypedDict",
1160
+ "CreateServerOutOfBandServersData",
1161
+ "CreateServerOutOfBandServersDataTypedDict",
1162
+ "CreateServerOutOfBandServersRequestBody",
1163
+ "CreateServerOutOfBandServersRequestBodyTypedDict",
1164
+ "CreateServerOutOfBandServersType",
1165
+ "CreateServerRaid",
1166
+ "CreateServerReinstallRequest",
1167
+ "CreateServerReinstallRequestTypedDict",
1168
+ "CreateServerReinstallServersAttributes",
1169
+ "CreateServerReinstallServersAttributesTypedDict",
1170
+ "CreateServerReinstallServersData",
1171
+ "CreateServerReinstallServersDataTypedDict",
1172
+ "CreateServerReinstallServersOperatingSystem",
1173
+ "CreateServerReinstallServersPartitions",
1174
+ "CreateServerReinstallServersPartitionsTypedDict",
1175
+ "CreateServerReinstallServersRaid",
1176
+ "CreateServerReinstallServersRequestBody",
1177
+ "CreateServerReinstallServersRequestBodyTypedDict",
1178
+ "CreateServerReinstallServersType",
1179
+ "CreateServerServersAttributes",
1180
+ "CreateServerServersAttributesTypedDict",
1181
+ "CreateServerServersBilling",
1182
+ "CreateServerServersData",
1183
+ "CreateServerServersDataTypedDict",
1184
+ "CreateServerServersOperatingSystem",
1185
+ "CreateServerServersPlan",
1186
+ "CreateServerServersRequestBody",
1187
+ "CreateServerServersRequestBodyTypedDict",
1188
+ "CreateServerServersSite",
1189
+ "CreateServerServersType",
1190
+ "CreateTagTagsAttributes",
1191
+ "CreateTagTagsAttributesTypedDict",
1192
+ "CreateTagTagsData",
1193
+ "CreateTagTagsDataTypedDict",
1194
+ "CreateTagTagsRequestBody",
1195
+ "CreateTagTagsRequestBodyTypedDict",
1196
+ "CreateTagTagsType",
1197
+ "CreateVirtualNetworkPrivateNetworksAttributes",
1198
+ "CreateVirtualNetworkPrivateNetworksAttributesTypedDict",
1199
+ "CreateVirtualNetworkPrivateNetworksData",
1200
+ "CreateVirtualNetworkPrivateNetworksDataTypedDict",
1201
+ "CreateVirtualNetworkPrivateNetworksRequestBody",
1202
+ "CreateVirtualNetworkPrivateNetworksRequestBodyTypedDict",
1203
+ "CreateVirtualNetworkPrivateNetworksSite",
1204
+ "CreateVirtualNetworkPrivateNetworksType",
1205
+ "Credentials",
1206
+ "CredentialsTypedDict",
1207
+ "Currency",
1208
+ "CurrencyTypedDict",
1209
+ "CustomTag",
1210
+ "CustomTagAttributes",
1211
+ "CustomTagAttributesTypedDict",
1212
+ "CustomTagType",
1213
+ "CustomTagTypedDict",
1214
+ "Data",
1215
+ "DataTypedDict",
1216
+ "DeleteAPIKeyRequest",
1217
+ "DeleteAPIKeyRequestTypedDict",
1218
+ "DeleteFirewallAssignmentRequest",
1219
+ "DeleteFirewallAssignmentRequestTypedDict",
1220
+ "DeleteFirewallRequest",
1221
+ "DeleteFirewallRequestTypedDict",
1222
+ "DeleteProjectRequest",
1223
+ "DeleteProjectRequestTypedDict",
1224
+ "DeleteProjectSSHKeyRequest",
1225
+ "DeleteProjectSSHKeyRequestTypedDict",
1226
+ "DeleteProjectUserDataRequest",
1227
+ "DeleteProjectUserDataRequestTypedDict",
1228
+ "DeleteStorageFilesystemsRequest",
1229
+ "DeleteStorageFilesystemsRequestTypedDict",
1230
+ "DeleteVirtualNetworksAssignmentsRequest",
1231
+ "DeleteVirtualNetworksAssignmentsRequestTypedDict",
1232
+ "DeleteVpnSessionRequest",
1233
+ "DeleteVpnSessionRequestTypedDict",
1234
+ "DeployConfig",
1235
+ "DeployConfigAttributes",
1236
+ "DeployConfigAttributesTypedDict",
1237
+ "DeployConfigData",
1238
+ "DeployConfigDataTypedDict",
1239
+ "DeployConfigError",
1240
+ "DeployConfigErrorData",
1241
+ "DeployConfigPartitions",
1242
+ "DeployConfigPartitionsTypedDict",
1243
+ "DeployConfigTypedDict",
1244
+ "DestroyServerRequest",
1245
+ "DestroyServerRequestTypedDict",
1246
+ "DestroyTagRequest",
1247
+ "DestroyTagRequestTypedDict",
1248
+ "DestroyTeamMemberRequest",
1249
+ "DestroyTeamMemberRequestTypedDict",
1250
+ "DestroyVirtualMachineRequest",
1251
+ "DestroyVirtualMachineRequestTypedDict",
1252
+ "DestroyVirtualNetworkRequest",
1253
+ "DestroyVirtualNetworkRequestTypedDict",
1254
+ "Disk",
1255
+ "DiskTypedDict",
1256
+ "Distro",
1257
+ "DistroTypedDict",
1258
+ "Drives",
1259
+ "DrivesTypedDict",
1260
+ "Environment",
1261
+ "ErrorObject",
1262
+ "ErrorObjectData",
1263
+ "ErrorObjectMeta",
1264
+ "ErrorObjectMetaTypedDict",
1265
+ "Errors",
1266
+ "ErrorsTypedDict",
1267
+ "Events",
1268
+ "EventsAttributes",
1269
+ "EventsAttributesTypedDict",
1270
+ "EventsProject",
1271
+ "EventsProjectTypedDict",
1272
+ "EventsTeam",
1273
+ "EventsTeamTypedDict",
1274
+ "EventsTypedDict",
1275
+ "Family",
1276
+ "Features",
1277
+ "FeaturesTypedDict",
1278
+ "FilesystemData",
1279
+ "FilesystemDataAttributes",
1280
+ "FilesystemDataAttributesTypedDict",
1281
+ "FilesystemDataProject",
1282
+ "FilesystemDataProjectTypedDict",
1283
+ "FilesystemDataType",
1284
+ "FilesystemDataTypedDict",
1285
+ "FilterFamily",
1286
+ "FilterLocation",
1287
+ "FilterStockLevel",
1288
+ "FilterType",
1289
+ "Firewall",
1290
+ "FirewallAttributes",
1291
+ "FirewallAttributesTypedDict",
1292
+ "FirewallProject",
1293
+ "FirewallProjectTypedDict",
1294
+ "FirewallServer",
1295
+ "FirewallServerAttributes",
1296
+ "FirewallServerAttributesTypedDict",
1297
+ "FirewallServerServer",
1298
+ "FirewallServerServerTypedDict",
1299
+ "FirewallServerType",
1300
+ "FirewallServerTypedDict",
1301
+ "FirewallType",
1302
+ "FirewallTypedDict",
1303
+ "Firewalls",
1304
+ "FirewallsTypedDict",
1305
+ "GetBandwidthPlansRequest",
1306
+ "GetBandwidthPlansRequestTypedDict",
1307
+ "GetBillingUsageRequest",
1308
+ "GetBillingUsageRequestTypedDict",
1309
+ "GetEventsRequest",
1310
+ "GetEventsRequestTypedDict",
1311
+ "GetEventsResponseBody",
1312
+ "GetEventsResponseBodyTypedDict",
1313
+ "GetFirewallAssignmentsRequest",
1314
+ "GetFirewallAssignmentsRequestTypedDict",
1315
+ "GetFirewallRequest",
1316
+ "GetFirewallRequestTypedDict",
1317
+ "GetIPRequest",
1318
+ "GetIPRequestTypedDict",
1319
+ "GetIpsRequest",
1320
+ "GetIpsRequestTypedDict",
1321
+ "GetPlanRequest",
1322
+ "GetPlanRequestTypedDict",
1323
+ "GetPlansOperatingSystemResponseBody",
1324
+ "GetPlansOperatingSystemResponseBodyTypedDict",
1325
+ "GetPlansRequest",
1326
+ "GetPlansRequestTypedDict",
1327
+ "GetPlansResponseBody",
1328
+ "GetPlansResponseBodyTypedDict",
1329
+ "GetProjectSSHKeyRequest",
1330
+ "GetProjectSSHKeyRequestTypedDict",
1331
+ "GetProjectSSHKeyResponseBody",
1332
+ "GetProjectSSHKeyResponseBodyTypedDict",
1333
+ "GetProjectSSHKeysRequest",
1334
+ "GetProjectSSHKeysRequestTypedDict",
1335
+ "GetProjectUserDataRequest",
1336
+ "GetProjectUserDataRequestTypedDict",
1337
+ "GetProjectUsersDataRequest",
1338
+ "GetProjectUsersDataRequestTypedDict",
1339
+ "GetProjectUsersDataResponseBody",
1340
+ "GetProjectUsersDataResponseBodyTypedDict",
1341
+ "GetProjectsRequest",
1342
+ "GetProjectsRequestTypedDict",
1343
+ "GetRegionRequest",
1344
+ "GetRegionRequestTypedDict",
1345
+ "GetRoleIDRequest",
1346
+ "GetRoleIDRequestTypedDict",
1347
+ "GetRolesResponseBody",
1348
+ "GetRolesResponseBodyTypedDict",
1349
+ "GetServerDeployConfigRequest",
1350
+ "GetServerDeployConfigRequestTypedDict",
1351
+ "GetServerOutOfBandRequest",
1352
+ "GetServerOutOfBandRequestTypedDict",
1353
+ "GetServerRequest",
1354
+ "GetServerRequestTypedDict",
1355
+ "GetServersRequest",
1356
+ "GetServersRequestTypedDict",
1357
+ "GetStorageFilesystemsRequest",
1358
+ "GetStorageFilesystemsRequestTypedDict",
1359
+ "GetTrafficConsumptionRequest",
1360
+ "GetTrafficConsumptionRequestTypedDict",
1361
+ "GetTrafficQuotaRequest",
1362
+ "GetTrafficQuotaRequestTypedDict",
1363
+ "GetUserProfileResponseBody",
1364
+ "GetUserProfileResponseBodyTypedDict",
1365
+ "GetVirtualNetworkRequest",
1366
+ "GetVirtualNetworkRequestTypedDict",
1367
+ "GetVirtualNetworkResponseBody",
1368
+ "GetVirtualNetworkResponseBodyTypedDict",
1369
+ "GetVirtualNetworksAssignmentsRequest",
1370
+ "GetVirtualNetworksAssignmentsRequestTypedDict",
1371
+ "GetVirtualNetworksRequest",
1372
+ "GetVirtualNetworksRequestTypedDict",
1373
+ "GetVpnSessionsMeta",
1374
+ "GetVpnSessionsMetaTypedDict",
1375
+ "GetVpnSessionsRequest",
1376
+ "GetVpnSessionsRequestTypedDict",
1377
+ "GetVpnSessionsResponseBody",
1378
+ "GetVpnSessionsResponseBodyTypedDict",
1379
+ "Gpu",
1380
+ "GpuTypedDict",
1381
+ "IPAddress",
1382
+ "IPAddressAttributes",
1383
+ "IPAddressAttributesTypedDict",
1384
+ "IPAddressProject",
1385
+ "IPAddressProjectTypedDict",
1386
+ "IPAddressRegion",
1387
+ "IPAddressRegionTypedDict",
1388
+ "IPAddressType",
1389
+ "IPAddressTypedDict",
1390
+ "IPAddresses",
1391
+ "IPAddressesTypedDict",
1392
+ "IndexVirtualMachineRequest",
1393
+ "IndexVirtualMachineRequestTypedDict",
1394
+ "IpmiSession",
1395
+ "IpmiSessionAttributes",
1396
+ "IpmiSessionAttributesTypedDict",
1397
+ "IpmiSessionData",
1398
+ "IpmiSessionDataTypedDict",
1399
+ "IpmiSessionType",
1400
+ "IpmiSessionTypedDict",
1401
+ "IpmiStatus",
1402
+ "ListFirewallsRequest",
1403
+ "ListFirewallsRequestTypedDict",
1404
+ "Location",
1405
+ "LocationTypedDict",
1406
+ "Locations",
1407
+ "LocationsTypedDict",
1408
+ "Membership",
1409
+ "MembershipAttributes",
1410
+ "MembershipAttributesTypedDict",
1411
+ "MembershipData",
1412
+ "MembershipDataTypedDict",
1413
+ "MembershipRole",
1414
+ "MembershipTypedDict",
1415
+ "Memory",
1416
+ "MemoryTypedDict",
1417
+ "Meta",
1418
+ "MetaTypedDict",
1419
+ "Metadata",
1420
+ "MetadataTypedDict",
1421
+ "Nics",
1422
+ "NicsTypedDict",
1423
+ "OperatingSystem",
1424
+ "OperatingSystemTypedDict",
1425
+ "OperatingSystems",
1426
+ "OperatingSystemsAttributes",
1427
+ "OperatingSystemsAttributesTypedDict",
1428
+ "OperatingSystemsTypedDict",
1429
+ "OutOfBandConnection",
1430
+ "OutOfBandConnectionAttributes",
1431
+ "OutOfBandConnectionAttributesTypedDict",
1432
+ "OutOfBandConnectionData",
1433
+ "OutOfBandConnectionDataTypedDict",
1434
+ "OutOfBandConnectionSSHKey",
1435
+ "OutOfBandConnectionSSHKeyTypedDict",
1436
+ "OutOfBandConnectionTypedDict",
1437
+ "Packages",
1438
+ "PackagesTypedDict",
1439
+ "PatchCurrentTeamRequest",
1440
+ "PatchCurrentTeamRequestTypedDict",
1441
+ "PatchCurrentTeamResponseBody",
1442
+ "PatchCurrentTeamResponseBodyTypedDict",
1443
+ "PatchCurrentTeamTeamsAttributes",
1444
+ "PatchCurrentTeamTeamsAttributesTypedDict",
1445
+ "PatchCurrentTeamTeamsCurrency",
1446
+ "PatchCurrentTeamTeamsData",
1447
+ "PatchCurrentTeamTeamsDataTypedDict",
1448
+ "PatchCurrentTeamTeamsRequestBody",
1449
+ "PatchCurrentTeamTeamsRequestBodyTypedDict",
1450
+ "PatchCurrentTeamTeamsType",
1451
+ "PatchStorageFilesystemsRequest",
1452
+ "PatchStorageFilesystemsRequestTypedDict",
1453
+ "PatchStorageFilesystemsResponseBody",
1454
+ "PatchStorageFilesystemsResponseBodyTypedDict",
1455
+ "PatchStorageFilesystemsStorageAttributes",
1456
+ "PatchStorageFilesystemsStorageAttributesTypedDict",
1457
+ "PatchStorageFilesystemsStorageData",
1458
+ "PatchStorageFilesystemsStorageDataTypedDict",
1459
+ "PatchStorageFilesystemsStorageRequestBody",
1460
+ "PatchStorageFilesystemsStorageRequestBodyTypedDict",
1461
+ "PatchStorageFilesystemsStorageType",
1462
+ "PatchUserProfileRequest",
1463
+ "PatchUserProfileRequestTypedDict",
1464
+ "PatchUserProfileResponseBody",
1465
+ "PatchUserProfileResponseBodyTypedDict",
1466
+ "PatchUserProfileUserProfileAttributes",
1467
+ "PatchUserProfileUserProfileAttributesTypedDict",
1468
+ "PatchUserProfileUserProfileData",
1469
+ "PatchUserProfileUserProfileDataTypedDict",
1470
+ "PatchUserProfileUserProfileRequestBody",
1471
+ "PatchUserProfileUserProfileRequestBodyTypedDict",
1472
+ "PatchUserProfileUserProfileRole",
1473
+ "PatchUserProfileUserProfileType",
1474
+ "Period",
1475
+ "PeriodTypedDict",
1476
+ "Plan",
1477
+ "PlanData",
1478
+ "PlanDataAttributes",
1479
+ "PlanDataAttributesType",
1480
+ "PlanDataAttributesTypedDict",
1481
+ "PlanDataBRL",
1482
+ "PlanDataBRLTypedDict",
1483
+ "PlanDataPricing",
1484
+ "PlanDataPricingTypedDict",
1485
+ "PlanDataRegions",
1486
+ "PlanDataRegionsTypedDict",
1487
+ "PlanDataType",
1488
+ "PlanDataTypedDict",
1489
+ "PlanDataUSD",
1490
+ "PlanDataUSDTypedDict",
1491
+ "PlanTypedDict",
1492
+ "PostAPIKeyResponseBody",
1493
+ "PostAPIKeyResponseBodyTypedDict",
1494
+ "PostProjectSSHKeyRequest",
1495
+ "PostProjectSSHKeyRequestTypedDict",
1496
+ "PostProjectSSHKeyResponseBody",
1497
+ "PostProjectSSHKeyResponseBodyTypedDict",
1498
+ "PostProjectSSHKeySSHKeysAttributes",
1499
+ "PostProjectSSHKeySSHKeysAttributesTypedDict",
1500
+ "PostProjectSSHKeySSHKeysData",
1501
+ "PostProjectSSHKeySSHKeysDataTypedDict",
1502
+ "PostProjectSSHKeySSHKeysRequestBody",
1503
+ "PostProjectSSHKeySSHKeysRequestBodyTypedDict",
1504
+ "PostProjectSSHKeySSHKeysType",
1505
+ "PostProjectUserDataRequest",
1506
+ "PostProjectUserDataRequestTypedDict",
1507
+ "PostProjectUserDataUserDataAttributes",
1508
+ "PostProjectUserDataUserDataAttributesTypedDict",
1509
+ "PostProjectUserDataUserDataData",
1510
+ "PostProjectUserDataUserDataDataTypedDict",
1511
+ "PostProjectUserDataUserDataRequestBody",
1512
+ "PostProjectUserDataUserDataRequestBodyTypedDict",
1513
+ "PostProjectUserDataUserDataType",
1514
+ "PostStorageFilesystemsResponseBody",
1515
+ "PostStorageFilesystemsResponseBodyTypedDict",
1516
+ "PostStorageFilesystemsStorageAttributes",
1517
+ "PostStorageFilesystemsStorageAttributesTypedDict",
1518
+ "PostStorageFilesystemsStorageData",
1519
+ "PostStorageFilesystemsStorageDataTypedDict",
1520
+ "PostStorageFilesystemsStorageRequestBody",
1521
+ "PostStorageFilesystemsStorageRequestBodyTypedDict",
1522
+ "PostStorageFilesystemsStorageType",
1523
+ "PostTeamMembersTeamsMembersAttributes",
1524
+ "PostTeamMembersTeamsMembersAttributesTypedDict",
1525
+ "PostTeamMembersTeamsMembersData",
1526
+ "PostTeamMembersTeamsMembersDataTypedDict",
1527
+ "PostTeamMembersTeamsMembersRequestBody",
1528
+ "PostTeamMembersTeamsMembersRequestBodyTypedDict",
1529
+ "PostTeamMembersTeamsMembersRole",
1530
+ "PostTeamMembersTeamsMembersType",
1531
+ "PostTeamResponseBody",
1532
+ "PostTeamResponseBodyTypedDict",
1533
+ "PostTeamTeamsAttributes",
1534
+ "PostTeamTeamsAttributesTypedDict",
1535
+ "PostTeamTeamsCurrency",
1536
+ "PostTeamTeamsData",
1537
+ "PostTeamTeamsDataTypedDict",
1538
+ "PostTeamTeamsRequestBody",
1539
+ "PostTeamTeamsRequestBodyTypedDict",
1540
+ "PostTeamTeamsType",
1541
+ "PostVpnSessionVpnSessionsAttributes",
1542
+ "PostVpnSessionVpnSessionsAttributesTypedDict",
1543
+ "PostVpnSessionVpnSessionsData",
1544
+ "PostVpnSessionVpnSessionsDataTypedDict",
1545
+ "PostVpnSessionVpnSessionsRequestBody",
1546
+ "PostVpnSessionVpnSessionsRequestBodyTypedDict",
1547
+ "PostVpnSessionVpnSessionsSite",
1548
+ "PostVpnSessionVpnSessionsType",
1549
+ "Pricing",
1550
+ "PricingTypedDict",
1551
+ "Products",
1552
+ "ProductsTypedDict",
1553
+ "Project",
1554
+ "ProjectAttributes",
1555
+ "ProjectAttributesTypedDict",
1556
+ "ProjectBilling",
1557
+ "ProjectBillingTypedDict",
1558
+ "ProjectInclude",
1559
+ "ProjectIncludeTypedDict",
1560
+ "ProjectStats",
1561
+ "ProjectStatsTypedDict",
1562
+ "ProjectTypedDict",
1563
+ "Projects",
1564
+ "ProjectsTypedDict",
1565
+ "PutProjectSSHKeyRequest",
1566
+ "PutProjectSSHKeyRequestTypedDict",
1567
+ "PutProjectSSHKeyResponseBody",
1568
+ "PutProjectSSHKeyResponseBodyTypedDict",
1569
+ "PutProjectSSHKeySSHKeysAttributes",
1570
+ "PutProjectSSHKeySSHKeysAttributesTypedDict",
1571
+ "PutProjectSSHKeySSHKeysData",
1572
+ "PutProjectSSHKeySSHKeysDataTypedDict",
1573
+ "PutProjectSSHKeySSHKeysRequestBody",
1574
+ "PutProjectSSHKeySSHKeysRequestBodyTypedDict",
1575
+ "PutProjectSSHKeySSHKeysType",
1576
+ "PutProjectUserDataRequest",
1577
+ "PutProjectUserDataRequestTypedDict",
1578
+ "PutProjectUserDataUserDataAttributes",
1579
+ "PutProjectUserDataUserDataAttributesTypedDict",
1580
+ "PutProjectUserDataUserDataData",
1581
+ "PutProjectUserDataUserDataDataTypedDict",
1582
+ "PutProjectUserDataUserDataRequestBody",
1583
+ "PutProjectUserDataUserDataRequestBodyTypedDict",
1584
+ "PutProjectUserDataUserDataType",
1585
+ "PutVpnSessionRequest",
1586
+ "PutVpnSessionRequestTypedDict",
1587
+ "QuotaInMbps",
1588
+ "QuotaInMbpsTypedDict",
1589
+ "QuotaInTb",
1590
+ "QuotaInTbTypedDict",
1591
+ "QuotaPerProject",
1592
+ "QuotaPerProjectTypedDict",
1593
+ "QuotaPerRegion",
1594
+ "QuotaPerRegionTypedDict",
1595
+ "Region",
1596
+ "RegionAttributes",
1597
+ "RegionAttributesTypedDict",
1598
+ "RegionCountry",
1599
+ "RegionCountryTypedDict",
1600
+ "RegionData",
1601
+ "RegionDataTypedDict",
1602
+ "RegionResourceData",
1603
+ "RegionResourceDataTypedDict",
1604
+ "RegionTypedDict",
1605
+ "Regions",
1606
+ "RegionsAttributes",
1607
+ "RegionsAttributesTypedDict",
1608
+ "RegionsData",
1609
+ "RegionsDataTypedDict",
1610
+ "RegionsTypedDict",
1611
+ "Role",
1612
+ "RoleData",
1613
+ "RoleDataAttributes",
1614
+ "RoleDataAttributesTypedDict",
1615
+ "RoleDataType",
1616
+ "RoleDataTypedDict",
1617
+ "RoleTypedDict",
1618
+ "Rules",
1619
+ "RulesTypedDict",
1620
+ "SSHKey",
1621
+ "SSHKeyData",
1622
+ "SSHKeyDataAttributes",
1623
+ "SSHKeyDataAttributesTypedDict",
1624
+ "SSHKeyDataType",
1625
+ "SSHKeyDataTypedDict",
1626
+ "SSHKeyTypedDict",
1627
+ "Security",
1628
+ "SecurityTypedDict",
1629
+ "Server",
1630
+ "Server1",
1631
+ "Server1TypedDict",
1632
+ "ServerAction",
1633
+ "ServerActionAttributes",
1634
+ "ServerActionAttributesTypedDict",
1635
+ "ServerActionData",
1636
+ "ServerActionDataTypedDict",
1637
+ "ServerActionMeta",
1638
+ "ServerActionMetaTypedDict",
1639
+ "ServerActionType",
1640
+ "ServerActionTypedDict",
1641
+ "ServerData",
1642
+ "ServerDataAttributes",
1643
+ "ServerDataAttributesTypedDict",
1644
+ "ServerDataFeatures",
1645
+ "ServerDataFeaturesTypedDict",
1646
+ "ServerDataPlan",
1647
+ "ServerDataPlanTypedDict",
1648
+ "ServerDataSpecs",
1649
+ "ServerDataSpecsTypedDict",
1650
+ "ServerDataTypedDict",
1651
+ "ServerError",
1652
+ "ServerErrorData",
1653
+ "ServerExitRescueModeRequest",
1654
+ "ServerExitRescueModeRequestTypedDict",
1655
+ "ServerLockRequest",
1656
+ "ServerLockRequestTypedDict",
1657
+ "ServerMeta",
1658
+ "ServerMetaTypedDict",
1659
+ "ServerRescue",
1660
+ "ServerRescueMeta",
1661
+ "ServerRescueMetaTypedDict",
1662
+ "ServerRescueTypedDict",
1663
+ "ServerScheduleDeletion",
1664
+ "ServerScheduleDeletionAttributes",
1665
+ "ServerScheduleDeletionAttributesTypedDict",
1666
+ "ServerScheduleDeletionData",
1667
+ "ServerScheduleDeletionDataTypedDict",
1668
+ "ServerScheduleDeletionRequest",
1669
+ "ServerScheduleDeletionRequestTypedDict",
1670
+ "ServerScheduleDeletionType",
1671
+ "ServerScheduleDeletionTypedDict",
1672
+ "ServerStartRescueModeRequest",
1673
+ "ServerStartRescueModeRequestTypedDict",
1674
+ "ServerTypedDict",
1675
+ "ServerUnlockRequest",
1676
+ "ServerUnlockRequestTypedDict",
1677
+ "ServerUnscheduleDeletionRequest",
1678
+ "ServerUnscheduleDeletionRequestTypedDict",
1679
+ "Servers",
1680
+ "ServersMeta",
1681
+ "ServersMetaTypedDict",
1682
+ "ServersTypedDict",
1683
+ "ShowVirtualMachineRequest",
1684
+ "ShowVirtualMachineRequestTypedDict",
1685
+ "Site",
1686
+ "SiteTypedDict",
1687
+ "Size",
1688
+ "SizeTypedDict",
1689
+ "Specs",
1690
+ "SpecsTypedDict",
1691
+ "Stats",
1692
+ "StatsTypedDict",
1693
+ "Status",
1694
+ "StockLevel",
1695
+ "StoragePlan",
1696
+ "StoragePlanData",
1697
+ "StoragePlanDataTypedDict",
1698
+ "StoragePlanPricing",
1699
+ "StoragePlanPricingTypedDict",
1700
+ "StoragePlanTypedDict",
1701
+ "StoragePlans",
1702
+ "StoragePlansTypedDict",
1703
+ "Target",
1704
+ "TargetTypedDict",
1705
+ "Team",
1706
+ "TeamAttributes",
1707
+ "TeamAttributesTypedDict",
1708
+ "TeamBilling",
1709
+ "TeamBillingTypedDict",
1710
+ "TeamInclude",
1711
+ "TeamIncludeTypedDict",
1712
+ "TeamMembers",
1713
+ "TeamMembersData",
1714
+ "TeamMembersDataTypedDict",
1715
+ "TeamMembersRole",
1716
+ "TeamMembersRoleTypedDict",
1717
+ "TeamMembersTypedDict",
1718
+ "TeamTypedDict",
1719
+ "Teams",
1720
+ "TeamsMeta",
1721
+ "TeamsMetaTypedDict",
1722
+ "TeamsTypedDict",
1723
+ "Traffic",
1724
+ "TrafficAttributes",
1725
+ "TrafficAttributesTypedDict",
1726
+ "TrafficData",
1727
+ "TrafficDataData",
1728
+ "TrafficDataDataTypedDict",
1729
+ "TrafficDataTypedDict",
1730
+ "TrafficQuota",
1731
+ "TrafficQuotaAttributes",
1732
+ "TrafficQuotaAttributesTypedDict",
1733
+ "TrafficQuotaData",
1734
+ "TrafficQuotaDataTypedDict",
1735
+ "TrafficQuotaType",
1736
+ "TrafficQuotaTypedDict",
1737
+ "TrafficRegions",
1738
+ "TrafficRegionsTypedDict",
1739
+ "TrafficType",
1740
+ "TrafficTypedDict",
1741
+ "Type",
1742
+ "Unit",
1743
+ "UpdateAPIKey",
1744
+ "UpdateAPIKeyAttributes",
1745
+ "UpdateAPIKeyAttributesTypedDict",
1746
+ "UpdateAPIKeyData",
1747
+ "UpdateAPIKeyDataTypedDict",
1748
+ "UpdateAPIKeyRequest",
1749
+ "UpdateAPIKeyRequestTypedDict",
1750
+ "UpdateAPIKeyResponseBody",
1751
+ "UpdateAPIKeyResponseBodyTypedDict",
1752
+ "UpdateAPIKeyType",
1753
+ "UpdateAPIKeyTypedDict",
1754
+ "UpdateFirewallFirewallsAttributes",
1755
+ "UpdateFirewallFirewallsAttributesTypedDict",
1756
+ "UpdateFirewallFirewallsData",
1757
+ "UpdateFirewallFirewallsDataTypedDict",
1758
+ "UpdateFirewallFirewallsProtocol",
1759
+ "UpdateFirewallFirewallsRequestBody",
1760
+ "UpdateFirewallFirewallsRequestBodyTypedDict",
1761
+ "UpdateFirewallFirewallsRules",
1762
+ "UpdateFirewallFirewallsRulesTypedDict",
1763
+ "UpdateFirewallFirewallsType",
1764
+ "UpdateFirewallRequest",
1765
+ "UpdateFirewallRequestTypedDict",
1766
+ "UpdatePlansBandwidthPlansAttributes",
1767
+ "UpdatePlansBandwidthPlansAttributesTypedDict",
1768
+ "UpdatePlansBandwidthPlansData",
1769
+ "UpdatePlansBandwidthPlansDataTypedDict",
1770
+ "UpdatePlansBandwidthPlansRequestBody",
1771
+ "UpdatePlansBandwidthPlansRequestBodyTypedDict",
1772
+ "UpdatePlansBandwidthPlansType",
1773
+ "UpdateProjectProjectsAttributes",
1774
+ "UpdateProjectProjectsAttributesTypedDict",
1775
+ "UpdateProjectProjectsData",
1776
+ "UpdateProjectProjectsDataTypedDict",
1777
+ "UpdateProjectProjectsEnvironment",
1778
+ "UpdateProjectProjectsRequestBody",
1779
+ "UpdateProjectProjectsRequestBodyTypedDict",
1780
+ "UpdateProjectProjectsType",
1781
+ "UpdateProjectRequest",
1782
+ "UpdateProjectRequestTypedDict",
1783
+ "UpdateProjectResponseBody",
1784
+ "UpdateProjectResponseBodyTypedDict",
1785
+ "UpdateServerDeployConfigPartitions",
1786
+ "UpdateServerDeployConfigPartitionsTypedDict",
1787
+ "UpdateServerDeployConfigRequest",
1788
+ "UpdateServerDeployConfigRequestTypedDict",
1789
+ "UpdateServerDeployConfigServersAttributes",
1790
+ "UpdateServerDeployConfigServersAttributesTypedDict",
1791
+ "UpdateServerDeployConfigServersOperatingSystem",
1792
+ "UpdateServerDeployConfigServersRaid",
1793
+ "UpdateServerDeployConfigServersRequestBody",
1794
+ "UpdateServerDeployConfigServersRequestBodyTypedDict",
1795
+ "UpdateServerDeployConfigServersType",
1796
+ "UpdateServerRequest",
1797
+ "UpdateServerRequestTypedDict",
1798
+ "UpdateServerServersAttributes",
1799
+ "UpdateServerServersAttributesTypedDict",
1800
+ "UpdateServerServersBilling",
1801
+ "UpdateServerServersRequestBody",
1802
+ "UpdateServerServersRequestBodyTypedDict",
1803
+ "UpdateServerServersType",
1804
+ "UpdateTagRequest",
1805
+ "UpdateTagRequestTypedDict",
1806
+ "UpdateTagTagsAttributes",
1807
+ "UpdateTagTagsAttributesTypedDict",
1808
+ "UpdateTagTagsData",
1809
+ "UpdateTagTagsDataTypedDict",
1810
+ "UpdateTagTagsRequestBody",
1811
+ "UpdateTagTagsRequestBodyTypedDict",
1812
+ "UpdateTagTagsType",
1813
+ "UpdateVirtualNetworkPrivateNetworksAttributes",
1814
+ "UpdateVirtualNetworkPrivateNetworksAttributesTypedDict",
1815
+ "UpdateVirtualNetworkPrivateNetworksData",
1816
+ "UpdateVirtualNetworkPrivateNetworksDataTypedDict",
1817
+ "UpdateVirtualNetworkPrivateNetworksRequestBody",
1818
+ "UpdateVirtualNetworkPrivateNetworksRequestBodyTypedDict",
1819
+ "UpdateVirtualNetworkPrivateNetworksType",
1820
+ "UpdateVirtualNetworkRequest",
1821
+ "UpdateVirtualNetworkRequestTypedDict",
1822
+ "UsageType",
1823
+ "Usd",
1824
+ "UsdTypedDict",
1825
+ "User",
1826
+ "UserAttributes",
1827
+ "UserAttributesTypedDict",
1828
+ "UserData",
1829
+ "UserDataProperties",
1830
+ "UserDataPropertiesAttributes",
1831
+ "UserDataPropertiesAttributesTypedDict",
1832
+ "UserDataPropertiesType",
1833
+ "UserDataPropertiesTypedDict",
1834
+ "UserDataTypedDict",
1835
+ "UserInclude",
1836
+ "UserIncludeRole",
1837
+ "UserIncludeRoleTypedDict",
1838
+ "UserIncludeTypedDict",
1839
+ "UserRole",
1840
+ "UserRoleTypedDict",
1841
+ "UserTeam",
1842
+ "UserTeamAttributes",
1843
+ "UserTeamAttributesTypedDict",
1844
+ "UserTeamBilling",
1845
+ "UserTeamBillingTypedDict",
1846
+ "UserTeamTypedDict",
1847
+ "UserTeams",
1848
+ "UserTeamsMeta",
1849
+ "UserTeamsMetaTypedDict",
1850
+ "UserTeamsTypedDict",
1851
+ "UserTypedDict",
1852
+ "UserUpdate",
1853
+ "UserUpdateAttributes",
1854
+ "UserUpdateAttributesTypedDict",
1855
+ "UserUpdateTypedDict",
1856
+ "VirtualMachine",
1857
+ "VirtualMachineMeta",
1858
+ "VirtualMachineMetaTypedDict",
1859
+ "VirtualMachinePayload",
1860
+ "VirtualMachinePayloadAttributes",
1861
+ "VirtualMachinePayloadAttributesTypedDict",
1862
+ "VirtualMachinePayloadData",
1863
+ "VirtualMachinePayloadDataTypedDict",
1864
+ "VirtualMachinePayloadType",
1865
+ "VirtualMachinePayloadTypedDict",
1866
+ "VirtualMachinePlans",
1867
+ "VirtualMachinePlansAttributes",
1868
+ "VirtualMachinePlansAttributesTypedDict",
1869
+ "VirtualMachinePlansBRL",
1870
+ "VirtualMachinePlansBRLTypedDict",
1871
+ "VirtualMachinePlansData",
1872
+ "VirtualMachinePlansDataType",
1873
+ "VirtualMachinePlansDataTypedDict",
1874
+ "VirtualMachinePlansPricing",
1875
+ "VirtualMachinePlansPricingTypedDict",
1876
+ "VirtualMachinePlansRegions",
1877
+ "VirtualMachinePlansRegionsTypedDict",
1878
+ "VirtualMachinePlansSpecs",
1879
+ "VirtualMachinePlansSpecsTypedDict",
1880
+ "VirtualMachinePlansStockLevel",
1881
+ "VirtualMachinePlansType",
1882
+ "VirtualMachinePlansTypedDict",
1883
+ "VirtualMachinePlansUSD",
1884
+ "VirtualMachinePlansUSDTypedDict",
1885
+ "VirtualMachinePlansUnit",
1886
+ "VirtualMachineTypedDict",
1887
+ "VirtualNetwork",
1888
+ "VirtualNetwork1",
1889
+ "VirtualNetwork1TypedDict",
1890
+ "VirtualNetworkAssignment",
1891
+ "VirtualNetworkAssignmentAttributes",
1892
+ "VirtualNetworkAssignmentAttributesTypedDict",
1893
+ "VirtualNetworkAssignmentTypedDict",
1894
+ "VirtualNetworkAssignments",
1895
+ "VirtualNetworkAssignmentsMeta",
1896
+ "VirtualNetworkAssignmentsMetaTypedDict",
1897
+ "VirtualNetworkAssignmentsTypedDict",
1898
+ "VirtualNetworkAttributes",
1899
+ "VirtualNetworkAttributes1",
1900
+ "VirtualNetworkAttributes1TypedDict",
1901
+ "VirtualNetworkAttributesRegion",
1902
+ "VirtualNetworkAttributesRegionTypedDict",
1903
+ "VirtualNetworkAttributesSite",
1904
+ "VirtualNetworkAttributesSiteTypedDict",
1905
+ "VirtualNetworkAttributesTypedDict",
1906
+ "VirtualNetworkError",
1907
+ "VirtualNetworkErrorData",
1908
+ "VirtualNetworkRegion",
1909
+ "VirtualNetworkRegionTypedDict",
1910
+ "VirtualNetworkSite",
1911
+ "VirtualNetworkSiteTypedDict",
1912
+ "VirtualNetworkType",
1913
+ "VirtualNetworkType1",
1914
+ "VirtualNetworkTypedDict",
1915
+ "VirtualNetworks",
1916
+ "VirtualNetworksMeta",
1917
+ "VirtualNetworksMetaTypedDict",
1918
+ "VirtualNetworksTypedDict",
1919
+ "VpnSessionDataWithPassword",
1920
+ "VpnSessionDataWithPasswordAttributes",
1921
+ "VpnSessionDataWithPasswordAttributesTypedDict",
1922
+ "VpnSessionDataWithPasswordStatus",
1923
+ "VpnSessionDataWithPasswordType",
1924
+ "VpnSessionDataWithPasswordTypedDict",
1925
+ "VpnSessionWithPassword",
1926
+ "VpnSessionWithPasswordTypedDict",
1927
+ ]