latitudesh-python-sdk 2.3.1__tar.gz → 3.0.0__tar.gz

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 (347) hide show
  1. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/PKG-INFO +153 -118
  2. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/README-PYPI.md +151 -116
  3. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/pyproject.toml +2 -2
  4. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/_version.py +3 -3
  5. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/apikeys.py → latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/apikeys_sdk.py +219 -25
  6. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/basesdk.py +20 -6
  7. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/billing.py +2 -2
  8. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/elastic_ips_sdk.py +1020 -0
  9. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/events_sdk.py +8 -8
  10. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/firewalls_sdk.py +40 -44
  11. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/ipaddresses_sdk.py +12 -4
  12. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/kubernetes_clusters_sdk.py +947 -0
  13. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/__init__.py +605 -151
  14. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/api_key.py +173 -0
  15. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/api_keys.py +43 -0
  16. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/assign_server_virtual_networkop.py +34 -1
  17. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/bandwidth_packages.py +134 -0
  18. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/bandwidth_plan_data.py +153 -0
  19. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/bandwidth_plans.py +18 -1
  20. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/billing_usage.py +165 -35
  21. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/create_api_key.py +99 -0
  22. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/create_elastic_ip.py +44 -0
  23. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_firewall_assignmentop.py +18 -1
  24. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/create_firewallop.py +148 -0
  25. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/create_kubernetes_cluster.py +137 -0
  26. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_projectop.py +66 -1
  27. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_server_actionop.py +18 -1
  28. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_server_out_of_bandop.py +34 -1
  29. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_server_reinstallop.py +100 -34
  30. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_serverop.py +108 -37
  31. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/create_tagop.py +114 -0
  32. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_virtual_networkop.py +20 -4
  33. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/custom_tag.py +18 -1
  34. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/custom_tag_data.py +34 -1
  35. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/custom_tags.py +18 -1
  36. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/delete_elastic_ipop.py +18 -0
  37. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/delete_kubernetes_clusterop.py +18 -0
  38. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/delete_storage_objectsop.py +18 -0
  39. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/deploy_config.py +151 -0
  40. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/destroy_serverop.py +18 -1
  41. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/elastic_ip.py +43 -0
  42. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/elastic_ip_data.py +329 -0
  43. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/elastic_ips.py +43 -0
  44. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/error_object.py +118 -0
  45. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/event_data.py +233 -0
  46. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/events.py +43 -0
  47. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/filesystem_data.py +121 -0
  48. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/firewall.py +18 -1
  49. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/firewall_assignment_data.py +99 -0
  50. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/firewall_assignments.py +18 -1
  51. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/firewall_data.py +166 -0
  52. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/firewall_server.py +69 -0
  53. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/firewalls.py +18 -1
  54. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_all_firewall_assignmentsop.py +18 -1
  55. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_bandwidth_plansop.py +20 -1
  56. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_billing_usageop.py +18 -1
  57. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_elastic_ipop.py +18 -0
  58. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_eventsop.py +47 -1
  59. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_firewall_assignmentsop.py +18 -1
  60. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_ipop.py +18 -1
  61. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_ipsop.py +40 -1
  62. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_kubernetes_cluster_kubeconfigop.py +18 -0
  63. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_kubernetes_clusterop.py +18 -0
  64. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_plans_operating_systemop.py +34 -1
  65. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_plansop.py +45 -1
  66. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_project_ssh_keyop.py +18 -1
  67. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_project_ssh_keysop.py +18 -1
  68. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_project_user_dataop.py +18 -1
  69. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_project_users_dataop.py +18 -1
  70. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_projectsop.py +30 -1
  71. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_regionsop.py +18 -1
  72. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_rolesop.py +34 -1
  73. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_serverop.py +18 -1
  74. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_serversop.py +38 -1
  75. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_ssh_keyop.py +18 -1
  76. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_ssh_keysop.py +27 -1
  77. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_storage_filesystemsop.py +18 -1
  78. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_storage_objectop.py +49 -0
  79. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_storage_objectsop.py +39 -0
  80. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_storage_volumeop.py +18 -1
  81. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_storage_volumesop.py +68 -0
  82. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_team_membersop.py +18 -1
  83. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_traffic_consumptionop.py +18 -1
  84. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_traffic_quotaop.py +18 -1
  85. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_user_dataop.py +18 -1
  86. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_user_profileop.py +36 -0
  87. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_users_dataop.py +29 -1
  88. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_virtual_networkop.py +18 -0
  89. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_virtual_networks_assignmentsop.py +26 -1
  90. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_virtual_networksop.py +26 -1
  91. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/get_vm_plansop.py +39 -0
  92. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_vpn_sessionsop.py +36 -4
  93. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/index_virtual_machineop.py +18 -1
  94. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/ip_address.py +253 -0
  95. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/ip_addresses.py +32 -0
  96. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/ipmi_session.py +102 -0
  97. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/kubernetes_cluster.py +35 -0
  98. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/kubernetes_cluster_create_response.py +118 -0
  99. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/kubernetes_cluster_data.py +505 -0
  100. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/kubernetes_cluster_kubeconfig.py +94 -0
  101. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/kubernetes_cluster_summary_data.py +195 -0
  102. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/kubernetes_clusters.py +39 -0
  103. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/list_elastic_ipsop.py +105 -0
  104. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/list_firewallsop.py +18 -1
  105. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/list_kubernetes_clustersop.py +18 -0
  106. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/membership.py +123 -0
  107. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/object_storage_data.py +185 -0
  108. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/object_storages.py +32 -0
  109. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/operating_system_data.py +124 -0
  110. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/operating_systems.py +18 -1
  111. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/out_of_band_connection.py +180 -0
  112. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/patch_current_teamop.py +50 -1
  113. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/patch_storage_filesystemsop.py +34 -1
  114. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/patch_user_dataop.py +50 -1
  115. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/patch_user_profileop.py +50 -1
  116. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/plan.py +32 -0
  117. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/plan_data.py +479 -0
  118. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/post_api_keyop.py +36 -0
  119. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_project_ssh_keyop.py +50 -1
  120. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_project_user_dataop.py +18 -1
  121. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/post_ssh_keyop.py +112 -0
  122. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_storage_filesystemsop.py +34 -1
  123. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/post_storage_objectsop.py +106 -0
  124. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_storage_volumesop.py +34 -1
  125. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_team_membersop.py +34 -1
  126. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/post_teamop.py +116 -0
  127. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_user_dataop.py +34 -1
  128. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/post_vpn_sessionop.py +111 -0
  129. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/project.py +230 -0
  130. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/project_include.py +170 -0
  131. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/projects.py +32 -0
  132. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/put_project_ssh_keyop.py +50 -1
  133. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/put_project_user_dataop.py +50 -1
  134. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/put_ssh_keyop.py +50 -1
  135. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/region.py +115 -0
  136. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/region_resource_data.py +70 -0
  137. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/regions.py +115 -0
  138. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/role.py +43 -0
  139. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/role_data.py +68 -0
  140. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/rotate_api_keyop.py +58 -0
  141. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/security.py +18 -1
  142. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/server.py +43 -0
  143. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/server_action.py +101 -0
  144. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/server_data.py +462 -0
  145. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/server_region_resource_data.py +73 -0
  146. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/server_rescue.py +39 -0
  147. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/server_schedule_deletion.py +93 -0
  148. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/servers.py +18 -1
  149. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/ssh_key_data.py +102 -0
  150. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/ssh_keys.py +18 -1
  151. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/storage_plan_data.py +96 -0
  152. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/storage_plans.py +18 -1
  153. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/team.py +154 -0
  154. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/team_include.py +86 -0
  155. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/team_members.py +166 -0
  156. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/teams.py +43 -0
  157. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/traffic.py +247 -0
  158. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/traffic_quota.py +244 -0
  159. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_api_key.py +102 -0
  160. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/update_api_keyop.py +20 -3
  161. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_elastic_ip.py +39 -0
  162. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_elastic_ipop.py +29 -0
  163. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/update_firewallop.py +76 -1
  164. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_plans_bandwidthop.py +99 -0
  165. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/update_projectop.py +68 -1
  166. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_server_deploy_configop.py +208 -0
  167. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/update_serverop.py +69 -5
  168. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_tagop.py +138 -0
  169. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/update_virtual_machineop.py +30 -0
  170. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/update_virtual_networkop.py +34 -1
  171. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/user.py +117 -0
  172. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/user_data.py +43 -0
  173. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/user_data_object.py +18 -1
  174. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/user_data_properties.py +85 -0
  175. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/user_include.py +111 -0
  176. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/user_team.py +137 -0
  177. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/user_teams.py +18 -1
  178. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/user_update.py +87 -0
  179. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/virtual_machine.py +18 -1
  180. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/virtual_machine_attributes.py +371 -0
  181. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/virtual_machine_payload.py +120 -0
  182. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/virtual_machine_plans.py +516 -0
  183. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/virtual_machine_update_payload.py +60 -0
  184. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/virtual_machines.py +46 -0
  185. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/virtual_network.py +18 -1
  186. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/virtual_network_assignment.py +18 -1
  187. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/virtual_network_assignment_data.py +52 -1
  188. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/virtual_network_assignments.py +18 -1
  189. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/virtual_network_data.py +221 -0
  190. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/virtual_networks.py +18 -1
  191. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/volume_data.py +142 -0
  192. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/vpn_session_data_with_password.py +46 -1
  193. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/models/vpn_session_with_password.py +35 -0
  194. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/operatingsystems_sdk.py +6 -6
  195. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/plans.py +32 -188
  196. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/privatenetworks.py +28 -32
  197. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/projects_sdk.py +14 -14
  198. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/regions_sdk.py +8 -8
  199. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/roles.py +8 -8
  200. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/sdk.py +17 -8
  201. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/servers_sdk.py +38 -38
  202. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/sshkeys_sdk.py +90 -84
  203. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/storage.py +885 -131
  204. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/tags.py +29 -13
  205. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/teams_sdk.py +6 -6
  206. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/teamsmembers.py +10 -10
  207. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/traffic_sdk.py +4 -4
  208. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/types/basemodel.py +77 -0
  209. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/userdata_sdk.py +94 -88
  210. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/userprofile.py +6 -6
  211. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/__init__.py +17 -39
  212. latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/utils/dynamic_imports.py +54 -0
  213. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/enums.py +60 -0
  214. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/eventstreaming.py +110 -49
  215. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/requestbodies.py +3 -3
  216. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/retries.py +2 -12
  217. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/security.py +2 -0
  218. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/serializers.py +0 -20
  219. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/virtualmachines.py → latitudesh_python_sdk-3.0.0/src/latitudesh_python_sdk/virtualmachines_sdk.py +231 -27
  220. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/vpnsessions.py +8 -8
  221. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/api_key.py +0 -81
  222. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/bandwidth_packages.py +0 -67
  223. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/bandwidth_plan_data.py +0 -72
  224. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/container_plan_data.py +0 -163
  225. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/create_api_key.py +0 -40
  226. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/create_firewallop.py +0 -73
  227. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/create_tagop.py +0 -50
  228. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/deploy_config.py +0 -62
  229. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/event_data.py +0 -98
  230. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/events.py +0 -26
  231. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/filesystem_data.py +0 -57
  232. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/firewall_assignment_data.py +0 -50
  233. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/firewall_data.py +0 -75
  234. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/firewall_server.py +0 -36
  235. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/get_containers_planop.py +0 -18
  236. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/get_storage_volumesop.py +0 -35
  237. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/get_user_profileop.py +0 -19
  238. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/get_virtual_networkop.py +0 -32
  239. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/ip_address.py +0 -122
  240. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/ip_addresses.py +0 -15
  241. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/ipmi_session.py +0 -53
  242. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/membership.py +0 -63
  243. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/operating_system_data.py +0 -65
  244. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/out_of_band_connection.py +0 -88
  245. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/plan.py +0 -15
  246. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/plan_data.py +0 -268
  247. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/post_api_keyop.py +0 -19
  248. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/post_ssh_keyop.py +0 -63
  249. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/post_teamop.py +0 -67
  250. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/post_vpn_sessionop.py +0 -63
  251. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/project.py +0 -131
  252. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/project_include.py +0 -75
  253. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/projects.py +0 -15
  254. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/region.py +0 -50
  255. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/region_resource_data.py +0 -37
  256. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/regions.py +0 -50
  257. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/role.py +0 -26
  258. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/role_data.py +0 -35
  259. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/server.py +0 -26
  260. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/server_action.py +0 -52
  261. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/server_data.py +0 -280
  262. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/server_region_resource_data.py +0 -40
  263. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/server_rescue.py +0 -22
  264. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/server_schedule_deletion.py +0 -44
  265. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/ssh_key_data.py +0 -55
  266. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/storage_plan_data.py +0 -47
  267. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/team.py +0 -74
  268. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/team_include.py +0 -43
  269. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/team_members.py +0 -121
  270. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/teams.py +0 -26
  271. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/traffic.py +0 -133
  272. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/traffic_quota.py +0 -106
  273. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/update_api_key.py +0 -48
  274. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/update_plans_bandwidthop.py +0 -50
  275. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/update_server_deploy_configop.py +0 -122
  276. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/update_tagop.py +0 -74
  277. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/user.py +0 -59
  278. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/user_data.py +0 -26
  279. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/user_data_properties.py +0 -46
  280. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/user_include.py +0 -52
  281. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/user_team.py +0 -61
  282. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/user_update.py +0 -37
  283. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/virtual_machine_attributes.py +0 -128
  284. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/virtual_machine_payload.py +0 -65
  285. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/virtual_machine_plans.py +0 -193
  286. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/virtual_network_data.py +0 -114
  287. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/volume_data.py +0 -111
  288. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/models/vpn_session_with_password.py +0 -18
  289. latitudesh_python_sdk-2.3.1/src/latitudesh_python_sdk/types/basemodel.py +0 -39
  290. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/LICENSE +0 -0
  291. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/py.typed +0 -0
  292. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/__init__.py +0 -0
  293. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/_hooks/__init__.py +0 -0
  294. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/_hooks/registration.py +0 -0
  295. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/_hooks/sdkhooks.py +0 -0
  296. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/_hooks/types.py +0 -0
  297. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/httpclient.py +0 -0
  298. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/apierror.py +0 -0
  299. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_ipmi_sessionop.py +0 -0
  300. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/create_virtual_machine_actionop.py +0 -0
  301. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_api_keyop.py +0 -0
  302. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_firewall_assignmentop.py +0 -0
  303. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_firewallop.py +0 -0
  304. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_project_ssh_keyop.py +0 -0
  305. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_project_user_dataop.py +0 -0
  306. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_projectop.py +0 -0
  307. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_ssh_keyop.py +0 -0
  308. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_storage_filesystemsop.py +0 -0
  309. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_storage_volumesop.py +0 -0
  310. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_user_dataop.py +0 -0
  311. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_virtual_networks_assignmentsop.py +0 -0
  312. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/delete_vpn_sessionop.py +0 -0
  313. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/destroy_tagop.py +0 -0
  314. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/destroy_team_memberop.py +0 -0
  315. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/destroy_virtual_machineop.py +0 -0
  316. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/destroy_virtual_networkop.py +0 -0
  317. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_firewallop.py +0 -0
  318. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_planop.py +0 -0
  319. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_regionop.py +0 -0
  320. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_role_idop.py +0 -0
  321. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_server_deploy_configop.py +0 -0
  322. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/get_server_out_of_bandop.py +0 -0
  323. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/latitudesherror.py +0 -0
  324. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/no_response_error.py +0 -0
  325. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/post_storage_volumes_mountop.py +0 -0
  326. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/put_vpn_sessionop.py +0 -0
  327. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/responsevalidationerror.py +0 -0
  328. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/server_exit_rescue_modeop.py +0 -0
  329. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/server_lockop.py +0 -0
  330. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/server_schedule_deletionop.py +0 -0
  331. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/server_start_rescue_modeop.py +0 -0
  332. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/server_unlockop.py +0 -0
  333. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/server_unschedule_deletionop.py +0 -0
  334. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/models/show_virtual_machineop.py +0 -0
  335. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/py.typed +0 -0
  336. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/sdkconfiguration.py +0 -0
  337. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/types/__init__.py +0 -0
  338. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/annotations.py +0 -0
  339. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/datetimes.py +0 -0
  340. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/forms.py +0 -0
  341. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/headers.py +0 -0
  342. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/logger.py +0 -0
  343. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/metadata.py +0 -0
  344. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/queryparams.py +0 -0
  345. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/unmarshal_json_response.py +0 -0
  346. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/url.py +0 -0
  347. {latitudesh_python_sdk-2.3.1 → latitudesh_python_sdk-3.0.0}/src/latitudesh_python_sdk/utils/values.py +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: latitudesh-python-sdk
