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,23 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteProjectSSHKeyRequestTypedDict(TypedDict):
|
|
10
|
+
project_id: str
|
|
11
|
+
r"""Project ID or Slug"""
|
|
12
|
+
ssh_key_id: str
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class DeleteProjectSSHKeyRequest(BaseModel):
|
|
16
|
+
project_id: Annotated[
|
|
17
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
18
|
+
]
|
|
19
|
+
r"""Project ID or Slug"""
|
|
20
|
+
|
|
21
|
+
ssh_key_id: Annotated[
|
|
22
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
23
|
+
]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteProjectUserDataRequestTypedDict(TypedDict):
|
|
10
|
+
project_id: str
|
|
11
|
+
r"""Project ID or Slug"""
|
|
12
|
+
user_data_id: str
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class DeleteProjectUserDataRequest(BaseModel):
|
|
16
|
+
project_id: Annotated[
|
|
17
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
18
|
+
]
|
|
19
|
+
r"""Project ID or Slug"""
|
|
20
|
+
|
|
21
|
+
user_data_id: Annotated[
|
|
22
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
23
|
+
]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteProjectRequestTypedDict(TypedDict):
|
|
10
|
+
project_id: str
|
|
11
|
+
r"""The project ID or Slug"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class DeleteProjectRequest(BaseModel):
|
|
15
|
+
project_id: Annotated[
|
|
16
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
17
|
+
]
|
|
18
|
+
r"""The project ID or Slug"""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteSSHKeyRequestTypedDict(TypedDict):
|
|
10
|
+
ssh_key_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DeleteSSHKeyRequest(BaseModel):
|
|
14
|
+
ssh_key_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteStorageFilesystemsRequestTypedDict(TypedDict):
|
|
10
|
+
filesystem_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DeleteStorageFilesystemsRequest(BaseModel):
|
|
14
|
+
filesystem_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteStorageVolumesRequestTypedDict(TypedDict):
|
|
10
|
+
id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DeleteStorageVolumesRequest(BaseModel):
|
|
14
|
+
id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteUserDataRequestTypedDict(TypedDict):
|
|
10
|
+
user_data_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DeleteUserDataRequest(BaseModel):
|
|
14
|
+
user_data_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteVirtualNetworksAssignmentsRequestTypedDict(TypedDict):
|
|
10
|
+
assignment_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DeleteVirtualNetworksAssignmentsRequest(BaseModel):
|
|
14
|
+
assignment_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DeleteVpnSessionRequestTypedDict(TypedDict):
|
|
10
|
+
vpn_session_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DeleteVpnSessionRequest(BaseModel):
|
|
14
|
+
vpn_session_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from typing import List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class PartitionsTypedDict(TypedDict):
|
|
10
|
+
path: NotRequired[str]
|
|
11
|
+
size_in_gb: NotRequired[int]
|
|
12
|
+
filesystem_type: NotRequired[str]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Partitions(BaseModel):
|
|
16
|
+
path: Optional[str] = None
|
|
17
|
+
|
|
18
|
+
size_in_gb: Optional[int] = None
|
|
19
|
+
|
|
20
|
+
filesystem_type: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class DeployConfigAttributesTypedDict(TypedDict):
|
|
24
|
+
operating_system: NotRequired[str]
|
|
25
|
+
hostname: NotRequired[str]
|
|
26
|
+
raid: NotRequired[str]
|
|
27
|
+
user_data: NotRequired[str]
|
|
28
|
+
ssh_keys: NotRequired[List[str]]
|
|
29
|
+
partitions: NotRequired[List[PartitionsTypedDict]]
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class DeployConfigAttributes(BaseModel):
|
|
33
|
+
operating_system: Optional[str] = None
|
|
34
|
+
|
|
35
|
+
hostname: Optional[str] = None
|
|
36
|
+
|
|
37
|
+
raid: Optional[str] = None
|
|
38
|
+
|
|
39
|
+
user_data: Optional[str] = None
|
|
40
|
+
|
|
41
|
+
ssh_keys: Optional[List[str]] = None
|
|
42
|
+
|
|
43
|
+
partitions: Optional[List[Partitions]] = None
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class DeployConfigDataTypedDict(TypedDict):
|
|
47
|
+
id: NotRequired[str]
|
|
48
|
+
attributes: NotRequired[DeployConfigAttributesTypedDict]
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class DeployConfigData(BaseModel):
|
|
52
|
+
id: Optional[str] = None
|
|
53
|
+
|
|
54
|
+
attributes: Optional[DeployConfigAttributes] = None
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class DeployConfigTypedDict(TypedDict):
|
|
58
|
+
data: NotRequired[DeployConfigDataTypedDict]
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class DeployConfig(BaseModel):
|
|
62
|
+
data: Optional[DeployConfigData] = None
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import (
|
|
6
|
+
FieldMetadata,
|
|
7
|
+
PathParamMetadata,
|
|
8
|
+
QueryParamMetadata,
|
|
9
|
+
)
|
|
10
|
+
from typing import Optional
|
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class DestroyServerRequestTypedDict(TypedDict):
|
|
15
|
+
server_id: str
|
|
16
|
+
r"""The server ID"""
|
|
17
|
+
reason: NotRequired[str]
|
|
18
|
+
r"""The reason for deleting the server"""
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class DestroyServerRequest(BaseModel):
|
|
22
|
+
server_id: Annotated[
|
|
23
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
24
|
+
]
|
|
25
|
+
r"""The server ID"""
|
|
26
|
+
|
|
27
|
+
reason: Annotated[
|
|
28
|
+
Optional[str],
|
|
29
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
30
|
+
] = None
|
|
31
|
+
r"""The reason for deleting the server"""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DestroyTagRequestTypedDict(TypedDict):
|
|
10
|
+
tag_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DestroyTagRequest(BaseModel):
|
|
14
|
+
tag_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DestroyTeamMemberRequestTypedDict(TypedDict):
|
|
10
|
+
user_id: str
|
|
11
|
+
r"""The user ID"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class DestroyTeamMemberRequest(BaseModel):
|
|
15
|
+
user_id: Annotated[
|
|
16
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
17
|
+
]
|
|
18
|
+
r"""The user ID"""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DestroyVirtualMachineRequestTypedDict(TypedDict):
|
|
10
|
+
virtual_machine_id: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DestroyVirtualMachineRequest(BaseModel):
|
|
14
|
+
virtual_machine_id: Annotated[
|
|
15
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
16
|
+
]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
5
|
+
from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DestroyVirtualNetworkRequestTypedDict(TypedDict):
|
|
10
|
+
vlan_id: str
|
|
11
|
+
r"""The virtual network ID"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class DestroyVirtualNetworkRequest(BaseModel):
|
|
15
|
+
vlan_id: Annotated[
|
|
16
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
17
|
+
]
|
|
18
|
+
r"""The virtual network ID"""
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from enum import Enum
|
|
5
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
6
|
+
from typing import Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class EventDataType(str, Enum):
|
|
11
|
+
EVENTS = "events"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class AuthorTypedDict(TypedDict):
|
|
15
|
+
id: NotRequired[str]
|
|
16
|
+
name: NotRequired[str]
|
|
17
|
+
email: NotRequired[str]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class Author(BaseModel):
|
|
21
|
+
id: Optional[str] = None
|
|
22
|
+
|
|
23
|
+
name: Optional[str] = None
|
|
24
|
+
|
|
25
|
+
email: Optional[str] = None
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class EventDataProjectTypedDict(TypedDict):
|
|
29
|
+
id: NotRequired[str]
|
|
30
|
+
name: NotRequired[str]
|
|
31
|
+
slug: NotRequired[str]
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class EventDataProject(BaseModel):
|
|
35
|
+
id: Optional[str] = None
|
|
36
|
+
|
|
37
|
+
name: Optional[str] = None
|
|
38
|
+
|
|
39
|
+
slug: Optional[str] = None
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class EventDataTeamTypedDict(TypedDict):
|
|
43
|
+
id: NotRequired[str]
|
|
44
|
+
name: NotRequired[str]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class EventDataTeam(BaseModel):
|
|
48
|
+
id: Optional[str] = None
|
|
49
|
+
|
|
50
|
+
name: Optional[str] = None
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class TargetTypedDict(TypedDict):
|
|
54
|
+
id: NotRequired[str]
|
|
55
|
+
name: NotRequired[str]
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
class Target(BaseModel):
|
|
59
|
+
id: Optional[str] = None
|
|
60
|
+
|
|
61
|
+
name: Optional[str] = None
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
class EventDataAttributesTypedDict(TypedDict):
|
|
65
|
+
action: NotRequired[str]
|
|
66
|
+
created_at: NotRequired[str]
|
|
67
|
+
author: NotRequired[AuthorTypedDict]
|
|
68
|
+
project: NotRequired[EventDataProjectTypedDict]
|
|
69
|
+
team: NotRequired[EventDataTeamTypedDict]
|
|
70
|
+
target: NotRequired[TargetTypedDict]
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class EventDataAttributes(BaseModel):
|
|
74
|
+
action: Optional[str] = None
|
|
75
|
+
|
|
76
|
+
created_at: Optional[str] = None
|
|
77
|
+
|
|
78
|
+
author: Optional[Author] = None
|
|
79
|
+
|
|
80
|
+
project: Optional[EventDataProject] = None
|
|
81
|
+
|
|
82
|
+
team: Optional[EventDataTeam] = None
|
|
83
|
+
|
|
84
|
+
target: Optional[Target] = None
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class EventDataTypedDict(TypedDict):
|
|
88
|
+
id: NotRequired[str]
|
|
89
|
+
type: NotRequired[EventDataType]
|
|
90
|
+
attributes: NotRequired[EventDataAttributesTypedDict]
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
class EventData(BaseModel):
|
|
94
|
+
id: Optional[str] = None
|
|
95
|
+
|
|
96
|
+
type: Optional[EventDataType] = None
|
|
97
|
+
|
|
98
|
+
attributes: Optional[EventDataAttributes] = None
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .event_data import EventData, EventDataTypedDict
|
|
5
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class MetaTypedDict(TypedDict):
|
|
11
|
+
pass
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class Meta(BaseModel):
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class EventsTypedDict(TypedDict):
|
|
19
|
+
data: NotRequired[List[EventDataTypedDict]]
|
|
20
|
+
meta: NotRequired[MetaTypedDict]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class Events(BaseModel):
|
|
24
|
+
data: Optional[List[EventData]] = None
|
|
25
|
+
|
|
26
|
+
meta: Optional[Meta] = None
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
from enum import Enum
|
|
6
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
7
|
+
from typing import Optional
|
|
8
|
+
from typing_extensions import NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FilesystemDataType(str, Enum):
|
|
12
|
+
FILESYSTEMS = "filesystems"
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class FilesystemDataProjectTypedDict(TypedDict):
|
|
16
|
+
id: NotRequired[str]
|
|
17
|
+
name: NotRequired[str]
|
|
18
|
+
slug: NotRequired[str]
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class FilesystemDataProject(BaseModel):
|
|
22
|
+
id: Optional[str] = None
|
|
23
|
+
|
|
24
|
+
name: Optional[str] = None
|
|
25
|
+
|
|
26
|
+
slug: Optional[str] = None
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class FilesystemDataAttributesTypedDict(TypedDict):
|
|
30
|
+
name: NotRequired[str]
|
|
31
|
+
size_in_gb: NotRequired[int]
|
|
32
|
+
created_at: NotRequired[datetime]
|
|
33
|
+
project: NotRequired[FilesystemDataProjectTypedDict]
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class FilesystemDataAttributes(BaseModel):
|
|
37
|
+
name: Optional[str] = None
|
|
38
|
+
|
|
39
|
+
size_in_gb: Optional[int] = None
|
|
40
|
+
|
|
41
|
+
created_at: Optional[datetime] = None
|
|
42
|
+
|
|
43
|
+
project: Optional[FilesystemDataProject] = None
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class FilesystemDataTypedDict(TypedDict):
|
|
47
|
+
id: NotRequired[str]
|
|
48
|
+
type: NotRequired[FilesystemDataType]
|
|
49
|
+
attributes: NotRequired[FilesystemDataAttributesTypedDict]
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class FilesystemData(BaseModel):
|
|
53
|
+
id: Optional[str] = None
|
|
54
|
+
|
|
55
|
+
type: Optional[FilesystemDataType] = None
|
|
56
|
+
|
|
57
|
+
attributes: Optional[FilesystemDataAttributes] = None
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .firewall_data import FirewallData, FirewallDataTypedDict
|
|
5
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
6
|
+
from typing import Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class FirewallMetaTypedDict(TypedDict):
|
|
11
|
+
pass
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class FirewallMeta(BaseModel):
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class FirewallTypedDict(TypedDict):
|
|
19
|
+
data: NotRequired[FirewallDataTypedDict]
|
|
20
|
+
meta: NotRequired[FirewallMetaTypedDict]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class Firewall(BaseModel):
|
|
24
|
+
data: Optional[FirewallData] = None
|
|
25
|
+
|
|
26
|
+
meta: Optional[FirewallMeta] = None
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from enum import Enum
|
|
5
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
6
|
+
from typing import Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class FirewallAssignmentDataType(str, Enum):
|
|
11
|
+
FIREWALL_ASSIGNMENTS = "firewall_assignments"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class FirewallAssignmentDataServerTypedDict(TypedDict):
|
|
15
|
+
id: NotRequired[str]
|
|
16
|
+
primary_ipv4: NotRequired[str]
|
|
17
|
+
hostname: NotRequired[str]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class FirewallAssignmentDataServer(BaseModel):
|
|
21
|
+
id: Optional[str] = None
|
|
22
|
+
|
|
23
|
+
primary_ipv4: Optional[str] = None
|
|
24
|
+
|
|
25
|
+
hostname: Optional[str] = None
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class FirewallAssignmentDataAttributesTypedDict(TypedDict):
|
|
29
|
+
server: NotRequired[FirewallAssignmentDataServerTypedDict]
|
|
30
|
+
firewall_id: NotRequired[str]
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class FirewallAssignmentDataAttributes(BaseModel):
|
|
34
|
+
server: Optional[FirewallAssignmentDataServer] = None
|
|
35
|
+
|
|
36
|
+
firewall_id: Optional[str] = None
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class FirewallAssignmentDataTypedDict(TypedDict):
|
|
40
|
+
id: NotRequired[str]
|
|
41
|
+
type: NotRequired[FirewallAssignmentDataType]
|
|
42
|
+
attributes: NotRequired[FirewallAssignmentDataAttributesTypedDict]
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class FirewallAssignmentData(BaseModel):
|
|
46
|
+
id: Optional[str] = None
|
|
47
|
+
|
|
48
|
+
type: Optional[FirewallAssignmentDataType] = None
|
|
49
|
+
|
|
50
|
+
attributes: Optional[FirewallAssignmentDataAttributes] = None
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .firewall_assignment_data import (
|
|
5
|
+
FirewallAssignmentData,
|
|
6
|
+
FirewallAssignmentDataTypedDict,
|
|
7
|
+
)
|
|
8
|
+
from latitudesh_python_sdk.types import BaseModel
|
|
9
|
+
from typing import List, Optional
|
|
10
|
+
from typing_extensions import NotRequired, TypedDict
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class FirewallAssignmentsMetaTypedDict(TypedDict):
|
|
14
|
+
pass
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class FirewallAssignmentsMeta(BaseModel):
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class FirewallAssignmentsTypedDict(TypedDict):
|
|
22
|
+
data: NotRequired[List[FirewallAssignmentDataTypedDict]]
|
|
23
|
+
meta: NotRequired[FirewallAssignmentsMetaTypedDict]
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class FirewallAssignments(BaseModel):
|
|
27
|
+
data: Optional[List[FirewallAssignmentData]] = None
|
|
28
|
+
|
|
29
|
+
meta: Optional[FirewallAssignmentsMeta] = None
|