hyperstack 1.54.7a0__tar.gz → 1.55.4a0__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 (828) hide show
  1. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/PKG-INFO +1 -1
  2. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/README.md +8 -1
  3. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/__init__.py +7 -1
  4. hyperstack-1.55.4a0/hyperstack/_user_agent.py +107 -0
  5. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/api_key_api.py +6 -6
  6. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/assigning_member_role_api.py +6 -6
  7. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/auth_api.py +3 -3
  8. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/callbacks_api.py +18 -18
  9. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/compliance_api.py +3 -3
  10. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/dashboard_api.py +3 -3
  11. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/environment_api.py +6 -6
  12. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/firewall_attachment_api.py +3 -3
  13. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/firewalls_api.py +15 -15
  14. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/flavor_api.py +3 -3
  15. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/floating_ip_api.py +6 -6
  16. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/image_api.py +3 -3
  17. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/invite_api.py +9 -9
  18. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/keypair_api.py +6 -6
  19. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/organization_api.py +9 -9
  20. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/permission_api.py +3 -3
  21. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/policy_api.py +3 -3
  22. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/profile_api.py +9 -9
  23. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/rbac_role_api.py +15 -15
  24. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/region_api.py +3 -3
  25. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/stock_api.py +3 -3
  26. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/template_api.py +6 -6
  27. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/user_permission_api.py +6 -6
  28. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/virtual_machine_api.py +315 -12
  29. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/virtual_machine_events_api.py +3 -3
  30. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/vnc_url_api.py +6 -6
  31. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/volume_attachment_api.py +3 -3
  32. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api_client.py +3 -3
  33. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/configuration.py +1 -1
  34. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/__init__.py +6 -0
  35. hyperstack-1.55.4a0/hyperstack/models/compatible_image.py +95 -0
  36. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_instances_payload.py +10 -8
  37. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_volume_payload.py +1 -1
  38. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_fields.py +8 -2
  39. hyperstack-1.55.4a0/hyperstack/models/image_restrictions.py +99 -0
  40. hyperstack-1.55.4a0/hyperstack/models/instance_enhanced_metrics_fields.py +87 -0
  41. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_fields.py +7 -1
  42. hyperstack-1.55.4a0/hyperstack/models/user_enhanced_metrics_payload.py +87 -0
  43. hyperstack-1.55.4a0/hyperstack/models/user_enhanced_metrics_response.py +97 -0
  44. hyperstack-1.55.4a0/hyperstack/models/user_enhanced_metrics_response_fields.py +87 -0
  45. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/PKG-INFO +1 -1
  46. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/SOURCES.txt +13 -0
  47. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/pyproject.toml +1 -1
  48. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/setup.py +1 -1
  49. hyperstack-1.55.4a0/test/test_compatible_image.py +55 -0
  50. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_instances_payload.py +1 -0
  51. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_instances_response.py +2 -0
  52. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_fields.py +11 -0
  53. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_item_get_response.py +1 -0
  54. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_list_response.py +1 -0
  55. hyperstack-1.55.4a0/test/test_image_restrictions.py +60 -0
  56. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance.py +2 -0
  57. hyperstack-1.55.4a0/test/test_instance_enhanced_metrics_fields.py +51 -0
  58. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_fields.py +2 -0
  59. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instances.py +2 -0
  60. hyperstack-1.55.4a0/test/test_user_enhanced_metrics_payload.py +52 -0
  61. hyperstack-1.55.4a0/test/test_user_enhanced_metrics_response.py +55 -0
  62. hyperstack-1.55.4a0/test/test_user_enhanced_metrics_response_fields.py +51 -0
  63. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_virtual_machine_api.py +7 -0
  64. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/__init__.py +0 -0
  65. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/access_keys_api.py +0 -0
  66. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/alive_api.py +0 -0
  67. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/auto_topup_api.py +0 -0
  68. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/beta_access_api.py +0 -0
  69. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/billing_api.py +0 -0
  70. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/buckets_api.py +0 -0
  71. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/calculate_api.py +0 -0
  72. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/cluster_events_api.py +0 -0
  73. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/clusters_api.py +0 -0
  74. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/credit_api.py +0 -0
  75. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/customer_contract_api.py +0 -0
  76. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/deployment_api.py +0 -0
  77. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/email_opt_in_out_api.py +0 -0
  78. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/fip_exclusions_api.py +0 -0
  79. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/gpu_api.py +0 -0
  80. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/health_api.py +0 -0
  81. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/partner_config_api.py +0 -0
  82. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/payment_api.py +0 -0
  83. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/pricebook_api.py +0 -0
  84. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/regions_api.py +0 -0
  85. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/security_rules_api.py +0 -0
  86. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/snapshot_events_api.py +0 -0
  87. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/snapshots_api.py +0 -0
  88. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/user_api.py +0 -0
  89. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/user_consent_api.py +0 -0
  90. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/user_consent_events_api.py +0 -0
  91. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/user_detail_choice_api.py +0 -0
  92. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/volume_api.py +0 -0
  93. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api/vouchers_api.py +0 -0
  94. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/api_response.py +0 -0
  95. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/exceptions.py +0 -0
  96. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/access_token_field.py +0 -0
  97. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
  98. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
  99. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/allowed_countries_response.py +0 -0
  100. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/api_key_fields.py +0 -0
  101. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
  102. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_callback_payload.py +0 -0
  103. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_callback_response.py +0 -0
  104. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
  105. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
  106. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_volume_fields.py +0 -0
  107. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_volumes.py +0 -0
  108. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_volumes_payload.py +0 -0
  109. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
  110. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/attributes.py +0 -0
  111. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
  112. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/auth_user_fields.py +0 -0
  113. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
  114. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/auto_topup.py +0 -0
  115. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/auto_topup_error_response.py +0 -0
  116. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/auto_topup_status_schema.py +0 -0
  117. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_request_fields.py +0 -0
  118. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_request_payload.py +0 -0
  119. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
  120. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_status_item.py +0 -0
  121. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
  122. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history.py +0 -0
  123. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
  124. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
  125. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_image_generation_details.py +0 -0
  126. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
  127. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
  128. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
  129. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_metrices_fields.py +0 -0
  130. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_metrices_response.py +0 -0
  131. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_events.py +0 -0
  132. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_events_fields.py +0 -0
  133. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_fields.py +0 -0
  134. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
  135. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_list_response.py +0 -0
  136. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_fields.py +0 -0
  137. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_group_fields.py +0 -0
  138. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_group_firewall_fields.py +0 -0
  139. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
  140. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
  141. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
  142. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
  143. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
  144. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_response.py +0 -0
  145. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_version.py +0 -0
  146. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_versions.py +0 -0
  147. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/colors.py +0 -0
  148. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/common_response_model.py +0 -0
  149. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/compatible_flavor.py +0 -0
  150. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_fields.py +0 -0
  151. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_model_fields.py +0 -0
  152. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_payload.py +0 -0
  153. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_response.py +0 -0
  154. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_action_response.py +0 -0
  155. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_block.py +0 -0
  156. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_events_response.py +0 -0
  157. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_template.py +0 -0
  158. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_templates_response.py +0 -0
  159. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/container_overview_fields.py +0 -0
  160. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/contract.py +0 -0
  161. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
  162. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
  163. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_instance_fields.py +0 -0
  164. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_instances_response.py +0 -0
  165. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_auto_topup_payload.py +0 -0
  166. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_auto_topup_response.py +0 -0
  167. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
  168. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_cluster_node_group_payload.py +0 -0
  169. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_cluster_payload.py +0 -0
  170. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_environment.py +0 -0
  171. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_firewall_payload.py +0 -0
  172. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
  173. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_image.py +0 -0
  174. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_image_payload.py +0 -0
  175. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_instances_response.py +0 -0
  176. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_profile_payload.py +0 -0
  177. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_profile_response.py +0 -0
  178. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_security_rule_payload.py +0 -0
  179. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_snapshot_payload.py +0 -0
  180. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_snapshot_response.py +0 -0
  181. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_update_compliance_response.py +0 -0
  182. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
  183. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
  184. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/customer_contract_fields.py +0 -0
  185. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/dashboard_info_response.py +0 -0
  186. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
  187. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/delete_cluster_nodes_fields.py +0 -0
  188. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/deployment_fields.py +0 -0
  189. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
  190. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/deployments.py +0 -0
  191. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/detach_volumes.py +0 -0
  192. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/detach_volumes_payload.py +0 -0
  193. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/disable_auto_topup_response.py +0 -0
  194. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
  195. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/email_category.py +0 -0
  196. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/email_category_child.py +0 -0
  197. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/email_preferences_response.py +0 -0
  198. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/environment.py +0 -0
  199. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/environment_features.py +0 -0
  200. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/environment_fields.py +0 -0
  201. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
  202. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/environments.py +0 -0
  203. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/error_response_model.py +0 -0
  204. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_attachment_model.py +0 -0
  205. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
  206. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_detail_fields.py +0 -0
  207. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_detail_response.py +0 -0
  208. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_environment_fields.py +0 -0
  209. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_fields.py +0 -0
  210. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_response.py +0 -0
  211. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_rule.py +0 -0
  212. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/firewalls_list_response.py +0 -0
  213. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_item_get_response.py +0 -0
  214. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_label_fields.py +0 -0
  215. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_list_response.py +0 -0
  216. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_object_fields.py +0 -0
  217. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_restrictions.py +0 -0
  218. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/generate_update_api_key_payload.py +0 -0
  219. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
  220. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
  221. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_auto_topup_response.py +0 -0
  222. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
  223. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
  224. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
  225. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_instance_logs_response.py +0 -0
  226. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_invites_response_model.py +0 -0
  227. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_organization_response_model.py +0 -0
  228. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_permissions_response_model.py +0 -0
  229. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_policies_response_model.py +0 -0
  230. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
  231. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
  232. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/gpu_fields.py +0 -0
  233. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/gpu_list.py +0 -0
  234. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/gpu_region_fields.py +0 -0
  235. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
  236. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/image.py +0 -0
  237. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/image_fields.py +0 -0
  238. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/image_generation_billing_history_details_response_schema.py +0 -0
  239. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/image_get_response.py +0 -0
  240. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/images.py +0 -0
  241. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/import_keypair_payload.py +0 -0
  242. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/import_keypair_response.py +0 -0
  243. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
  244. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance.py +0 -0
  245. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_environment_fields.py +0 -0
  246. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_events.py +0 -0
  247. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_events_fields.py +0 -0
  248. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_flavor_fields.py +0 -0
  249. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_image_fields.py +0 -0
  250. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_keypair_fields.py +0 -0
  251. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_overview_fields.py +0 -0
  252. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_resize_payload.py +0 -0
  253. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/instances.py +0 -0
  254. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/invite_fields.py +0 -0
  255. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/invite_user_payload.py +0 -0
  256. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/invite_user_response_model.py +0 -0
  257. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/keypair_environment_features.py +0 -0
  258. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/keypair_environment_fields.py +0 -0
  259. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/keypair_fields.py +0 -0
  260. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/keypairs.py +0 -0
  261. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/lable_resonse.py +0 -0
  262. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/last_day_cost_fields.py +0 -0
  263. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/last_day_cost_response.py +0 -0
  264. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/logos.py +0 -0
  265. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
  266. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/master_flavors_response.py +0 -0
  267. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/metric_item_fields.py +0 -0
  268. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/metrics.py +0 -0
  269. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/metrics_fields.py +0 -0
  270. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/mfa_status_fields.py +0 -0
  271. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/mfa_status_response.py +0 -0
  272. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
  273. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/name_available_model.py +0 -0
  274. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/new_configurations_response.py +0 -0
  275. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/new_model_response.py +0 -0
  276. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/new_stock_response.py +0 -0
  277. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
  278. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_create_request.py +0 -0
  279. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_create_response.py +0 -0
  280. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_list_response.py +0 -0
  281. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_response.py +0 -0
  282. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_bucket_list_response.py +0 -0
  283. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_bucket_response.py +0 -0
  284. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_delete_response.py +0 -0
  285. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_error_response.py +0 -0
  286. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_health_response.py +0 -0
  287. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_pagination_meta.py +0 -0
  288. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_region_list_response.py +0 -0
  289. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_region_response.py +0 -0
  290. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_regions_enum.py +0 -0
  291. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_fields.py +0 -0
  292. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history.py +0 -0
  293. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
  294. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
  295. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
  296. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
  297. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_threshold_fields.py +0 -0
  298. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
  299. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_thresholds_response.py +0 -0
  300. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_user_response_model.py +0 -0
  301. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/overview_info.py +0 -0
  302. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/pagination.py +0 -0
  303. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/pagination_data.py +0 -0
  304. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/partner_config.py +0 -0
  305. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_details_fields.py +0 -0
  306. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_details_response.py +0 -0
  307. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_initiate_fields.py +0 -0
  308. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_initiate_payload.py +0 -0
  309. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_initiate_response.py +0 -0
  310. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/permission_fields.py +0 -0
  311. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/policy_fields.py +0 -0
  312. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/policy_permission_fields.py +0 -0
  313. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/pricebook_model.py +0 -0
  314. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
  315. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/primary_color.py +0 -0
  316. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/profile_fields.py +0 -0
  317. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/profile_list_response.py +0 -0
  318. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/profile_object_fields.py +0 -0
  319. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
  320. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
  321. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_field.py +0 -0
  322. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_fields.py +0 -0
  323. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/record_consent_request.py +0 -0
  324. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/redeem_voucher_payload.py +0 -0
  325. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/region_fields.py +0 -0
  326. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/regions.py +0 -0
  327. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
  328. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/remove_member_payload.py +0 -0
  329. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/request_console.py +0 -0
  330. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
  331. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/request_instance_logs_response.py +0 -0
  332. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
  333. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
  334. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
  335. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
  336. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
  337. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
  338. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
  339. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
  340. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
  341. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
  342. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history.py +0 -0
  343. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
  344. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
  345. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
  346. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
  347. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
  348. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
  349. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
  350. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
  351. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
  352. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
  353. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
  354. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
  355. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
  356. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
  357. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
  358. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
  359. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
  360. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
  361. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
  362. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
  363. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
  364. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
  365. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
  366. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
  367. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
  368. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/response_model.py +0 -0
  369. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/role_permission_fields.py +0 -0
  370. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/role_policy_fields.py +0 -0
  371. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/secondary_color.py +0 -0
  372. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/security_group_rule.py +0 -0
  373. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/security_group_rule_fields.py +0 -0
  374. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
  375. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
  376. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
  377. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_fields.py +0 -0
  378. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_restore_request.py +0 -0
  379. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_retrieve.py +0 -0
  380. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
  381. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshots.py +0 -0
  382. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/start_deployment.py +0 -0
  383. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/start_deployment_payload.py +0 -0
  384. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
  385. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
  386. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
  387. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
  388. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
  389. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/supported_keypair_public_key_types_response.py +0 -0
  390. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/template.py +0 -0
  391. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/template_fields.py +0 -0
  392. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/templates.py +0 -0
  393. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
  394. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_auto_topup_payload.py +0 -0
  395. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_auto_topup_response.py +0 -0
  396. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_cluster_node_group_payload.py +0 -0
  397. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_consent_request.py +0 -0
  398. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_email_preference_input.py +0 -0
  399. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_email_preference_response.py +0 -0
  400. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_environment.py +0 -0
  401. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_keypair_name.py +0 -0
  402. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_keypair_name_response.py +0 -0
  403. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_organization_payload.py +0 -0
  404. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_organization_response_model.py +0 -0
  405. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_template.py +0 -0
  406. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
  407. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_volume_payload.py +0 -0
  408. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/update_volume_response.py +0 -0
  409. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/uris.py +0 -0
  410. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_consent.py +0 -0
  411. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_consent_event.py +0 -0
  412. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_consents_response.py +0 -0
  413. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
  414. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
  415. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_info_post_payload.py +0 -0
  416. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_organizations_response.py +0 -0
  417. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/user_permission_fields.py +0 -0
  418. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/users_info_fields.py +0 -0
  419. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/users_info_list_response.py +0 -0
  420. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/vm_quota.py +0 -0
  421. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/vncurl.py +0 -0
  422. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/vncurl_fields.py +0 -0
  423. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volume.py +0 -0
  424. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_attachment_fields.py +0 -0
  425. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_fields.py +0 -0
  426. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
  427. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_overview_fields.py +0 -0
  428. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_types.py +0 -0
  429. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volumes.py +0 -0
  430. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/volumes_fields.py +0 -0
  431. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/voucher.py +0 -0
  432. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/voucher_redeem_response_schema.py +0 -0
  433. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/models/workload_billing_history_response.py +0 -0
  434. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/py.typed +0 -0
  435. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack/rest.py +0 -0
  436. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/dependency_links.txt +0 -0
  437. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/requires.txt +0 -0
  438. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/top_level.txt +0 -0
  439. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/setup.cfg +0 -0
  440. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_access_keys_api.py +0 -0
  441. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_access_token_field.py +0 -0
  442. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_add_user_info_success_response_model.py +0 -0
  443. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_alive_api.py +0 -0
  444. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_allocated_gpu_count_graph.py +0 -0
  445. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_allowed_countries_response.py +0 -0
  446. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_api_key_api.py +0 -0
  447. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_api_key_fields.py +0 -0
  448. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_assign_rbac_role_payload.py +0 -0
  449. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_assigning_member_role_api.py +0 -0
  450. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_callback_payload.py +0 -0
  451. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_callback_response.py +0 -0
  452. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_firewall_with_vm.py +0 -0
  453. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
  454. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_volume_fields.py +0 -0
  455. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_volumes.py +0 -0
  456. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attach_volumes_payload.py +0 -0
  457. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attachments_fields_for_volume.py +0 -0
  458. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_attributes.py +0 -0
  459. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auth_api.py +0 -0
  460. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auth_get_token_response_model.py +0 -0
  461. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auth_user_fields.py +0 -0
  462. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auth_user_info_response_model.py +0 -0
  463. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auto_topup.py +0 -0
  464. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auto_topup_api.py +0 -0
  465. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auto_topup_error_response.py +0 -0
  466. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_auto_topup_status_schema.py +0 -0
  467. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_beta_access_api.py +0 -0
  468. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_beta_access_request_fields.py +0 -0
  469. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_beta_access_request_payload.py +0 -0
  470. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_beta_access_request_response_model.py +0 -0
  471. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_beta_access_status_item.py +0 -0
  472. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_beta_access_status_response_model.py +0 -0
  473. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_api.py +0 -0
  474. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history.py +0 -0
  475. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history_data_synthesis_details.py +0 -0
  476. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history_fine_tuning.py +0 -0
  477. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history_image_generation_details.py +0 -0
  478. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history_model_evalutation_details.py +0 -0
  479. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history_serverless_inference.py +0 -0
  480. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_history_serverless_inference_details.py +0 -0
  481. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_metrices_fields.py +0 -0
  482. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_billing_metrices_response.py +0 -0
  483. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_buckets_api.py +0 -0
  484. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_calculate_api.py +0 -0
  485. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_callbacks_api.py +0 -0
  486. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_events.py +0 -0
  487. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_events_api.py +0 -0
  488. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_events_fields.py +0 -0
  489. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_fields.py +0 -0
  490. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_flavor_fields.py +0 -0
  491. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_list_response.py +0 -0
  492. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_fields.py +0 -0
  493. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_group_fields.py +0 -0
  494. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_group_firewall_fields.py +0 -0
  495. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_groups_create_response.py +0 -0
  496. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_groups_get_response.py +0 -0
  497. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_groups_list_response.py +0 -0
  498. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_node_instance_fields.py +0 -0
  499. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_nodes_list_response.py +0 -0
  500. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_response.py +0 -0
  501. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_version.py +0 -0
  502. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_cluster_versions.py +0 -0
  503. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_clusters_api.py +0 -0
  504. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_colors.py +0 -0
  505. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_common_response_model.py +0 -0
  506. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_compatible_flavor.py +0 -0
  507. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_compliance_api.py +0 -0
  508. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_compliance_fields.py +0 -0
  509. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_compliance_model_fields.py +0 -0
  510. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_compliance_payload.py +0 -0
  511. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_compliance_response.py +0 -0
  512. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_consent_action_response.py +0 -0
  513. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_consent_block.py +0 -0
  514. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_consent_events_response.py +0 -0
  515. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_consent_template.py +0 -0
  516. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_consent_templates_response.py +0 -0
  517. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_container_overview_fields.py +0 -0
  518. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_contract.py +0 -0
  519. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_contract_discount_plan_fields.py +0 -0
  520. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
  521. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_contract_instance_fields.py +0 -0
  522. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_contract_instances_response.py +0 -0
  523. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_auto_topup_payload.py +0 -0
  524. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_auto_topup_response.py +0 -0
  525. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_cluster_node_fields.py +0 -0
  526. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_cluster_node_group_payload.py +0 -0
  527. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_cluster_payload.py +0 -0
  528. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_environment.py +0 -0
  529. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_firewall_payload.py +0 -0
  530. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_firewall_rule_payload.py +0 -0
  531. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_image.py +0 -0
  532. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_image_payload.py +0 -0
  533. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_profile_payload.py +0 -0
  534. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_profile_response.py +0 -0
  535. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_security_rule_payload.py +0 -0
  536. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_snapshot_payload.py +0 -0
  537. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_snapshot_response.py +0 -0
  538. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_update_compliance_response.py +0 -0
  539. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_update_rbac_role_payload.py +0 -0
  540. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_create_volume_payload.py +0 -0
  541. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_credit_api.py +0 -0
  542. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_customer_contract_api.py +0 -0
  543. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_customer_contract_detail_response_model.py +0 -0
  544. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_customer_contract_fields.py +0 -0
  545. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_dashboard_api.py +0 -0
  546. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_dashboard_info_response.py +0 -0
  547. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
  548. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_delete_cluster_nodes_fields.py +0 -0
  549. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_deployment_api.py +0 -0
  550. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_deployment_fields.py +0 -0
  551. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
  552. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_deployments.py +0 -0
  553. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_detach_volumes.py +0 -0
  554. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_detach_volumes_payload.py +0 -0
  555. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_disable_auto_topup_response.py +0 -0
  556. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
  557. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_email_category.py +0 -0
  558. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_email_category_child.py +0 -0
  559. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_email_opt_in_out_api.py +0 -0
  560. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_email_preferences_response.py +0 -0
  561. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_environment.py +0 -0
  562. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_environment_api.py +0 -0
  563. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_environment_features.py +0 -0
  564. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_environment_fields.py +0 -0
  565. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_environment_fields_for_volume.py +0 -0
  566. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_environments.py +0 -0
  567. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_error_response_model.py +0 -0
  568. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_fip_exclusions_api.py +0 -0
  569. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_attachment_api.py +0 -0
  570. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_attachment_model.py +0 -0
  571. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_attachment_vm_model.py +0 -0
  572. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_detail_fields.py +0 -0
  573. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_detail_response.py +0 -0
  574. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_environment_fields.py +0 -0
  575. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_fields.py +0 -0
  576. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_response.py +0 -0
  577. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewall_rule.py +0 -0
  578. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewalls_api.py +0 -0
  579. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_firewalls_list_response.py +0 -0
  580. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_api.py +0 -0
  581. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_label_fields.py +0 -0
  582. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_object_fields.py +0 -0
  583. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_flavor_restrictions.py +0 -0
  584. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_floating_ip_api.py +0 -0
  585. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_generate_update_api_key_payload.py +0 -0
  586. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_generate_update_api_key_response_model.py +0 -0
  587. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_api_keys_response_model.py +0 -0
  588. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_auto_topup_response.py +0 -0
  589. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_credit_and_threshold_info.py +0 -0
  590. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
  591. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
  592. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_instance_logs_response.py +0 -0
  593. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_invites_response_model.py +0 -0
  594. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_organization_response_model.py +0 -0
  595. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_permissions_response_model.py +0 -0
  596. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_policies_response_model.py +0 -0
  597. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_rbac_roles_response_model.py +0 -0
  598. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_get_user_permissions_response_model.py +0 -0
  599. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_gpu_api.py +0 -0
  600. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_gpu_fields.py +0 -0
  601. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_gpu_list.py +0 -0
  602. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_gpu_region_fields.py +0 -0
  603. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_graph_datetime_value_model.py +0 -0
  604. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_health_api.py +0 -0
  605. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_image.py +0 -0
  606. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_image_api.py +0 -0
  607. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_image_fields.py +0 -0
  608. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_image_generation_billing_history_details_response_schema.py +0 -0
  609. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_image_get_response.py +0 -0
  610. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_images.py +0 -0
  611. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_import_keypair_payload.py +0 -0
  612. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_import_keypair_response.py +0 -0
  613. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
  614. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_environment_fields.py +0 -0
  615. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_events.py +0 -0
  616. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_events_fields.py +0 -0
  617. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_flavor_fields.py +0 -0
  618. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_image_fields.py +0 -0
  619. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_keypair_fields.py +0 -0
  620. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_overview_fields.py +0 -0
  621. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_instance_resize_payload.py +0 -0
  622. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_invite_api.py +0 -0
  623. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_invite_fields.py +0 -0
  624. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_invite_user_payload.py +0 -0
  625. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_invite_user_response_model.py +0 -0
  626. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_keypair_api.py +0 -0
  627. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_keypair_environment_features.py +0 -0
  628. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_keypair_environment_fields.py +0 -0
  629. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_keypair_fields.py +0 -0
  630. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_keypairs.py +0 -0
  631. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_lable_resonse.py +0 -0
  632. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_last_day_cost_fields.py +0 -0
  633. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_last_day_cost_response.py +0 -0
  634. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_logos.py +0 -0
  635. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_manual_reconciliation_model.py +0 -0
  636. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_master_flavors_response.py +0 -0
  637. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_metric_item_fields.py +0 -0
  638. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_metrics.py +0 -0
  639. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_metrics_fields.py +0 -0
  640. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_mfa_status_fields.py +0 -0
  641. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_mfa_status_response.py +0 -0
  642. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
  643. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_name_available_model.py +0 -0
  644. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_new_configurations_response.py +0 -0
  645. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_new_model_response.py +0 -0
  646. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_new_stock_response.py +0 -0
  647. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_new_stock_retrive_response.py +0 -0
  648. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_create_request.py +0 -0
  649. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_create_response.py +0 -0
  650. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_list_response.py +0 -0
  651. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_response.py +0 -0
  652. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_bucket_list_response.py +0 -0
  653. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_bucket_response.py +0 -0
  654. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_delete_response.py +0 -0
  655. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_error_response.py +0 -0
  656. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_health_response.py +0 -0
  657. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_pagination_meta.py +0 -0
  658. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_region_list_response.py +0 -0
  659. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_region_response.py +0 -0
  660. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_object_storage_regions_enum.py +0 -0
  661. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_api.py +0 -0
  662. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_fields.py +0 -0
  663. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history.py +0 -0
  664. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_resources.py +0 -0
  665. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
  666. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
  667. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_response_model.py +0 -0
  668. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_threshold_fields.py +0 -0
  669. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_threshold_update_response.py +0 -0
  670. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_thresholds_response.py +0 -0
  671. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_organization_user_response_model.py +0 -0
  672. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_overview_info.py +0 -0
  673. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_pagination.py +0 -0
  674. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_pagination_data.py +0 -0
  675. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_partner_config.py +0 -0
  676. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_partner_config_api.py +0 -0
  677. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_payment_api.py +0 -0
  678. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_payment_details_fields.py +0 -0
  679. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_payment_details_response.py +0 -0
  680. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_payment_initiate_fields.py +0 -0
  681. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_payment_initiate_payload.py +0 -0
  682. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_payment_initiate_response.py +0 -0
  683. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_permission_api.py +0 -0
  684. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_permission_fields.py +0 -0
  685. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_policy_api.py +0 -0
  686. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_policy_fields.py +0 -0
  687. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_policy_permission_fields.py +0 -0
  688. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_pricebook_api.py +0 -0
  689. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_pricebook_model.py +0 -0
  690. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
  691. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_primary_color.py +0 -0
  692. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_profile_api.py +0 -0
  693. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_profile_fields.py +0 -0
  694. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_profile_list_response.py +0 -0
  695. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_profile_object_fields.py +0 -0
  696. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_rbac_role_api.py +0 -0
  697. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_rbac_role_detail_response_model.py +0 -0
  698. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
  699. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_rbac_role_field.py +0 -0
  700. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_rbac_role_fields.py +0 -0
  701. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_record_consent_request.py +0 -0
  702. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_redeem_voucher_payload.py +0 -0
  703. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_region_api.py +0 -0
  704. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_region_fields.py +0 -0
  705. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_regions.py +0 -0
  706. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_regions_api.py +0 -0
  707. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_remove_member_from_organization_response_model.py +0 -0
  708. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_remove_member_payload.py +0 -0
  709. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_request_console.py +0 -0
  710. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_request_instance_logs_payload.py +0 -0
  711. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_request_instance_logs_response.py +0 -0
  712. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_billing_events_history_metrics.py +0 -0
  713. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_billing_events_history_response.py +0 -0
  714. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_billing_response_for_customer.py +0 -0
  715. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
  716. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_attributes.py +0 -0
  717. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_metrics.py +0 -0
  718. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_vm.py +0 -0
  719. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_volume.py +0 -0
  720. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
  721. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
  722. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history.py +0 -0
  723. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_resources.py +0 -0
  724. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
  725. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
  726. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
  727. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
  728. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
  729. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
  730. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
  731. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
  732. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
  733. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
  734. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
  735. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
  736. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
  737. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
  738. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
  739. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
  740. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
  741. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
  742. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
  743. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
  744. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
  745. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
  746. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
  747. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_resource_object_response_for_customer.py +0 -0
  748. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_response_model.py +0 -0
  749. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_role_permission_fields.py +0 -0
  750. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_role_policy_fields.py +0 -0
  751. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_secondary_color.py +0 -0
  752. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_security_group_rule.py +0 -0
  753. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_security_group_rule_fields.py +0 -0
  754. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_security_rules_api.py +0 -0
  755. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_security_rules_fields_for_instance.py +0 -0
  756. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_security_rules_protocol_fields.py +0 -0
  757. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
  758. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshot_events_api.py +0 -0
  759. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshot_fields.py +0 -0
  760. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshot_restore_request.py +0 -0
  761. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshot_retrieve.py +0 -0
  762. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshot_retrieve_fields.py +0 -0
  763. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshots.py +0 -0
  764. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_snapshots_api.py +0 -0
  765. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_start_deployment.py +0 -0
  766. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_start_deployment_payload.py +0 -0
  767. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_stock_api.py +0 -0
  768. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
  769. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_sub_resources_costs_response_model.py +0 -0
  770. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
  771. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_sub_resources_graph_response_model.py +0 -0
  772. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
  773. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_supported_keypair_public_key_types_response.py +0 -0
  774. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_template.py +0 -0
  775. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_template_api.py +0 -0
  776. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_template_fields.py +0 -0
  777. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_templates.py +0 -0
  778. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_token_based_billing_history_response.py +0 -0
  779. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_auto_topup_payload.py +0 -0
  780. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_auto_topup_response.py +0 -0
  781. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_cluster_node_group_payload.py +0 -0
  782. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_consent_request.py +0 -0
  783. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_email_preference_input.py +0 -0
  784. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_email_preference_response.py +0 -0
  785. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_environment.py +0 -0
  786. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_keypair_name.py +0 -0
  787. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_keypair_name_response.py +0 -0
  788. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_organization_payload.py +0 -0
  789. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_organization_response_model.py +0 -0
  790. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_template.py +0 -0
  791. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_volume_attachment_payload.py +0 -0
  792. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_volume_payload.py +0 -0
  793. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_update_volume_response.py +0 -0
  794. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_uris.py +0 -0
  795. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_api.py +0 -0
  796. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_consent.py +0 -0
  797. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_consent_api.py +0 -0
  798. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_consent_event.py +0 -0
  799. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_consent_events_api.py +0 -0
  800. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_consents_response.py +0 -0
  801. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_default_choice_for_user_fields.py +0 -0
  802. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_default_choices_for_user_response.py +0 -0
  803. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_detail_choice_api.py +0 -0
  804. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_info_post_payload.py +0 -0
  805. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_organizations_response.py +0 -0
  806. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_permission_api.py +0 -0
  807. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_user_permission_fields.py +0 -0
  808. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_users_info_fields.py +0 -0
  809. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_users_info_list_response.py +0 -0
  810. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_virtual_machine_events_api.py +0 -0
  811. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_vm_quota.py +0 -0
  812. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_vnc_url_api.py +0 -0
  813. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_vncurl.py +0 -0
  814. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_vncurl_fields.py +0 -0
  815. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume.py +0 -0
  816. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_api.py +0 -0
  817. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_attachment_api.py +0 -0
  818. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_attachment_fields.py +0 -0
  819. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_fields.py +0 -0
  820. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_fields_for_instance.py +0 -0
  821. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_overview_fields.py +0 -0
  822. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volume_types.py +0 -0
  823. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volumes.py +0 -0
  824. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_volumes_fields.py +0 -0
  825. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_voucher.py +0 -0
  826. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_voucher_redeem_response_schema.py +0 -0
  827. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_vouchers_api.py +0 -0
  828. {hyperstack-1.54.7a0 → hyperstack-1.55.4a0}/test/test_workload_billing_history_response.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperstack
3
- Version: 1.54.7a0
3
+ Version: 1.55.4a0
4
4
  Summary: Infrahub-API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -8,7 +8,7 @@ To contribute, please raise an issue with a bug report, feature request, feedbac
8
8
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
9
9
 
10
10
  - API version: 1.0
11
- - Package version: v1.54.7-alpha
11
+ - Package version: v1.55.4-alpha
12
12
  - Generator version: 7.10.0
13
13
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
14
14
 
@@ -309,6 +309,7 @@ Class | Method | HTTP request | Description
309
309
  *VirtualMachineApi* | [**restore_vm_from_hibernation**](docs/VirtualMachineApi.md#restore_vm_from_hibernation) | **GET** /core/virtual-machines/{vm_id}/hibernate-restore | Restore virtual machine from hibernation
310
310
  *VirtualMachineApi* | [**start_vm**](docs/VirtualMachineApi.md#start_vm) | **GET** /core/virtual-machines/{vm_id}/start | Start virtual machine
311
311
  *VirtualMachineApi* | [**stop_vm**](docs/VirtualMachineApi.md#stop_vm) | **GET** /core/virtual-machines/{vm_id}/stop | Stop virtual machine
312
+ *VirtualMachineApi* | [**toggle_enhanced_metrics_for_avm**](docs/VirtualMachineApi.md#toggle_enhanced_metrics_for_avm) | **PATCH** /core/virtual-machines/{vm_id}/enhanced-metrics | Enable or disable Enhanced Metrics for a virtual machine
312
313
  *VirtualMachineEventsApi* | [**list_vm_events**](docs/VirtualMachineEventsApi.md#list_vm_events) | **GET** /core/virtual-machines/{vm_id}/events | List virtual machine events
313
314
  *VncUrlApi* | [**get_vncurl**](docs/VncUrlApi.md#get_vncurl) | **GET** /core/virtual-machines/{vm_id}/console/{job_id} | Get VNC Console Link
314
315
  *VncUrlApi* | [**request_vm_console**](docs/VncUrlApi.md#request_vm_console) | **GET** /core/virtual-machines/{vm_id}/request-console | Request Instance Console
@@ -381,6 +382,7 @@ Class | Method | HTTP request | Description
381
382
  - [Colors](docs/Colors.md)
382
383
  - [CommonResponseModel](docs/CommonResponseModel.md)
383
384
  - [CompatibleFlavor](docs/CompatibleFlavor.md)
385
+ - [CompatibleImage](docs/CompatibleImage.md)
384
386
  - [ComplianceFields](docs/ComplianceFields.md)
385
387
  - [ComplianceModelFields](docs/ComplianceModelFields.md)
386
388
  - [CompliancePayload](docs/CompliancePayload.md)
@@ -474,11 +476,13 @@ Class | Method | HTTP request | Description
474
476
  - [ImageFields](docs/ImageFields.md)
475
477
  - [ImageGenerationBillingHistoryDetailsResponseSchema](docs/ImageGenerationBillingHistoryDetailsResponseSchema.md)
476
478
  - [ImageGetResponse](docs/ImageGetResponse.md)
479
+ - [ImageRestrictions](docs/ImageRestrictions.md)
477
480
  - [Images](docs/Images.md)
478
481
  - [ImportKeypairPayload](docs/ImportKeypairPayload.md)
479
482
  - [ImportKeypairResponse](docs/ImportKeypairResponse.md)
480
483
  - [InfrahubResourceObjectResponseForCustomer](docs/InfrahubResourceObjectResponseForCustomer.md)
481
484
  - [Instance](docs/Instance.md)
485
+ - [InstanceEnhancedMetricsFields](docs/InstanceEnhancedMetricsFields.md)
482
486
  - [InstanceEnvironmentFields](docs/InstanceEnvironmentFields.md)
483
487
  - [InstanceEvents](docs/InstanceEvents.md)
484
488
  - [InstanceEventsFields](docs/InstanceEventsFields.md)
@@ -650,6 +654,9 @@ Class | Method | HTTP request | Description
650
654
  - [UserConsentsResponse](docs/UserConsentsResponse.md)
651
655
  - [UserDefaultChoiceForUserFields](docs/UserDefaultChoiceForUserFields.md)
652
656
  - [UserDefaultChoicesForUserResponse](docs/UserDefaultChoicesForUserResponse.md)
657
+ - [UserEnhancedMetricsPayload](docs/UserEnhancedMetricsPayload.md)
658
+ - [UserEnhancedMetricsResponse](docs/UserEnhancedMetricsResponse.md)
659
+ - [UserEnhancedMetricsResponseFields](docs/UserEnhancedMetricsResponseFields.md)
653
660
  - [UserInfoPostPayload](docs/UserInfoPostPayload.md)
654
661
  - [UserOrganizationsResponse](docs/UserOrganizationsResponse.md)
655
662
  - [UserPermissionFields](docs/UserPermissionFields.md)
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "v1.54.7-alpha"
17
+ __version__ = "v1.55.4-alpha"
18
18
 
19
19
  # import apis into sdk package
20
20
  from .api.access_keys_api import AccessKeysApi
@@ -140,6 +140,7 @@ from .models.cluster_versions import ClusterVersions
140
140
  from .models.colors import Colors
141
141
  from .models.common_response_model import CommonResponseModel
142
142
  from .models.compatible_flavor import CompatibleFlavor
143
+ from .models.compatible_image import CompatibleImage
143
144
  from .models.compliance_fields import ComplianceFields
144
145
  from .models.compliance_model_fields import ComplianceModelFields
145
146
  from .models.compliance_payload import CompliancePayload
@@ -233,11 +234,13 @@ from .models.image import Image
233
234
  from .models.image_fields import ImageFields
234
235
  from .models.image_generation_billing_history_details_response_schema import ImageGenerationBillingHistoryDetailsResponseSchema
235
236
  from .models.image_get_response import ImageGetResponse
237
+ from .models.image_restrictions import ImageRestrictions
236
238
  from .models.images import Images
237
239
  from .models.import_keypair_payload import ImportKeypairPayload
238
240
  from .models.import_keypair_response import ImportKeypairResponse
239
241
  from .models.infrahub_resource_object_response_for_customer import InfrahubResourceObjectResponseForCustomer
240
242
  from .models.instance import Instance
243
+ from .models.instance_enhanced_metrics_fields import InstanceEnhancedMetricsFields
241
244
  from .models.instance_environment_fields import InstanceEnvironmentFields
242
245
  from .models.instance_events import InstanceEvents
243
246
  from .models.instance_events_fields import InstanceEventsFields
@@ -409,6 +412,9 @@ from .models.user_consent_event import UserConsentEvent
409
412
  from .models.user_consents_response import UserConsentsResponse
410
413
  from .models.user_default_choice_for_user_fields import UserDefaultChoiceForUserFields
411
414
  from .models.user_default_choices_for_user_response import UserDefaultChoicesForUserResponse
415
+ from .models.user_enhanced_metrics_payload import UserEnhancedMetricsPayload
416
+ from .models.user_enhanced_metrics_response import UserEnhancedMetricsResponse
417
+ from .models.user_enhanced_metrics_response_fields import UserEnhancedMetricsResponseFields
412
418
  from .models.user_info_post_payload import UserInfoPostPayload
413
419
  from .models.user_organizations_response import UserOrganizationsResponse
414
420
  from .models.user_permission_fields import UserPermissionFields
@@ -0,0 +1,107 @@
1
+ # coding: utf-8
2
+
3
+ """Forced Hyperstack client identification headers.
4
+
5
+ Maintained in sdk-generator (util/python/_user_agent.py) and copied into the
6
+ generated package by the `add-hyperstack-headers` task. Do not edit in the SDK
7
+ repos -- changes there are overwritten on the next release.
8
+
9
+ The module name deliberately avoids the substring "hyperstack": the generator
10
+ pipeline rewrites absolute imports in this package tree, and keeping this file
11
+ out of that namespace makes it impossible for the rewrite to touch it.
12
+ """
13
+
14
+ import platform
15
+ import sys
16
+
17
+ CLIENT_HEADER = "Hyperstack-Client"
18
+ USER_AGENT_HEADER = "User-Agent"
19
+
20
+ # Stamped by the sdk-generator Taskfile, per flavour:
21
+ # python -> hyperstack-python-sdk
22
+ # python_async -> hyperstack-python-sdk-async
23
+ SDK_NAME = "hyperstack-python-sdk"
24
+
25
+ # Header names we always own, matched case-insensitively so a caller cannot
26
+ # smuggle in a second copy under different casing.
27
+ _FORCED = (CLIENT_HEADER.lower(), USER_AGENT_HEADER.lower())
28
+
29
+ _cache = None
30
+
31
+
32
+ def _sdk_version():
33
+ # Imported lazily: this module is pulled in from api_client, which is itself
34
+ # imported while the package __init__ is still executing.
35
+ try:
36
+ from . import __version__
37
+
38
+ return __version__ or "unknown"
39
+ except Exception:
40
+ return "unknown"
41
+
42
+
43
+ def _normalize_os(value):
44
+ v = (value or "").strip().lower()
45
+ if v.startswith("darwin") or v.startswith("mac"):
46
+ return "darwin"
47
+ if v.startswith("win") or v == "cygwin":
48
+ return "windows"
49
+ if v.startswith("linux"):
50
+ return "linux"
51
+ return v.replace(" ", "-") or "unknown"
52
+
53
+
54
+ def _normalize_arch(value):
55
+ v = (value or "").strip().lower()
56
+ if v in ("x86_64", "x64", "amd64"):
57
+ return "x86_64"
58
+ if v in ("aarch64", "arm64"):
59
+ return "arm64"
60
+ if v in ("i386", "i686", "x86"):
61
+ return "386"
62
+ return v or "unknown"
63
+
64
+
65
+ def _sanitize(value):
66
+ """Keep printable ASCII only, capped at 256 chars.
67
+
68
+ Header values must not carry control characters (CR/LF would allow response
69
+ splitting) and some HTTP stacks reject non-ASCII outright.
70
+ """
71
+ return "".join(c for c in value if 0x20 <= ord(c) < 0x7F)[:256]
72
+
73
+
74
+ def _build():
75
+ client = _sanitize("%s/%s" % (SDK_NAME, _sdk_version()))
76
+ try:
77
+ runtime = "Python/%s" % platform.python_version()
78
+ except Exception:
79
+ runtime = "Python/unknown"
80
+ try:
81
+ os_name = _normalize_os(sys.platform)
82
+ arch = _normalize_arch(platform.machine())
83
+ except Exception:
84
+ os_name, arch = "unknown", "unknown"
85
+ user_agent = _sanitize("%s (%s; %s/%s)" % (client, runtime, os_name, arch))
86
+ return {CLIENT_HEADER: client, USER_AGENT_HEADER: user_agent}
87
+
88
+
89
+ def hyperstack_headers():
90
+ """Return the forced identification headers, computed once and cached."""
91
+ global _cache
92
+ if _cache is None:
93
+ _cache = _build()
94
+ return _cache
95
+
96
+
97
+ def apply_hyperstack_headers(header_params):
98
+ """Force the identification headers onto a mutable header dict.
99
+
100
+ Any caller-supplied variant is dropped first, so exactly one of each is sent.
101
+ """
102
+ if header_params is None:
103
+ return header_params
104
+ for key in [k for k in list(header_params) if str(k).lower() in _FORCED]:
105
+ del header_params[key]
106
+ header_params.update(hyperstack_headers())
107
+ return header_params
@@ -332,7 +332,7 @@ class ApiKeyApi:
332
332
  ) -> GenerateUpdateApiKeyResponseModel:
333
333
  """Generate API Key
334
334
 
335
- Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
335
+ Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
336
336
 
337
337
  :param payload: (required)
338
338
  :type payload: GenerateUpdateApiKeyPayload
@@ -404,7 +404,7 @@ class ApiKeyApi:
404
404
  ) -> ApiResponse[GenerateUpdateApiKeyResponseModel]:
405
405
  """Generate API Key
406
406
 
407
- Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
407
+ Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
408
408
 
409
409
  :param payload: (required)
410
410
  :type payload: GenerateUpdateApiKeyPayload
@@ -476,7 +476,7 @@ class ApiKeyApi:
476
476
  ) -> RESTResponseType:
477
477
  """Generate API Key
478
478
 
479
- Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
479
+ Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
480
480
 
481
481
  :param payload: (required)
482
482
  :type payload: GenerateUpdateApiKeyPayload
@@ -620,7 +620,7 @@ class ApiKeyApi:
620
620
  ) -> GetApiKeysResponseModel:
621
621
  """Retrieve API Keys
622
622
 
623
- Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
623
+ Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
624
624
 
625
625
  :param _request_timeout: timeout setting for this request. If one
626
626
  number provided, it will be total request
@@ -686,7 +686,7 @@ class ApiKeyApi:
686
686
  ) -> ApiResponse[GetApiKeysResponseModel]:
687
687
  """Retrieve API Keys
688
688
 
689
- Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
689
+ Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
690
690
 
691
691
  :param _request_timeout: timeout setting for this request. If one
692
692
  number provided, it will be total request
@@ -752,7 +752,7 @@ class ApiKeyApi:
752
752
  ) -> RESTResponseType:
753
753
  """Retrieve API Keys
754
754
 
755
- Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
755
+ Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
756
756
 
757
757
  :param _request_timeout: timeout setting for this request. If one
758
758
  number provided, it will be total request
@@ -59,7 +59,7 @@ class AssigningMemberRoleApi:
59
59
  ) -> RbacRoleDetailResponseModel:
60
60
  """Assign RBAC Role
61
61
 
62
- Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs...cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
62
+ Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
63
63
 
64
64
  :param user_id: (required)
65
65
  :type user_id: int
@@ -134,7 +134,7 @@ class AssigningMemberRoleApi:
134
134
  ) -> ApiResponse[RbacRoleDetailResponseModel]:
135
135
  """Assign RBAC Role
136
136
 
137
- Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs...cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
137
+ Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
138
138
 
139
139
  :param user_id: (required)
140
140
  :type user_id: int
@@ -209,7 +209,7 @@ class AssigningMemberRoleApi:
209
209
  ) -> RESTResponseType:
210
210
  """Assign RBAC Role
211
211
 
212
- Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs...cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
212
+ Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
213
213
 
214
214
  :param user_id: (required)
215
215
  :type user_id: int
@@ -359,7 +359,7 @@ class AssigningMemberRoleApi:
359
359
  ) -> CommonResponseModel:
360
360
  """Remove RBAC Role From User
361
361
 
362
- Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs...cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
362
+ Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
363
363
 
364
364
  :param user_id: (required)
365
365
  :type user_id: int
@@ -430,7 +430,7 @@ class AssigningMemberRoleApi:
430
430
  ) -> ApiResponse[CommonResponseModel]:
431
431
  """Remove RBAC Role From User
432
432
 
433
- Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs...cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
433
+ Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
434
434
 
435
435
  :param user_id: (required)
436
436
  :type user_id: int
@@ -501,7 +501,7 @@ class AssigningMemberRoleApi:
501
501
  ) -> RESTResponseType:
502
502
  """Remove RBAC Role From User
503
503
 
504
- Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs...cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
504
+ Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
505
505
 
506
506
  :param user_id: (required)
507
507
  :type user_id: int
@@ -1103,7 +1103,7 @@ class AuthApi:
1103
1103
  ) -> AuthUserInfoResponseModel:
1104
1104
  """Retrieve Authenticated User Details
1105
1105
 
1106
- Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/auth).
1106
+ Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
1107
1107
 
1108
1108
  :param _request_timeout: timeout setting for this request. If one
1109
1109
  number provided, it will be total request
@@ -1169,7 +1169,7 @@ class AuthApi:
1169
1169
  ) -> ApiResponse[AuthUserInfoResponseModel]:
1170
1170
  """Retrieve Authenticated User Details
1171
1171
 
1172
- Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/auth).
1172
+ Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
1173
1173
 
1174
1174
  :param _request_timeout: timeout setting for this request. If one
1175
1175
  number provided, it will be total request
@@ -1235,7 +1235,7 @@ class AuthApi:
1235
1235
  ) -> RESTResponseType:
1236
1236
  """Retrieve Authenticated User Details
1237
1237
 
1238
- Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs...cloud/docs/api-reference/auth-resources/auth).
1238
+ Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
1239
1239
 
1240
1240
  :param _request_timeout: timeout setting for this request. If one
1241
1241
  number provided, it will be total request
@@ -59,7 +59,7 @@ class CallbacksApi:
59
59
  ) -> AttachCallbackResponse:
60
60
  """Attach callback to virtual machine
61
61
 
62
- Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
62
+ Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
63
63
 
64
64
  :param vm_id: (required)