3
- Version: 2.3.1
3
+ Version: 3.0.0
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  License-File: LICENSE
6
6
  Author: Speakeasy
7
- Requires-Python: >=3.9.2
7
+ Requires-Python: >=3.10
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: Programming Language :: Python :: 3.11
@@ -160,7 +160,7 @@ It's also possible to write a standalone Python script without needing to set up
160
160
  ```python
161
161
  #!/usr/bin/env -S uv run --script
162
162
  # /// script
163
- # requires-python = ">=3.9"
163
+ # requires-python = ">=3.10"
164
164
  # dependencies = [
165
165
  # "latitudesh-python-sdk",
166
166
  # ]
@@ -270,183 +270,204 @@ with Latitudesh(
270
270
  <details open>
271
271
  <summary>Available methods</summary>
272
272
 
273
- ### [ApiKeys](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeys/README.md)
273
+ ### [ApiKeys](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeyssdk/README.md)
274
274
 
275
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeys/README.md#list) - List API Keys
276
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeys/README.md#create) - Create API Key
277
- * [regenerate](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeys/README.md#regenerate) - Regenerate API Key
278
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeys/README.md#delete) - Delete API Key
275
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeyssdk/README.md#list) - List API keys
276
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeyssdk/README.md#create) - Create API key
277
+ * [regenerate](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeyssdk/README.md#regenerate) - Rotate API key
278
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeyssdk/README.md#delete) - Delete API key
279
+ * [update_api_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/apikeyssdk/README.md#update_api_key) - Update API key settings
279
280
 
280
281
  ### [Billing](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/billing/README.md)
281
282
 
282
- * [list_usage](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/billing/README.md#list_usage) - List Billing Usage
283
+ * [list_usage](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/billing/README.md#list_usage) - Retrieve billing usage
284
+
285
+ ### [ElasticIps](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/elasticipssdk/README.md)
286
+
287
+ * [list_elastic_ips](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/elasticipssdk/README.md#list_elastic_ips) - List Elastic IPs
288
+ * [create_elastic_ip](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/elasticipssdk/README.md#create_elastic_ip) - Create an Elastic IP
289
+ * [get_elastic_ip](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/elasticipssdk/README.md#get_elastic_ip) - Retrieve an Elastic IP
290
+ * [delete_elastic_ip](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/elasticipssdk/README.md#delete_elastic_ip) - Release an Elastic IP
291
+ * [update_elastic_ip](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/elasticipssdk/README.md#update_elastic_ip) - Move an Elastic IP
283
292
 
284
293
  ### [Events](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/eventssdk/README.md)
285
294
 
286
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/eventssdk/README.md#list) - List all Events
295
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/eventssdk/README.md#list) - List events
287
296
 
288
297
  ### [Firewalls](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md)
289
298
 
290
- * [get_all_firewall_assignments](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#get_all_firewall_assignments) - List All Firewall Assignments
291
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#create) - Create a firewall
299
+ * [get_all_firewall_assignments](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#get_all_firewall_assignments) - List firewall assignments
300
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#create) - Create firewall
292
301
  * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#list) - List firewalls
293
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#get) - Retrieve Firewall
294
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#update) - Update Firewall
295
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#delete) - Delete Firewall
296
- * [assign](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#assign) - Firewall Assignment
297
- * [list_assignments](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#list_assignments) - Firewall Assignments
298
- * [delete_assignment](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#delete_assignment) - Delete Firewall Assignment
302
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#get) - Retrieve firewall
303
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#update) - Update firewall
304
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#delete) - Delete firewall
305
+ * [assign](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#assign) - Assign server to firewall
306
+ * [list_assignments](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#list_assignments) - Firewall assignments
307
+ * [delete_assignment](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/firewallssdk/README.md#delete_assignment) - Delete assignment
299
308
 
300
309
  ### [IpAddresses](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/ipaddressessdk/README.md)
301
310
 
302
311
  * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/ipaddressessdk/README.md#list) - List IPs
303
312
  * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/ipaddressessdk/README.md#get) - Retrieve an IP
304
313
 
314
+ ### [KubernetesClusters](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/kubernetesclusterssdk/README.md)
315
+
316
+ * [list_kubernetes_clusters](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/kubernetesclusterssdk/README.md#list_kubernetes_clusters) - List Kubernetes Clusters
317
+ * [create_kubernetes_cluster](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/kubernetesclusterssdk/README.md#create_kubernetes_cluster) - Create a Kubernetes Cluster
318
+ * [get_kubernetes_cluster](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/kubernetesclusterssdk/README.md#get_kubernetes_cluster) - Get a Kubernetes Cluster
319
+ * [delete_kubernetes_cluster](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/kubernetesclusterssdk/README.md#delete_kubernetes_cluster) - Delete a Kubernetes Cluster
320
+ * [get_kubernetes_cluster_kubeconfig](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/kubernetesclusterssdk/README.md#get_kubernetes_cluster_kubeconfig) - Get Kubernetes Cluster Kubeconfig
321
+
305
322
  ### [OperatingSystems](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/operatingsystemssdk/README.md)
306
323
 
307
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/operatingsystemssdk/README.md#list) - List all operating systems available
324
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/operatingsystemssdk/README.md#list) - List operating systems
308
325
 
309
326
  ### [Plans](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md)
310
327
 
311
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list) - List all Plans
312
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#get) - Retrieve a Plan
313
- * [list_bandwidth](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list_bandwidth) - List all bandwidth plans
314
- * [update_bandwidth](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#update_bandwidth) - Buy or remove bandwidth packages
315
- * [get_containers_plan](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#get_containers_plan) - Retrieve container plan
316
- * [list_storage](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list_storage) - List all Storage Plans
317
- * [list_vm_plans](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list_vm_plans) - List all Virtual Machines Plans
328
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list) - List plans
329
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#get) - Retrieve plan
330
+ * [list_bandwidth](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list_bandwidth) - List bandwidth plans
331
+ * [update_bandwidth](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#update_bandwidth) - Update bandwidth packages
332
+ * [list_storage](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list_storage) - List storage plans
333
+ * [list_vm_plans](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/plans/README.md#list_vm_plans) - List VM plans
318
334
 
319
335
  ### [PrivateNetworks](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md)
320
336
 
321
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#list) - List all Virtual Networks
322
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#create) - Create a Virtual Network
323
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#update) - Update a Virtual Network
324
- * [delete_virtual_network](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#delete_virtual_network) - Delete a Virtual Network
325
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#get) - Retrieve a Virtual Network
326
- * [list_assignments](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#list_assignments) - List all servers assigned to virtual networks
327
- * [assign](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#assign) - Assign Virtual network
328
- * [remove_assignment](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#remove_assignment) - Delete Virtual Network Assignment
337
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#list) - List VLANs
338
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#create) - Create VLAN
339
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#update) - Update VLAN
340
+ * [delete_virtual_network](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#delete_virtual_network) - Delete VLAN
341
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#get) - Retrieve VLAN
342
+ * [list_assignments](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#list_assignments) - List VLAN assignments
343
+ * [assign](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#assign) - Assign VLAN
344
+ * [remove_assignment](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/privatenetworks/README.md#remove_assignment) - Delete VLAN assignment
329
345
 
330
346
  ### [Projects](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md)
331
347
 
332
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#list) - List all Projects
333
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#create) - Create a Project
334
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#update) - Update a Project
335
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#delete) - Delete a Project
348
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#list) - List projects
349
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#create) - Create project
350
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#update) - Update project
351
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/projectssdk/README.md#delete) - Delete project
336
352
 
337
353
  ### [Regions](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/regionssdk/README.md)
338
354
 
339
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/regionssdk/README.md#list) - List all Regions
340
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/regionssdk/README.md#get) - Retrieve a Region
355
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/regionssdk/README.md#list) - List regions
356
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/regionssdk/README.md#get) - Retrieve region
341
357
 
342
358
  ### [Roles](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/roles/README.md)
343
359
 
344
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/roles/README.md#list) - List all Roles
345
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/roles/README.md#get) - Retrieve Role
360
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/roles/README.md#list) - List roles
361
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/roles/README.md#get) - Retrieve role
346
362
 
347
363
  ### [Servers](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md)
348
364
 
349
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#list) - List all Servers
350
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#create) - Deploy Server
351
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#get) - Retrieve a Server
352
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#update) - Update Server
353
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#delete) - Remove Server
354
- * [get_deploy_config](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#get_deploy_config) - Retrieve Deploy Config
355
- * [update_deploy_config](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#update_deploy_config) - Update Deploy Config
356
- * [lock](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#lock) - Lock the server
357
- * [unlock](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#unlock) - Unlock the server
358
- * [create_out_of_band_connection](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#create_out_of_band_connection) - Start Out of Band Connection
359
- * [list_out_of_band_connections](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#list_out_of_band_connections) - List Out of Band Connections
360
- * [actions](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#actions) - Run Server Action
361
- * [create_ipmi_session](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#create_ipmi_session) - Generate IPMI credentials
362
- * [start_rescue_mode](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#start_rescue_mode) - Puts a Server in rescue mode
363
- * [exit_rescue_mode](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#exit_rescue_mode) - Exits rescue mode for a Server
364
- * [schedule_deletion](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#schedule_deletion) - Schedule the server deletion
365
- * [unschedule_deletion](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#unschedule_deletion) - Unschedule the server deletion
365
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#list) - List servers
366
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#create) - Create server
367
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#get) - Retrieve server
368
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#update) - Update server
369
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#delete) - Remove server
370
+ * [get_deploy_config](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#get_deploy_config) - Retrieve deploy config
371
+ * [update_deploy_config](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#update_deploy_config) - Update deploy config
372
+ * [lock](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#lock) - Lock server
373
+ * [unlock](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#unlock) - Unlock server
374
+ * [create_out_of_band_connection](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#create_out_of_band_connection) - Create out-of-band connection
375
+ * [list_out_of_band_connections](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#list_out_of_band_connections) - List out-of-band connections
376
+ * [actions](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#actions) - Run power action
377
+ * [create_ipmi_session](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#create_ipmi_session) - Create IPMI credentials
378
+ * [start_rescue_mode](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#start_rescue_mode) - Put server in rescue mode
379
+ * [exit_rescue_mode](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#exit_rescue_mode) - Exits rescue mode
380
+ * [schedule_deletion](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#schedule_deletion) - Schedule server deletion
381
+ * [unschedule_deletion](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#unschedule_deletion) - Unschedule server deletion
366
382
  * [reinstall](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/serverssdk/README.md#reinstall) - Run Server Reinstall
367
383
 
368
384
  ### [SshKeys](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md)
369
385
 
370
- * [~~list_for_project~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#list_for_project) - List all Project SSH Keys :warning: **Deprecated**
371
- * [~~create~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#create) - Create a Project SSH Key :warning: **Deprecated**
372
- * [~~get~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#get) - Retrieve a Project SSH Key :warning: **Deprecated**
373
- * [~~update~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#update) - Update a Project SSH Key :warning: **Deprecated**
374
- * [~~delete~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#delete) - Delete a Project SSH Key :warning: **Deprecated**
375
- * [get_ssh_keys](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#get_ssh_keys) - List all SSH Keys
376
- * [post_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#post_ssh_key) - Create a SSH Key
377
- * [get_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#get_ssh_key) - Retrieve a SSH Key
378
- * [put_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#put_ssh_key) - Update a SSH Key
379
- * [delete_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#delete_ssh_key) - Delete a SSH Key
386
+ * [~~list_for_project~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#list_for_project) - List SSH Keys :warning: **Deprecated**
387
+ * [~~create~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#create) - Create SSH Key :warning: **Deprecated**
388
+ * [~~get~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#get) - Retrieve Project SSH Key :warning: **Deprecated**
389
+ * [~~update~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#update) - Update Project SSH Key :warning: **Deprecated**
390
+ * [~~delete~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#delete) - Delete Project SSH Key :warning: **Deprecated**
391
+ * [get_ssh_keys](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#get_ssh_keys) - List SSH Keys
392
+ * [post_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#post_ssh_key) - Create SSH Key
393
+ * [get_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#get_ssh_key) - Retrieve SSH Key
394
+ * [delete_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#delete_ssh_key) - Delete SSH Key
395
+ * [put_ssh_key](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/sshkeyssdk/README.md#put_ssh_key) - Update SSH Key
380
396
 
381
397
  ### [Storage](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md)
382
398
 
383
- * [create_filesystem](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#create_filesystem) - Create a filesystem for a project
399
+ * [create_filesystem](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#create_filesystem) - Create filesystem
384
400
  * [list_filesystems](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#list_filesystems) - List filesystems
385
- * [delete_filesystem](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#delete_filesystem) - Delete a filesystem for a project
386
- * [update_filesystem](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#update_filesystem) - Update a filesystem for a project
387
- * [post_storage_volumes](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#post_storage_volumes) - Create volume
401
+ * [delete_filesystem](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#delete_filesystem) - Delete filesystem
402
+ * [update_filesystem](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#update_filesystem) - Update filesystem
388
403
  * [get_storage_volumes](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_volumes) - List volumes
404
+ * [post_storage_volumes](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#post_storage_volumes) - Create volume
405
+ * [get_storage_volume](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_volume) - Retrieve volume
389
406
  * [delete_storage_volumes](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#delete_storage_volumes) - Delete volume
390
- * [get_storage_volume](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_volume) - Get volume
391
407
  * [post_storage_volumes_mount](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#post_storage_volumes_mount) - Mount volume
408
+ * [get_storage_objects](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_objects) - List object storages
409
+ * [post_storage_objects](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#post_storage_objects) - Create object storage
410
+ * [get_storage_object](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_object) - Retrieve object storage
411
+ * [delete_storage_objects](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/storage/README.md#delete_storage_objects) - Delete object storage
392
412
 
393
413
  ### [Tags](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md)
394
414
 
395
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#list) - List all Tags
396
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#create) - Create a Tag
397
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#update) - Update Tag
398
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#delete) - Delete Tag
415
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#list) - List tags
416
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#create) - Create tag
417
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#update) - Update tag
418
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/tags/README.md#delete) - Delete tag
399
419
 
400
420
  ### [Teams](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md)
401
421
 
402
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md#get) - Retrieve the team
403
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md#create) - Create a team
404
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md#update) - Update a team
422
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md#get) - Retrieve team
423
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md#create) - Create team
424
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamssdk/README.md#update) - Update team
405
425
 
406
426
  ### [TeamsMembers](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md)
407
427
 
408
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md#list) - List all Team Members
409
- * [add](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md#add) - Add a Team Member
410
- * [remove_member](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md#remove_member) - Remove a Team Member
428
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md#list) - List members
429
+ * [add](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md#add) - Create member
430
+ * [remove_member](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/teamsmembers/README.md#remove_member) - Remove a member
411
431
 
412
432
  ### [Traffic](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/trafficsdk/README.md)
413
433
 
414
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/trafficsdk/README.md#get) - Retrieve Traffic consumption
415
- * [get_quota](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/trafficsdk/README.md#get_quota) - Retrieve Traffic Quota
434
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/trafficsdk/README.md#get) - Retrieve traffic
435
+ * [get_quota](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/trafficsdk/README.md#get_quota) - Retrieve traffic quota
416
436
 
417
437
  ### [UserData](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md)
418
438
 
419
- * [~~list_project_user_data~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#list_project_user_data) - List all Project User Data :warning: **Deprecated**
420
- * [~~create~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#create) - Create a Project User Data :warning: **Deprecated**
421
- * [~~get_project_user_data~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#get_project_user_data) - Retrieve a Project User Data :warning: **Deprecated**
422
- * [~~update~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#update) - Update a Project User Data :warning: **Deprecated**
423
- * [~~delete~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#delete) - Delete a Project User Data :warning: **Deprecated**
424
- * [get_users_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#get_users_data) - List all User Data
425
- * [post_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#post_user_data) - Create an User Data
426
- * [get_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#get_user_data) - Retrieve an User Data
427
- * [patch_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#patch_user_data) - Update an User Data
428
- * [delete_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#delete_user_data) - Delete an User Data
439
+ * [~~list_project_user_data~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#list_project_user_data) - List Project user data :warning: **Deprecated**
440
+ * [~~create~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#create) - Create Project user data :warning: **Deprecated**
441
+ * [~~get_project_user_data~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#get_project_user_data) - Retrieve Project user data :warning: **Deprecated**
442
+ * [~~update~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#update) - Update Project user data :warning: **Deprecated**
443
+ * [~~delete~~](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#delete) - Delete Project user data :warning: **Deprecated**
444
+ * [get_users_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#get_users_data) - List user data
445
+ * [post_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#post_user_data) - Create user data
446
+ * [get_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#get_user_data) - Retrieve user data
447
+ * [delete_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#delete_user_data) - Delete user data
448
+ * [patch_user_data](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userdatasdk/README.md#patch_user_data) - Update user data
429
449
 
430
450
  ### [UserProfile](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md)
431
451
 
432
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md#get) - Get user profile
433
- * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md#update) - Update User Profile
434
- * [list_teams](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md#list_teams) - List User Teams
452
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md#get) - Retrieve profile
453
+ * [update](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md#update) - Update profile
454
+ * [list_teams](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/userprofile/README.md#list_teams) - List user teams
435
455
 
436
- ### [VirtualMachines](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachines/README.md)
456
+ ### [VirtualMachines](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md)
437
457
 
438
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachines/README.md#create) - Create a Virtual Machine
439
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachines/README.md#list) - Get Teams Virtual Machines
440
- * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachines/README.md#get) - Get a Virtual Machine
441
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachines/README.md#delete) - Destroy a Virtual Machine
442
- * [create_virtual_machine_action](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachines/README.md#create_virtual_machine_action) - Run Virtual Machine Action
458
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md#create) - Create VM
459
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md#list) - List VMs
460
+ * [get](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md#get) - Retrieve VM
461
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md#delete) - Destroy VM
462
+ * [update_virtual_machine](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md#update_virtual_machine) - Update VM
463
+ * [create_virtual_machine_action](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/virtualmachinessdk/README.md#create_virtual_machine_action) - Run VM power action
443
464
 
444
465
  ### [VpnSessions](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md)
445
466
 
446
- * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#list) - List all Active VPN Sessions
447
- * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#create) - Create a VPN Session
448
- * [refresh_password](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#refresh_password) - Refresh a VPN Session
449
- * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#delete) - Delete a VPN Session
467
+ * [list](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#list) - List VPN sessions
468
+ * [create](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#create) - Create VPN session
469
+ * [refresh_password](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#refresh_password) - Refresh VPN session
470
+ * [delete](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/docs/sdks/vpnsessions/README.md#delete) - Delete VPN session
450
471
 
451
472
  </details>
452
473
  <!-- End Available Resources and Operations [operations] -->
@@ -527,16 +548,18 @@ with Latitudesh(
527
548
 
528
549
  [`LatitudeshError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/latitudesherror.py) is the base class for all HTTP error responses. It has the following properties:
529
550
 
530
- | Property | Type | Description |
531
- | ------------------ | ---------------- | ------------------------------------------------------ |
532
- | `err.message` | `str` | Error message |
533
- | `err.status_code` | `int` | HTTP response status code eg `404` |
534
- | `err.headers` | `httpx.Headers` | HTTP response headers |
535
- | `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
536
- | `err.raw_response` | `httpx.Response` | Raw HTTP response |
551
+ | Property | Type | Description |
552
+ | ------------------ | ---------------- | --------------------------------------------------------------------------------------- |
553
+ | `err.message` | `str` | Error message |
554
+ | `err.status_code` | `int` | HTTP response status code eg `404` |
555
+ | `err.headers` | `httpx.Headers` | HTTP response headers |
556
+ | `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
557
+ | `err.raw_response` | `httpx.Response` | Raw HTTP response |
558
+ | `err.data` | | Optional. Some errors may contain structured data. [See Error Classes](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/#error-classes). |
537
559
 
538
560
  ### Example
539
561
  ```python
562
+ import latitudesh_python_sdk
540
563
  from latitudesh_python_sdk import Latitudesh, models
541
564
  import os
542
565
 
@@ -547,7 +570,13 @@ with Latitudesh(
547
570
  res = None
548
571
  try:
549
572
 
550
- res = latitudesh.api_keys.list()
573
+ res = latitudesh.elastic_ips.create_elastic_ip(data={
574
+ "type": latitudesh_python_sdk.CreateElasticIPType.ELASTIC_IPS,
575
+ "attributes": {
576
+ "project_id": "proj_AoW6vRnwkvLn0",
577
+ "server_id": "sv_2GmAlJ6BXlK1a",
578
+ },
579
+ })
551
580
 
552
581
  # Handle response
553
582
  print(res)
@@ -561,13 +590,16 @@ with Latitudesh(
561
590
  print(e.headers)
562
591
  print(e.raw_response)
563
592
 
593
+ # Depending on the method different errors may be thrown
594
+ if isinstance(e, models.ErrorObject):
595
+ print(e.data.errors) # Optional[List[latitudesh_python_sdk.Errors]]
564
596
  ```
565
597
 
566
598
  ### Error Classes
567
599
  **Primary error:**
568
600
  * [`LatitudeshError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/latitudesherror.py): The base class for HTTP error responses.
569
601
 
570
- <details><summary>Less common errors (5)</summary>
602
+ <details><summary>Less common errors (6)</summary>
571
603
 
572
604
  <br />
573
605
 
@@ -578,9 +610,12 @@ with Latitudesh(
578
610
 
579
611
 
580
612
  **Inherit from [`LatitudeshError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/latitudesherror.py)**:
613
+ * [`ErrorObject`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/errorobject.py): Applicable to 17 of 127 methods.*
581
614
  * [`ResponseValidationError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
582
615
 
583
616
  </details>
617
+
618
+ \* Check [the method documentation](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/#available-resources-and-operations) to see if the error is applicable.
584
619
  <!-- End Error Handling [errors] -->
585
620
 
586
621
  <!-- Start Server Selection [server] -->