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.
Files changed (242) hide show
  1. latitudesh_python_sdk/__init__.py +18 -0
  2. latitudesh_python_sdk/_hooks/__init__.py +5 -0
  3. latitudesh_python_sdk/_hooks/registration.py +13 -0
  4. latitudesh_python_sdk/_hooks/sdkhooks.py +76 -0
  5. latitudesh_python_sdk/_hooks/types.py +113 -0
  6. latitudesh_python_sdk/_version.py +17 -0
  7. latitudesh_python_sdk/apikeys.py +703 -0
  8. latitudesh_python_sdk/basesdk.py +374 -0
  9. latitudesh_python_sdk/billing.py +197 -0
  10. latitudesh_python_sdk/events_sdk.py +298 -0
  11. latitudesh_python_sdk/firewalls_sdk.py +1786 -0
  12. latitudesh_python_sdk/httpclient.py +125 -0
  13. latitudesh_python_sdk/ipaddresses_sdk.py +470 -0
  14. latitudesh_python_sdk/models/__init__.py +3581 -0
  15. latitudesh_python_sdk/models/api_key.py +81 -0
  16. latitudesh_python_sdk/models/apierror.py +40 -0
  17. latitudesh_python_sdk/models/assign_server_virtual_networkop.py +43 -0
  18. latitudesh_python_sdk/models/bandwidth_packages.py +67 -0
  19. latitudesh_python_sdk/models/bandwidth_plan_data.py +72 -0
  20. latitudesh_python_sdk/models/bandwidth_plans.py +26 -0
  21. latitudesh_python_sdk/models/billing_usage.py +249 -0
  22. latitudesh_python_sdk/models/container_plan_data.py +163 -0
  23. latitudesh_python_sdk/models/create_api_key.py +40 -0
  24. latitudesh_python_sdk/models/create_firewall_assignmentop.py +61 -0
  25. latitudesh_python_sdk/models/create_firewallop.py +73 -0
  26. latitudesh_python_sdk/models/create_ipmi_sessionop.py +16 -0
  27. latitudesh_python_sdk/models/create_projectop.py +79 -0
  28. latitudesh_python_sdk/models/create_server_actionop.py +69 -0
  29. latitudesh_python_sdk/models/create_server_out_of_bandop.py +61 -0
  30. latitudesh_python_sdk/models/create_server_reinstallop.py +140 -0
  31. latitudesh_python_sdk/models/create_serverop.py +173 -0
  32. latitudesh_python_sdk/models/create_tagop.py +50 -0
  33. latitudesh_python_sdk/models/create_virtual_machine_actionop.py +63 -0
  34. latitudesh_python_sdk/models/create_virtual_networkop.py +72 -0
  35. latitudesh_python_sdk/models/custom_tag.py +26 -0
  36. latitudesh_python_sdk/models/custom_tag_data.py +54 -0
  37. latitudesh_python_sdk/models/custom_tags.py +26 -0
  38. latitudesh_python_sdk/models/delete_api_keyop.py +16 -0
  39. latitudesh_python_sdk/models/delete_firewall_assignmentop.py +25 -0
  40. latitudesh_python_sdk/models/delete_firewallop.py +18 -0
  41. latitudesh_python_sdk/models/delete_project_ssh_keyop.py +23 -0
  42. latitudesh_python_sdk/models/delete_project_user_dataop.py +23 -0
  43. latitudesh_python_sdk/models/delete_projectop.py +18 -0
  44. latitudesh_python_sdk/models/delete_ssh_keyop.py +16 -0
  45. latitudesh_python_sdk/models/delete_storage_filesystemsop.py +16 -0
  46. latitudesh_python_sdk/models/delete_storage_volumesop.py +16 -0
  47. latitudesh_python_sdk/models/delete_user_dataop.py +16 -0
  48. latitudesh_python_sdk/models/delete_virtual_networks_assignmentsop.py +16 -0
  49. latitudesh_python_sdk/models/delete_vpn_sessionop.py +16 -0
  50. latitudesh_python_sdk/models/deploy_config.py +62 -0
  51. latitudesh_python_sdk/models/destroy_serverop.py +31 -0
  52. latitudesh_python_sdk/models/destroy_tagop.py +16 -0
  53. latitudesh_python_sdk/models/destroy_team_memberop.py +18 -0
  54. latitudesh_python_sdk/models/destroy_virtual_machineop.py +16 -0
  55. latitudesh_python_sdk/models/destroy_virtual_networkop.py +18 -0
  56. latitudesh_python_sdk/models/event_data.py +98 -0
  57. latitudesh_python_sdk/models/events.py +26 -0
  58. latitudesh_python_sdk/models/filesystem_data.py +57 -0
  59. latitudesh_python_sdk/models/firewall.py +26 -0
  60. latitudesh_python_sdk/models/firewall_assignment_data.py +50 -0
  61. latitudesh_python_sdk/models/firewall_assignments.py +29 -0
  62. latitudesh_python_sdk/models/firewall_data.py +75 -0
  63. latitudesh_python_sdk/models/firewall_server.py +36 -0
  64. latitudesh_python_sdk/models/firewalls.py +26 -0
  65. latitudesh_python_sdk/models/get_all_firewall_assignmentsop.py +51 -0
  66. latitudesh_python_sdk/models/get_bandwidth_plansop.py +62 -0
  67. latitudesh_python_sdk/models/get_billing_usageop.py +46 -0
  68. latitudesh_python_sdk/models/get_containers_planop.py +18 -0
  69. latitudesh_python_sdk/models/get_eventsop.py +126 -0
  70. latitudesh_python_sdk/models/get_firewall_assignmentsop.py +53 -0
  71. latitudesh_python_sdk/models/get_firewallop.py +18 -0
  72. latitudesh_python_sdk/models/get_ipop.py +33 -0
  73. latitudesh_python_sdk/models/get_ipsop.py +120 -0
  74. latitudesh_python_sdk/models/get_planop.py +16 -0
  75. latitudesh_python_sdk/models/get_plans_operating_systemop.py +54 -0
  76. latitudesh_python_sdk/models/get_plansop.py +125 -0
  77. latitudesh_python_sdk/models/get_project_ssh_keyop.py +37 -0
  78. latitudesh_python_sdk/models/get_project_ssh_keysop.py +33 -0
  79. latitudesh_python_sdk/models/get_project_user_dataop.py +38 -0
  80. latitudesh_python_sdk/models/get_project_users_dataop.py +46 -0
  81. latitudesh_python_sdk/models/get_projectsop.py +105 -0
  82. latitudesh_python_sdk/models/get_regionop.py +18 -0
  83. latitudesh_python_sdk/models/get_regionsop.py +42 -0
  84. latitudesh_python_sdk/models/get_role_idop.py +16 -0
  85. latitudesh_python_sdk/models/get_rolesop.py +54 -0
  86. latitudesh_python_sdk/models/get_server_deploy_configop.py +18 -0
  87. latitudesh_python_sdk/models/get_server_out_of_bandop.py +18 -0
  88. latitudesh_python_sdk/models/get_serverop.py +33 -0
  89. latitudesh_python_sdk/models/get_serversop.py +185 -0
  90. latitudesh_python_sdk/models/get_ssh_keyop.py +30 -0
  91. latitudesh_python_sdk/models/get_ssh_keysop.py +31 -0
  92. latitudesh_python_sdk/models/get_storage_filesystemsop.py +22 -0
  93. latitudesh_python_sdk/models/get_storage_volumeop.py +32 -0
  94. latitudesh_python_sdk/models/get_storage_volumesop.py +35 -0
  95. latitudesh_python_sdk/models/get_team_membersop.py +42 -0
  96. latitudesh_python_sdk/models/get_traffic_consumptionop.py +49 -0
  97. latitudesh_python_sdk/models/get_traffic_quotaop.py +20 -0
  98. latitudesh_python_sdk/models/get_user_dataop.py +31 -0
  99. latitudesh_python_sdk/models/get_user_profileop.py +19 -0
  100. latitudesh_python_sdk/models/get_users_dataop.py +44 -0
  101. latitudesh_python_sdk/models/get_virtual_networkop.py +32 -0
  102. latitudesh_python_sdk/models/get_virtual_networks_assignmentsop.py +72 -0
  103. latitudesh_python_sdk/models/get_virtual_networksop.py +69 -0
  104. latitudesh_python_sdk/models/get_vpn_sessionsop.py +70 -0
  105. latitudesh_python_sdk/models/index_virtual_machineop.py +31 -0
  106. latitudesh_python_sdk/models/ip_address.py +122 -0
  107. latitudesh_python_sdk/models/ip_addresses.py +15 -0
  108. latitudesh_python_sdk/models/ipmi_session.py +53 -0
  109. latitudesh_python_sdk/models/latitudesherror.py +30 -0
  110. latitudesh_python_sdk/models/list_firewallsop.py +49 -0
  111. latitudesh_python_sdk/models/membership.py +63 -0
  112. latitudesh_python_sdk/models/no_response_error.py +17 -0
  113. latitudesh_python_sdk/models/operating_system_data.py +65 -0
  114. latitudesh_python_sdk/models/operating_systems.py +26 -0
  115. latitudesh_python_sdk/models/out_of_band_connection.py +88 -0
  116. latitudesh_python_sdk/models/patch_current_teamop.py +91 -0
  117. latitudesh_python_sdk/models/patch_storage_filesystemsop.py +79 -0
  118. latitudesh_python_sdk/models/patch_user_dataop.py +69 -0
  119. latitudesh_python_sdk/models/patch_user_profileop.py +88 -0
  120. latitudesh_python_sdk/models/plan.py +15 -0
  121. latitudesh_python_sdk/models/plan_data.py +210 -0
  122. latitudesh_python_sdk/models/post_api_keyop.py +19 -0
  123. latitudesh_python_sdk/models/post_project_ssh_keyop.py +81 -0
  124. latitudesh_python_sdk/models/post_project_user_dataop.py +68 -0
  125. latitudesh_python_sdk/models/post_ssh_keyop.py +63 -0
  126. latitudesh_python_sdk/models/post_storage_filesystemsop.py +63 -0
  127. latitudesh_python_sdk/models/post_storage_volumes_mountop.py +62 -0
  128. latitudesh_python_sdk/models/post_storage_volumesop.py +63 -0
  129. latitudesh_python_sdk/models/post_team_membersop.py +54 -0
  130. latitudesh_python_sdk/models/post_teamop.py +67 -0
  131. latitudesh_python_sdk/models/post_user_dataop.py +50 -0
  132. latitudesh_python_sdk/models/post_vpn_sessionop.py +63 -0
  133. latitudesh_python_sdk/models/project.py +131 -0
  134. latitudesh_python_sdk/models/project_include.py +75 -0
  135. latitudesh_python_sdk/models/projects.py +15 -0
  136. latitudesh_python_sdk/models/put_project_ssh_keyop.py +87 -0
  137. latitudesh_python_sdk/models/put_project_user_dataop.py +76 -0
  138. latitudesh_python_sdk/models/put_ssh_keyop.py +80 -0
  139. latitudesh_python_sdk/models/put_vpn_sessionop.py +16 -0
  140. latitudesh_python_sdk/models/region.py +50 -0
  141. latitudesh_python_sdk/models/region_resource_data.py +37 -0
  142. latitudesh_python_sdk/models/regions.py +50 -0
  143. latitudesh_python_sdk/models/responsevalidationerror.py +27 -0
  144. latitudesh_python_sdk/models/role.py +26 -0
  145. latitudesh_python_sdk/models/role_data.py +35 -0
  146. latitudesh_python_sdk/models/security.py +25 -0
  147. latitudesh_python_sdk/models/server.py +26 -0
  148. latitudesh_python_sdk/models/server_action.py +52 -0
  149. latitudesh_python_sdk/models/server_data.py +280 -0
  150. latitudesh_python_sdk/models/server_exit_rescue_modeop.py +16 -0
  151. latitudesh_python_sdk/models/server_lockop.py +16 -0
  152. latitudesh_python_sdk/models/server_region_resource_data.py +40 -0
  153. latitudesh_python_sdk/models/server_rescue.py +22 -0
  154. latitudesh_python_sdk/models/server_schedule_deletion.py +44 -0
  155. latitudesh_python_sdk/models/server_schedule_deletionop.py +16 -0
  156. latitudesh_python_sdk/models/server_start_rescue_modeop.py +16 -0
  157. latitudesh_python_sdk/models/server_unlockop.py +16 -0
  158. latitudesh_python_sdk/models/server_unschedule_deletionop.py +16 -0
  159. latitudesh_python_sdk/models/servers.py +26 -0
  160. latitudesh_python_sdk/models/show_virtual_machineop.py +16 -0
  161. latitudesh_python_sdk/models/ssh_key_data.py +55 -0
  162. latitudesh_python_sdk/models/ssh_keys.py +26 -0
  163. latitudesh_python_sdk/models/storage_plan_data.py +47 -0
  164. latitudesh_python_sdk/models/storage_plans.py +26 -0
  165. latitudesh_python_sdk/models/team.py +74 -0
  166. latitudesh_python_sdk/models/team_include.py +43 -0
  167. latitudesh_python_sdk/models/team_members.py +51 -0
  168. latitudesh_python_sdk/models/teams.py +26 -0
  169. latitudesh_python_sdk/models/traffic.py +133 -0
  170. latitudesh_python_sdk/models/traffic_quota.py +106 -0
  171. latitudesh_python_sdk/models/update_api_key.py +48 -0
  172. latitudesh_python_sdk/models/update_api_keyop.py +41 -0
  173. latitudesh_python_sdk/models/update_firewallop.py +89 -0
  174. latitudesh_python_sdk/models/update_plans_bandwidthop.py +50 -0
  175. latitudesh_python_sdk/models/update_projectop.py +95 -0
  176. latitudesh_python_sdk/models/update_server_deploy_configop.py +122 -0
  177. latitudesh_python_sdk/models/update_serverop.py +85 -0
  178. latitudesh_python_sdk/models/update_tagop.py +74 -0
  179. latitudesh_python_sdk/models/update_virtual_networkop.py +67 -0
  180. latitudesh_python_sdk/models/user.py +59 -0
  181. latitudesh_python_sdk/models/user_data.py +26 -0
  182. latitudesh_python_sdk/models/user_data_properties.py +46 -0
  183. latitudesh_python_sdk/models/user_include.py +52 -0
  184. latitudesh_python_sdk/models/user_team.py +61 -0
  185. latitudesh_python_sdk/models/user_teams.py +26 -0
  186. latitudesh_python_sdk/models/user_update.py +37 -0
  187. latitudesh_python_sdk/models/virtual_machine.py +29 -0
  188. latitudesh_python_sdk/models/virtual_machine_attributes.py +115 -0
  189. latitudesh_python_sdk/models/virtual_machine_payload.py +47 -0
  190. latitudesh_python_sdk/models/virtual_machine_plans.py +181 -0
  191. latitudesh_python_sdk/models/virtual_network.py +26 -0
  192. latitudesh_python_sdk/models/virtual_network_assignment.py +29 -0
  193. latitudesh_python_sdk/models/virtual_network_assignment_data.py +65 -0
  194. latitudesh_python_sdk/models/virtual_network_assignments.py +29 -0
  195. latitudesh_python_sdk/models/virtual_network_data.py +114 -0
  196. latitudesh_python_sdk/models/virtual_networks.py +26 -0
  197. latitudesh_python_sdk/models/volume_data.py +111 -0
  198. latitudesh_python_sdk/models/vpn_session_data_with_password.py +77 -0
  199. latitudesh_python_sdk/models/vpn_session_with_password.py +18 -0
  200. latitudesh_python_sdk/operatingsystems_sdk.py +238 -0
  201. latitudesh_python_sdk/plans.py +1304 -0
  202. latitudesh_python_sdk/privatenetworks.py +1612 -0
  203. latitudesh_python_sdk/projects_sdk.py +830 -0
  204. latitudesh_python_sdk/py.typed +1 -0
  205. latitudesh_python_sdk/regions_sdk.py +398 -0
  206. latitudesh_python_sdk/roles.py +398 -0
  207. latitudesh_python_sdk/sdk.py +264 -0
  208. latitudesh_python_sdk/sdkconfiguration.py +50 -0
  209. latitudesh_python_sdk/servers_sdk.py +3414 -0
  210. latitudesh_python_sdk/sshkeys_sdk.py +1882 -0
  211. latitudesh_python_sdk/storage.py +1651 -0
  212. latitudesh_python_sdk/tags.py +715 -0
  213. latitudesh_python_sdk/teams_sdk.py +527 -0
  214. latitudesh_python_sdk/teamsmembers.py +576 -0
  215. latitudesh_python_sdk/traffic_sdk.py +357 -0
  216. latitudesh_python_sdk/types/__init__.py +21 -0
  217. latitudesh_python_sdk/types/basemodel.py +39 -0
  218. latitudesh_python_sdk/userdata_sdk.py +1888 -0
  219. latitudesh_python_sdk/userprofile.py +531 -0
  220. latitudesh_python_sdk/utils/__init__.py +200 -0
  221. latitudesh_python_sdk/utils/annotations.py +79 -0
  222. latitudesh_python_sdk/utils/datetimes.py +23 -0
  223. latitudesh_python_sdk/utils/enums.py +74 -0
  224. latitudesh_python_sdk/utils/eventstreaming.py +248 -0
  225. latitudesh_python_sdk/utils/forms.py +234 -0
  226. latitudesh_python_sdk/utils/headers.py +136 -0
  227. latitudesh_python_sdk/utils/logger.py +27 -0
  228. latitudesh_python_sdk/utils/metadata.py +118 -0
  229. latitudesh_python_sdk/utils/queryparams.py +217 -0
  230. latitudesh_python_sdk/utils/requestbodies.py +66 -0
  231. latitudesh_python_sdk/utils/retries.py +281 -0
  232. latitudesh_python_sdk/utils/security.py +192 -0
  233. latitudesh_python_sdk/utils/serializers.py +249 -0
  234. latitudesh_python_sdk/utils/unmarshal_json_response.py +38 -0
  235. latitudesh_python_sdk/utils/url.py +155 -0
  236. latitudesh_python_sdk/utils/values.py +137 -0
  237. latitudesh_python_sdk/virtualmachines.py +941 -0
  238. latitudesh_python_sdk/vpnsessions.py +715 -0
  239. latitudesh_python_sdk-2.3.0.dist-info/METADATA +787 -0
  240. latitudesh_python_sdk-2.3.0.dist-info/RECORD +242 -0
  241. latitudesh_python_sdk-2.3.0.dist-info/WHEEL +4 -0
  242. latitudesh_python_sdk-2.3.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,185 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .servers import Servers, ServersTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, QueryParamMetadata