65
65
  :type vm_id: int
@@ -134,7 +134,7 @@ class CallbacksApi:
134
134
  ) -> ApiResponse[AttachCallbackResponse]:
135
135
  """Attach callback to virtual machine
136
136
 
137
- Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
137
+ Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
138
138
 
139
139
  :param vm_id: (required)
140
140
  :type vm_id: int
@@ -209,7 +209,7 @@ class CallbacksApi:
209
209
  ) -> RESTResponseType:
210
210
  """Attach callback to virtual machine
211
211
 
212
- Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
212
+ Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
213
213
 
214
214
  :param vm_id: (required)
215
215
  :type vm_id: int
@@ -360,7 +360,7 @@ class CallbacksApi:
360
360
  ) -> AttachCallbackResponse:
361
361
  """Attach callback to volume
362
362
 
363
- Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
363
+ Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
364
364
 
365
365
  :param volume_id: (required)
366
366
  :type volume_id: int
@@ -435,7 +435,7 @@ class CallbacksApi:
435
435
  ) -> ApiResponse[AttachCallbackResponse]:
436
436
  """Attach callback to volume
437
437
 
438
- Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
438
+ Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
439
439
 
440
440
  :param volume_id: (required)
441
441
  :type volume_id: int
@@ -510,7 +510,7 @@ class CallbacksApi:
510
510
  ) -> RESTResponseType:
