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