7
+ import pydantic
8
+ from typing import Callable, Optional
9
+ from typing_extensions import Annotated, NotRequired, TypedDict
10
+
11
+
12
+ class GetServersRequestTypedDict(TypedDict):
13
+ filter_project: NotRequired[str]
14
+ r"""The project ID or Slug to filter by"""
15
+ filter_region: NotRequired[str]
16
+ r"""The region Slug to filter by"""
17
+ filter_hostname: NotRequired[str]
18
+ r"""The hostname of server to filter by"""
19
+ filter_created_at_gte: NotRequired[str]
20
+ r"""The created at greater than equal date to filter by"""
21
+ filter_created_at_lte: NotRequired[str]
22
+ r"""The created at less than equal date to filter by"""
23
+ filter_label: NotRequired[str]
24
+ r"""The label of server to filter by"""
25
+ filter_status: NotRequired[str]
26
+ r"""The status of server to filter by"""
27
+ filter_plan: NotRequired[str]
28
+ r"""The platform/plan name of the server to filter by"""
29
+ filter_gpu: NotRequired[bool]
30
+ r"""Filter by the existence of an associated GPU"""
31
+ filter_ram_eql: NotRequired[int]
32
+ r"""Filter servers with RAM size (in GB) equals the provided value."""
33
+ filter_ram_gte: NotRequired[int]
34
+ r"""Filter servers with RAM size (in GB) greater than or equal the provided value."""
35
+ filter_ram_lte: NotRequired[int]
36
+ r"""Filter servers with RAM size (in GB) less than or equal the provided value."""
37
+ filter_disk: NotRequired[int]
38
+ r"""The disk size in Gigabytes to filter by, should be used with the following options:
39
+ [eql] to filter for values equal to the provided value.
40
+ [gte] to filter for values greater than or equal to the provided value.
41
+ [lte] to filter by values lower than or equal to the provided value.
42
+ """
43
+ filter_tags: NotRequired[str]
44
+ r"""The tags IDs to filter by, separated by comma, e.g. `filter[tags]=tag_1,tag_2`will return servers with `tag_1` AND `tag_2`"""
45
+ extra_fields_servers: NotRequired[str]
46
+ r"""The `credentials` are provided as extra attributes that are lazy loaded. To request it, just set `extra_fields[servers]=credentials` in the query string."""
47
+ page_size: NotRequired[int]
48
+ r"""Number of items to return per page"""
49
+ page_number: NotRequired[int]
50
+ r"""Page number to return (starts at 1)"""
51
+
52
+
53
+ class GetServersRequest(BaseModel):
54
+ filter_project: Annotated[
55
+ Optional[str],
56
+ pydantic.Field(alias="filter[project]"),
57
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
58
+ ] = None
59
+ r"""The project ID or Slug to filter by"""
60
+
61
+ filter_region: Annotated[
62
+ Optional[str],
63
+ pydantic.Field(alias="filter[region]"),
64
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
65
+ ] = None
66
+ r"""The region Slug to filter by"""
67
+
68
+ filter_hostname: Annotated[
69
+ Optional[str],
70
+ pydantic.Field(alias="filter[hostname]"),
71
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
72
+ ] = None
73
+ r"""The hostname of server to filter by"""
74
+
75
+ filter_created_at_gte: Annotated[
76
+ Optional[str],
77
+ pydantic.Field(alias="filter[created_at_gte]"),
78
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
79
+ ] = None
80
+ r"""The created at greater than equal date to filter by"""
81
+
82
+ filter_created_at_lte: Annotated[
83
+ Optional[str],
84
+ pydantic.Field(alias="filter[created_at_lte]"),
85
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
86
+ ] = None
87
+ r"""The created at less than equal date to filter by"""
88
+
89
+ filter_label: Annotated[
90
+ Optional[str],
91
+ pydantic.Field(alias="filter[label]"),
92
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
93
+ ] = None
94
+ r"""The label of server to filter by"""
95
+
96
+ filter_status: Annotated[
97
+ Optional[str],
98
+ pydantic.Field(alias="filter[status]"),
99
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
100
+ ] = None
101
+ r"""The status of server to filter by"""
102
+
103
+ filter_plan: Annotated[
104
+ Optional[str],
105
+ pydantic.Field(alias="filter[plan]"),
106
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
107
+ ] = None
108
+ r"""The platform/plan name of the server to filter by"""
109
+
110
+ filter_gpu: Annotated[
111
+ Optional[bool],
112
+ pydantic.Field(alias="filter[gpu]"),
113
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
114
+ ] = None
115
+ r"""Filter by the existence of an associated GPU"""
116
+
117
+ filter_ram_eql: Annotated[
118
+ Optional[int],
119
+ pydantic.Field(alias="filter[ram][eql]"),
120
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
121
+ ] = None
122
+ r"""Filter servers with RAM size (in GB) equals the provided value."""
123
+
124
+ filter_ram_gte: Annotated[
125
+ Optional[int],
126
+ pydantic.Field(alias="filter[ram][gte]"),
127
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
128
+ ] = None
129
+ r"""Filter servers with RAM size (in GB) greater than or equal the provided value."""
130
+
131
+ filter_ram_lte: Annotated[
132
+ Optional[int],
133
+ pydantic.Field(alias="filter[ram][lte]"),
134
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
135
+ ] = None
136
+ r"""Filter servers with RAM size (in GB) less than or equal the provided value."""
137
+
138
+ filter_disk: Annotated[
139
+ Optional[int],
140
+ pydantic.Field(alias="filter[disk]"),
141
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
142
+ ] = None
143
+ r"""The disk size in Gigabytes to filter by, should be used with the following options:
144
+ [eql] to filter for values equal to the provided value.
145
+ [gte] to filter for values greater than or equal to the provided value.
146
+ [lte] to filter by values lower than or equal to the provided value.
147
+ """
148
+
149
+ filter_tags: Annotated[
150
+ Optional[str],
151
+ pydantic.Field(alias="filter[tags]"),
152
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
153
+ ] = None
154
+ r"""The tags IDs to filter by, separated by comma, e.g. `filter[tags]=tag_1,tag_2`will return servers with `tag_1` AND `tag_2`"""
155
+
156
+ extra_fields_servers: Annotated[
157
+ Optional[str],
158
+ pydantic.Field(alias="extra_fields[servers]"),
159
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
160
+ ] = None
161
+ r"""The `credentials` are provided as extra attributes that are lazy loaded. To request it, just set `extra_fields[servers]=credentials` in the query string."""
162
+
163
+ page_size: Annotated[
164
+ Optional[int],
165
+ pydantic.Field(alias="page[size]"),
166
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
167
+ ] = 20
168
+ r"""Number of items to return per page"""
169
+
170
+ page_number: Annotated[
171
+ Optional[int],
172
+ pydantic.Field(alias="page[number]"),
173
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
174
+ ] = 1
175
+ r"""Page number to return (starts at 1)"""
176
+
177
+
178
+ class GetServersResponseTypedDict(TypedDict):
179
+ result: ServersTypedDict
180
+
181
+
182
+ class GetServersResponse(BaseModel):
183
+ next: Callable[[], Optional[GetServersResponse]]
184
+
185
+ result: Servers
@@ -0,0 +1,30 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .ssh_key_data import SSHKeyData, SSHKeyDataTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetSSHKeyRequestTypedDict(TypedDict):
12
+ ssh_key_id: str
13
+
14
+
15
+ class GetSSHKeyRequest(BaseModel):
16
+ ssh_key_id: Annotated[
17
+ str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
18
+ ]
19
+
20
+
21
+ class GetSSHKeyResponseBodyTypedDict(TypedDict):
22
+ r"""Success"""
23
+
24
+ data: NotRequired[SSHKeyDataTypedDict]
25
+
26
+
27
+ class GetSSHKeyResponseBody(BaseModel):
28
+ r"""Success"""
29
+
30
+ data: Optional[SSHKeyData] = 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 FieldMetadata, QueryParamMetadata
6
+ import pydantic
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetSSHKeysRequestTypedDict(TypedDict):
12
+ filter_project: NotRequired[str]
13
+ r"""Project ID or slug"""
14
+ filter_tags: NotRequired[str]
15
+ r"""The tags ids to filter by, separated by comma, e.g. `filter[tags]=tag_1,tag_2`will return ssh keys with `tag_1` AND `tag_2`"""
16
+
17
+
18
+ class GetSSHKeysRequest(BaseModel):
19
+ filter_project: Annotated[
20
+ Optional[str],
21
+ pydantic.Field(alias="filter[project]"),
22
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
23
+ ] = None
24
+ r"""Project ID or slug"""
25
+
26
+ filter_tags: Annotated[
27
+ Optional[str],
28
+ pydantic.Field(alias="filter[tags]"),
29
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
30
+ ] = None
31
+ r"""The tags ids to filter by, separated by comma, e.g. `filter[tags]=tag_1,tag_2`will return ssh keys with `tag_1` AND `tag_2`"""
@@ -0,0 +1,22 @@
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, QueryParamMetadata
6
+ import pydantic
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetStorageFilesystemsRequestTypedDict(TypedDict):
12
+ filter_project: NotRequired[str]
13
+ r"""The project ID or Slug to filter by"""
14
+
15
+
16
+ class GetStorageFilesystemsRequest(BaseModel):
17
+ filter_project: Annotated[
18
+ Optional[str],
19
+ pydantic.Field(alias="filter[project]"),
20
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
21
+ ] = None
22
+ r"""The project ID or Slug to filter by"""
@@ -0,0 +1,32 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .volume_data import VolumeData, VolumeDataTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetStorageVolumeRequestTypedDict(TypedDict):
12
+ id: str
13
+ r"""The volume storage ID"""
14
+
15
+
16
+ class GetStorageVolumeRequest(BaseModel):
17
+ id: Annotated[
18
+ str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
19
+ ]
20
+ r"""The volume storage ID"""
21
+
22
+
23
+ class GetStorageVolumeResponseBodyTypedDict(TypedDict):
24
+ r"""Success"""
25
+
26
+ data: NotRequired[VolumeDataTypedDict]
27
+
28
+
29
+ class GetStorageVolumeResponseBody(BaseModel):
30
+ r"""Success"""
31
+
32
+ data: Optional[VolumeData] = None
@@ -0,0 +1,35 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .volume_data import VolumeData, VolumeDataTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, QueryParamMetadata
7
+ import pydantic
8
+ from typing import List, Optional
9
+ from typing_extensions import Annotated, NotRequired, TypedDict
10
+
11
+
12
+ class GetStorageVolumesRequestTypedDict(TypedDict):
13
+ filter_project: NotRequired[str]
14
+ r"""The project ID or Slug to filter by"""
15
+
16
+
17
+ class GetStorageVolumesRequest(BaseModel):
18
+ filter_project: Annotated[
19
+ Optional[str],
20
+ pydantic.Field(alias="filter[project]"),
21
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
22
+ ] = None
23
+ r"""The project ID or Slug to filter by"""
24
+
25
+
26
+ class GetStorageVolumesResponseBodyTypedDict(TypedDict):
27
+ r"""Success"""
28
+
29
+ data: NotRequired[List[VolumeDataTypedDict]]
30
+
31
+
32
+ class GetStorageVolumesResponseBody(BaseModel):
33
+ r"""Success"""
34
+
35
+ data: Optional[List[VolumeData]] = None
@@ -0,0 +1,42 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .team_members import TeamMembers, TeamMembersTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, QueryParamMetadata
7
+ import pydantic
8
+ from typing import Callable, Optional
9
+ from typing_extensions import Annotated, NotRequired, TypedDict
10
+
11
+
12
+ class GetTeamMembersRequestTypedDict(TypedDict):
13
+ page_size: NotRequired[int]
14
+ r"""Number of items to return per page"""
15
+ page_number: NotRequired[int]
16
+ r"""Page number to return (starts at 1)"""
17
+
18
+
19
+ class GetTeamMembersRequest(BaseModel):
20
+ page_size: Annotated[
21
+ Optional[int],
22
+ pydantic.Field(alias="page[size]"),
23
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
24
+ ] = 20
25
+ r"""Number of items to return per page"""
26
+
27
+ page_number: Annotated[
28
+ Optional[int],
29
+ pydantic.Field(alias="page[number]"),
30
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
31
+ ] = 1
32
+ r"""Page number to return (starts at 1)"""
33
+
34
+
35
+ class GetTeamMembersResponseTypedDict(TypedDict):
36
+ result: TeamMembersTypedDict
37
+
38
+
39
+ class GetTeamMembersResponse(BaseModel):
40
+ next: Callable[[], Optional[GetTeamMembersResponse]]
41
+
42
+ result: TeamMembers
@@ -0,0 +1,49 @@
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, QueryParamMetadata
6
+ import pydantic
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetTrafficConsumptionRequestTypedDict(TypedDict):
12
+ filter_date_gte: str
13
+ r"""The start timestamp to retrieve the traffic. You must provide in ISO8601 format. Example: filter[date][gte]=2024-04-01T00:00:00Z"""
14
+ filter_date_lte: str
15
+ r"""The end timestamp to retrieve the traffic. You must provide in ISO8601 format. Example: filter[date][gte]=2024-04-31T23:59:59Z"""
16
+ filter_server: NotRequired[str]
17
+ r"""The server id to filter by"""
18
+ filter_project: NotRequired[str]
19
+ r"""The project id to filter by"""
20
+
21
+
22
+ class GetTrafficConsumptionRequest(BaseModel):
23
+ filter_date_gte: Annotated[
24
+ str,
25
+ pydantic.Field(alias="filter[date][gte]"),
26
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
27
+ ]
28
+ r"""The start timestamp to retrieve the traffic. You must provide in ISO8601 format. Example: filter[date][gte]=2024-04-01T00:00:00Z"""
29
+
30
+ filter_date_lte: Annotated[
31
+ str,
32
+ pydantic.Field(alias="filter[date][lte]"),
33
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
34
+ ]
35
+ r"""The end timestamp to retrieve the traffic. You must provide in ISO8601 format. Example: filter[date][gte]=2024-04-31T23:59:59Z"""
36
+
37
+ filter_server: Annotated[
38
+ Optional[str],
39
+ pydantic.Field(alias="filter[server]"),
40
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
41
+ ] = None
42
+ r"""The server id to filter by"""
43
+
44
+ filter_project: Annotated[
45
+ Optional[str],
46
+ pydantic.Field(alias="filter[project]"),
47
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
48
+ ] = None
49
+ r"""The project id to filter by"""
@@ -0,0 +1,20 @@
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, QueryParamMetadata
6
+ import pydantic
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetTrafficQuotaRequestTypedDict(TypedDict):
12
+ filter_project: NotRequired[str]
13
+
14
+
15
+ class GetTrafficQuotaRequest(BaseModel):
16
+ filter_project: Annotated[
17
+ Optional[str],
18
+ pydantic.Field(alias="filter[project]"),
19
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
20
+ ] = 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
+ import pydantic
11
+ from typing import Optional
12
+ from typing_extensions import Annotated, NotRequired, TypedDict
13
+
14
+
15
+ class GetUserDataRequestTypedDict(TypedDict):
16
+ user_data_id: str
17
+ extra_fields_user_data: NotRequired[str]
18
+ r"""The `decoded_content` is provided as an extra attribute that shows content in decoded form."""
19
+
20
+
21
+ class GetUserDataRequest(BaseModel):
22
+ user_data_id: Annotated[
23
+ str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
24
+ ]
25
+
26
+ extra_fields_user_data: Annotated[
27
+ Optional[str],
28
+ pydantic.Field(alias="extra_fields[user_data]"),
29
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
30
+ ] = "decoded_content"
31
+ r"""The `decoded_content` is provided as an extra attribute that shows content in decoded form."""
@@ -0,0 +1,19 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .user import User, UserTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from typing import Optional
7
+ from typing_extensions import NotRequired, TypedDict
8
+
9
+
10
+ class GetUserProfileResponseBodyTypedDict(TypedDict):
11
+ r"""Success"""
12
+
13
+ data: NotRequired[UserTypedDict]
14
+
15
+
16
+ class GetUserProfileResponseBody(BaseModel):
17
+ r"""Success"""
18
+
19
+ data: Optional[User] = None
@@ -0,0 +1,44 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .user_data import UserData, UserDataTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, QueryParamMetadata
7
+ import pydantic
8
+ from typing import List, Optional
9
+ from typing_extensions import Annotated, NotRequired, TypedDict
10
+
11
+
12
+ class GetUsersDataRequestTypedDict(TypedDict):
13
+ filter_project: NotRequired[str]
14
+ r"""Project ID or slug"""
15
+ extra_fields_user_data: NotRequired[str]
16
+ r"""The `decoded_content` is provided as an extra attribute that shows content in decoded form."""
17
+
18
+
19
+ class GetUsersDataRequest(BaseModel):
20
+ filter_project: Annotated[
21
+ Optional[str],
22
+ pydantic.Field(alias="filter[project]"),
23
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
24
+ ] = None
25
+ r"""Project ID or slug"""
26
+
27
+ extra_fields_user_data: Annotated[
28
+ Optional[str],
29
+ pydantic.Field(alias="extra_fields[user_data]"),
30
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
31
+ ] = "decoded_content"
32
+ r"""The `decoded_content` is provided as an extra attribute that shows content in decoded form."""
33
+
34
+
35
+ class GetUsersDataResponseBodyTypedDict(TypedDict):
36
+ r"""Success"""
37
+
38
+ data: NotRequired[List[UserDataTypedDict]]
39
+
40
+
41
+ class GetUsersDataResponseBody(BaseModel):
42
+ r"""Success"""
43
+
44
+ data: Optional[List[UserData]] = None
@@ -0,0 +1,32 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .virtual_network import VirtualNetwork, VirtualNetworkTypedDict
5
+ from latitudesh_python_sdk.types import BaseModel
6
+ from latitudesh_python_sdk.utils import FieldMetadata, PathParamMetadata
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetVirtualNetworkRequestTypedDict(TypedDict):
12
+ vlan_id: str
13
+ r"""Virtual Network ID"""
14
+
15
+
16
+ class GetVirtualNetworkRequest(BaseModel):
17
+ vlan_id: Annotated[
18
+ str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
19
+ ]
20
+ r"""Virtual Network ID"""
21
+
22
+
23
+ class GetVirtualNetworkResponseBodyTypedDict(TypedDict):
24
+ r"""Success"""
25
+
26
+ data: NotRequired[VirtualNetworkTypedDict]
27
+
28
+
29
+ class GetVirtualNetworkResponseBody(BaseModel):
30
+ r"""Success"""
31
+
32
+ data: Optional[VirtualNetwork] = None
@@ -0,0 +1,72 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .virtual_network_assignments import (
5
+ VirtualNetworkAssignments,
6
+ VirtualNetworkAssignmentsTypedDict,
7
+ )
8
+ from latitudesh_python_sdk.types import BaseModel
9
+ from latitudesh_python_sdk.utils import FieldMetadata, QueryParamMetadata
10
+ import pydantic
11
+ from typing import Callable, Optional
12
+ from typing_extensions import Annotated, NotRequired, TypedDict
13
+
14
+
15
+ class GetVirtualNetworksAssignmentsRequestTypedDict(TypedDict):
16
+ filter_server: NotRequired[str]
17
+ r"""The server ID to filter by"""
18
+ filter_vid: NotRequired[str]
19
+ r"""The vlan ID to filter by"""
20
+ filter_virtual_network_id: NotRequired[str]
21
+ r"""The virtual network ID to filter by"""
22
+ page_size: NotRequired[int]
23
+ r"""Number of items to return per page"""
24
+ page_number: NotRequired[int]
25
+ r"""Page number to return (starts at 1)"""
26
+
27
+
28
+ class GetVirtualNetworksAssignmentsRequest(BaseModel):
29
+ filter_server: Annotated[
30
+ Optional[str],
31
+ pydantic.Field(alias="filter[server]"),
32
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
33
+ ] = None
34
+ r"""The server ID to filter by"""
35
+
36
+ filter_vid: Annotated[
37
+ Optional[str],
38
+ pydantic.Field(alias="filter[vid]"),
39
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
40
+ ] = None
41
+ r"""The vlan ID to filter by"""
42
+
43
+ filter_virtual_network_id: Annotated[
44
+ Optional[str],
45
+ pydantic.Field(alias="filter[virtual_network_id]"),
46
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
47
+ ] = None
48
+ r"""The virtual network ID to filter by"""
49
+
50
+ page_size: Annotated[
51
+ Optional[int],
52
+ pydantic.Field(alias="page[size]"),
53
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
54
+ ] = 20
55
+ r"""Number of items to return per page"""
56
+
57
+ page_number: Annotated[
58
+ Optional[int],
59
+ pydantic.Field(alias="page[number]"),
60
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
61
+ ] = 1
62
+ r"""Page number to return (starts at 1)"""
63
+
64
+
65
+ class GetVirtualNetworksAssignmentsResponseTypedDict(TypedDict):
66
+ result: VirtualNetworkAssignmentsTypedDict
67
+
68
+
69
+ class GetVirtualNetworksAssignmentsResponse(BaseModel):
70
+ next: Callable[[], Optional[GetVirtualNetworksAssignmentsResponse]]
71
+
72
+ result: VirtualNetworkAssignments