511
511
  """Attach callback to volume
512
512
 
513
- Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
513
+ Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
514
514
 
515
515
  :param volume_id: (required)
516
516
  :type volume_id: int
@@ -660,7 +660,7 @@ class CallbacksApi:
660
660
  ) -> ResponseModel:
661
661
  """Delete virtual machine callback
662
662
 
663
- Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
663
+ Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
664
664
 
665
665
  :param vm_id: (required)
666
666
  :type vm_id: int
@@ -731,7 +731,7 @@ class CallbacksApi:
731
731
  ) -> ApiResponse[ResponseModel]:
732
732
  """Delete virtual machine callback
733
733
 
734
- Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
734
+ Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
735
735
 
736
736
  :param vm_id: (required)
737
737
  :type vm_id: int
@@ -802,7 +802,7 @@ class CallbacksApi:
802
802
  ) -> RESTResponseType:
803
803
  """Delete virtual machine callback
804
804
 
805
- Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
805
+ Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
806
806
 
807
807
  :param vm_id: (required)
808
808
  :type vm_id: int
@@ -933,7 +933,7 @@ class CallbacksApi:
933
933
  ) -> ResponseModel:
934
934
  """Delete volume callback
935
935
 
936
- Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
936
+ Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
937
937
 
938
938
  :param volume_id: (required)
939
939
  :type volume_id: int
@@ -1004,7 +1004,7 @@ class CallbacksApi:
1004
1004
  ) -> ApiResponse[ResponseModel]:
1005
1005
  """Delete volume callback
1006
1006
 
1007
- Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
1007
+ Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
1008
1008
 
1009
1009
  :param volume_id: (required)
1010
1010
  :type volume_id: int
@@ -1075,7 +1075,7 @@ class CallbacksApi:
1075
1075
  ) -> RESTResponseType:
1076
1076
  """Delete volume callback
1077
1077
 
1078
- Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
1078
+ Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
1079
1079
 
1080
1080
  :param volume_id: (required)
1081
1081
  :type volume_id: int
@@ -1207,7 +1207,7 @@ class CallbacksApi:
1207
1207
  ) -> AttachCallbackResponse:
1208
1208
  """Update virtual machine callback
1209
1209
 
1210
- Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
1210
+ Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
1211
1211
 
1212
1212
  :param vm_id: (required)
1213
1213
  :type vm_id: int
@@ -1282,7 +1282,7 @@ class CallbacksApi:
1282
1282
  ) -> ApiResponse[AttachCallbackResponse]:
1283
1283
  """Update virtual machine callback
1284
1284
 
1285
- Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
1285
+ Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
1286
1286
 
1287
1287
  :param vm_id: (required)
1288
1288
  :type vm_id: int
@@ -1357,7 +1357,7 @@ class CallbacksApi:
1357
1357
  ) -> RESTResponseType:
1358
1358
  """Update virtual machine callback
1359
1359
 
1360
- Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
1360
+ Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
1361
1361
 
1362
1362
  :param vm_id: (required)
1363
1363
  :type vm_id: int
@@ -1508,7 +1508,7 @@ class CallbacksApi:
1508
1508
  ) -> AttachCallbackResponse:
1509
1509
  """Update volume callback
1510
1510
 
1511
- Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
1511
+ Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
1512
1512
 
1513
1513
  :param volume_id: (required)
1514
1514
  :type volume_id: int
@@ -1583,7 +1583,7 @@ class CallbacksApi:
1583
1583
  ) -> ApiResponse[AttachCallbackResponse]:
1584
1584
  """Update volume callback
1585
1585
 
1586
- Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
1586
+ Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
1587
1587
 
1588
1588
  :param volume_id: (required)
1589
1589
  :type volume_id: int
@@ -1658,7 +1658,7 @@ class CallbacksApi:
1658
1658
  ) -> RESTResponseType:
1659
1659
  """Update volume callback
1660
1660
 
1661
- Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs...cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
1661
+ Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
1662
1662
 
1663
1663
  :param volume_id: (required)
1664
1664
  :type volume_id: int
@@ -620,7 +620,7 @@ class ComplianceApi:
620
620
  ) -> ComplianceResponse:
621
621
  """Retrieve GPU compliance
622
622
 
623
- Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs...cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
623
+ Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs.hyperstack.cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
624
624
 
625
625
  :param gpu: This is for gpu model
626
626
  :type gpu: str
@@ -692,7 +692,7 @@ class ComplianceApi:
692
692
  ) -> ApiResponse[ComplianceResponse]:
693
693
  """Retrieve GPU compliance
694
694
 
695
- Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs...cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
695
+ Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs.hyperstack.cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
696
696
 
697
697
  :param gpu: This is for gpu model
698
698
  :type gpu: str
@@ -764,7 +764,7 @@ class ComplianceApi:
764
764
  ) -> RESTResponseType:
765
765
  """Retrieve GPU compliance
766
766
 
767
- Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs...cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
767
+ Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs.hyperstack.cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
768
768
 
769
769
  :param gpu: This is for gpu model
770
770
  :type gpu: str
@@ -54,7 +54,7 @@ class DashboardApi:
54
54
  ) -> DashboardInfoResponse:
55
55
  """Retrieve Dashboard
56
56
 
57
- Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs...cloud/docs/resource-management/dashboard/).
57
+ Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs.hyperstack.cloud/docs/resource-management/dashboard/).
58
58
 
59
59
  :param _request_timeout: timeout setting for this request. If one
60
60
  number provided, it will be total request
@@ -120,7 +120,7 @@ class DashboardApi:
120
120
  ) -> ApiResponse[DashboardInfoResponse]:
121
121
  """Retrieve Dashboard
122
122
 
123
- Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs...cloud/docs/resource-management/dashboard/).
123
+ Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs.hyperstack.cloud/docs/resource-management/dashboard/).
124
124
 
125
125
  :param _request_timeout: timeout setting for this request. If one
126
126
  number provided, it will be total request
@@ -186,7 +186,7 @@ class DashboardApi:
186
186
  ) -> RESTResponseType:
187
187
  """Retrieve Dashboard
188
188
 
189
- Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs...cloud/docs/resource-management/dashboard/).
189
+ Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs.hyperstack.cloud/docs/resource-management/dashboard/).
190
190
 
191
191
  :param _request_timeout: timeout setting for this request. If one
192
192
  number provided, it will be total request
@@ -64,7 +64,7 @@ class EnvironmentApi:
64
64
  ) -> Environment:
65
65
  """Create environment
66
66
 
67
- Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs...cloud/docs/resource-management/regions/) in the request body.
67
+ Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs.hyperstack.cloud/docs/resource-management/regions/) in the request body.
68
68
 
69
69
  :param payload: (required)
70
70
  :type payload: CreateEnvironment
@@ -136,7 +136,7 @@ class EnvironmentApi:
136
136
  ) -> ApiResponse[Environment]:
137
137
  """Create environment
138
138
 
139
- Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs...cloud/docs/resource-management/regions/) in the request body.
139
+ Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs.hyperstack.cloud/docs/resource-management/regions/) in the request body.
140
140
 
141
141
  :param payload: (required)
142
142
  :type payload: CreateEnvironment
@@ -208,7 +208,7 @@ class EnvironmentApi:
208
208
  ) -> RESTResponseType:
209
209
  """Create environment
210
210
 
211
- Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs...cloud/docs/resource-management/regions/) in the request body.
211
+ Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs.hyperstack.cloud/docs/resource-management/regions/) in the request body.
212
212
 
213
213
  :param payload: (required)
214
214
  :type payload: CreateEnvironment
@@ -1447,7 +1447,7 @@ class EnvironmentApi:
1447
1447
  ) -> Environments:
1448
1448
  """List environments
1449
1449
 
1450
- Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs...cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
1450
+ Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
1451
1451
 
1452
1452
  :param page: Page Number
1453
1453
  :type page: str
@@ -1525,7 +1525,7 @@ class EnvironmentApi:
1525
1525
  ) -> ApiResponse[Environments]:
1526
1526
  """List environments
1527
1527
 
1528
- Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs...cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
1528
+ Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
1529
1529
 
1530
1530
  :param page: Page Number
1531
1531
  :type page: str
@@ -1603,7 +1603,7 @@ class EnvironmentApi:
1603
1603
  ) -> RESTResponseType:
1604
1604
  """List environments
1605
1605
 
1606
- Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs...cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
1606
+ Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
1607
1607
 
1608
1608
  :param page: Page Number
1609
1609
  :type page: str