hyperstack 1.45.2a0__tar.gz → 1.46.2a0__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 (708) hide show
  1. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/PKG-INFO +1 -1
  2. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/README.md +116 -115
  3. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/__init__.py +2 -1
  4. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/__init__.py +1 -0
  5. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/alive_api.py +10 -10
  6. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/api_key_api.py +7 -7
  7. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/beta_access_api.py +50 -50
  8. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/billing_api.py +1659 -1659
  9. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/calculate_api.py +7 -7
  10. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/callbacks_api.py +21 -21
  11. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/cluster_events_api.py +7 -7
  12. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/clusters_api.py +445 -445
  13. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/compliance_api.py +21 -21
  14. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/credit_api.py +7 -7
  15. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/customer_contract_api.py +139 -139
  16. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/dashboard_api.py +7 -7
  17. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/deployment_api.py +7 -7
  18. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/environment_api.py +107 -107
  19. hyperstack-1.46.2a0/hyperstack/api/fip_exclusions_api.py +313 -0
  20. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/firewall_attachment_api.py +7 -7
  21. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/firewalls_api.py +145 -145
  22. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/floating_ip_api.py +14 -14
  23. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/image_api.py +14 -14
  24. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/payment_api.py +102 -102
  25. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/profile_api.py +56 -56
  26. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/snapshot_events_api.py +7 -7
  27. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/snapshots_api.py +167 -167
  28. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/stock_api.py +7 -7
  29. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/template_api.py +76 -76
  30. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/user_api.py +76 -76
  31. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/user_detail_choice_api.py +10 -10
  32. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/virtual_machine_api.py +799 -782
  33. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/virtual_machine_events_api.py +7 -7
  34. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/vnc_url_api.py +53 -53
  35. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/volume_api.py +77 -77
  36. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/volume_attachment_api.py +21 -21
  37. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api_client.py +1 -1
  38. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/configuration.py +1 -1
  39. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/generate_update_api_key_payload.py +3 -2
  40. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack.egg-info/PKG-INFO +1 -1
  41. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack.egg-info/SOURCES.txt +2 -0
  42. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/pyproject.toml +1 -1
  43. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/setup.py +1 -1
  44. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_alive_api.py +2 -2
  45. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_api_key_api.py +2 -2
  46. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_beta_access_api.py +8 -8
  47. hyperstack-1.46.2a0/test/test_billing_api.py +287 -0
  48. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_calculate_api.py +2 -2
  49. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_callbacks_api.py +6 -6
  50. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_events_api.py +2 -2
  51. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_clusters_api.py +21 -21
  52. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_compliance_api.py +6 -6
  53. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_credit_api.py +2 -2
  54. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_customer_contract_api.py +9 -9
  55. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_dashboard_api.py +2 -2
  56. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_deployment_api.py +2 -2
  57. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_environment_api.py +6 -6
  58. hyperstack-1.46.2a0/test/test_fip_exclusions_api.py +37 -0
  59. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_attachment_api.py +2 -2
  60. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewalls_api.py +12 -12
  61. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_floating_ip_api.py +4 -4
  62. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_generate_update_api_key_payload.py +2 -2
  63. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_image_api.py +4 -4
  64. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_payment_api.py +9 -9
  65. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_profile_api.py +6 -6
  66. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshot_events_api.py +2 -2
  67. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshots_api.py +13 -13
  68. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_stock_api.py +2 -2
  69. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_template_api.py +6 -6
  70. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_api.py +8 -8
  71. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_detail_choice_api.py +2 -2
  72. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_virtual_machine_api.py +60 -60
  73. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_virtual_machine_events_api.py +2 -2
  74. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_vnc_url_api.py +6 -6
  75. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_api.py +6 -6
  76. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_attachment_api.py +6 -6
  77. hyperstack-1.45.2a0/test/test_billing_api.py +0 -287
  78. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/assigning_member_role_api.py +0 -0
  79. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/auth_api.py +0 -0
  80. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/flavor_api.py +0 -0
  81. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/gpu_api.py +0 -0
  82. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/invite_api.py +0 -0
  83. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/keypair_api.py +0 -0
  84. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/organization_api.py +0 -0
  85. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/partner_config_api.py +0 -0
  86. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/permission_api.py +0 -0
  87. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/policy_api.py +0 -0
  88. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/pricebook_api.py +0 -0
  89. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/rbac_role_api.py +0 -0
  90. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/region_api.py +0 -0
  91. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/security_rules_api.py +0 -0
  92. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/user_permission_api.py +0 -0
  93. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api/vouchers_api.py +0 -0
  94. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/api_response.py +0 -0
  95. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/exceptions.py +0 -0
  96. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/__init__.py +0 -0
  97. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/access_token_field.py +0 -0
  98. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
  99. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
  100. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/api_key_fields.py +0 -0
  101. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
  102. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_callback_payload.py +0 -0
  103. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_callback_response.py +0 -0
  104. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
  105. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
  106. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_volume_fields.py +0 -0
  107. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_volumes.py +0 -0
  108. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attach_volumes_payload.py +0 -0
  109. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
  110. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/attributes.py +0 -0
  111. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
  112. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/auth_user_fields.py +0 -0
  113. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
  114. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/beta_access_request_fields.py +0 -0
  115. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/beta_access_request_payload.py +0 -0
  116. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
  117. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/beta_access_status_item.py +0 -0
  118. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
  119. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_history.py +0 -0
  120. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
  121. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
  122. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
  123. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
  124. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
  125. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_metrices_fields.py +0 -0
  126. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/billing_metrices_response.py +0 -0
  127. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_events.py +0 -0
  128. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_events_fields.py +0 -0
  129. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_fields.py +0 -0
  130. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
  131. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_list_response.py +0 -0
  132. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_node_fields.py +0 -0
  133. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_node_group_fields.py +0 -0
  134. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
  135. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
  136. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
  137. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
  138. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
  139. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_response.py +0 -0
  140. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_version.py +0 -0
  141. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/cluster_versions.py +0 -0
  142. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/colors.py +0 -0
  143. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/common_response_model.py +0 -0
  144. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/compliance_fields.py +0 -0
  145. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/compliance_model_fields.py +0 -0
  146. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/compliance_payload.py +0 -0
  147. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/compliance_response.py +0 -0
  148. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/container_overview_fields.py +0 -0
  149. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/contract.py +0 -0
  150. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
  151. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
  152. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/contract_instance_fields.py +0 -0
  153. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/contract_instances_response.py +0 -0
  154. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
  155. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_cluster_node_group_payload.py +0 -0
  156. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_cluster_payload.py +0 -0
  157. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_environment.py +0 -0
  158. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_firewall_payload.py +0 -0
  159. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
  160. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_image.py +0 -0
  161. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_image_payload.py +0 -0
  162. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_instances_payload.py +0 -0
  163. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_instances_response.py +0 -0
  164. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_profile_payload.py +0 -0
  165. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_profile_response.py +0 -0
  166. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_security_rule_payload.py +0 -0
  167. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_snapshot_payload.py +0 -0
  168. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_snapshot_response.py +0 -0
  169. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_update_compliance_response.py +0 -0
  170. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
  171. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/create_volume_payload.py +0 -0
  172. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
  173. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/customer_contract_fields.py +0 -0
  174. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/dashboard_info_response.py +0 -0
  175. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
  176. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/delete_cluster_nodes_fields.py +0 -0
  177. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/deployment_fields.py +0 -0
  178. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
  179. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/deployments.py +0 -0
  180. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/detach_volumes.py +0 -0
  181. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/detach_volumes_payload.py +0 -0
  182. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
  183. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/environment.py +0 -0
  184. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/environment_features.py +0 -0
  185. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/environment_fields.py +0 -0
  186. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
  187. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/environments.py +0 -0
  188. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/error_response_model.py +0 -0
  189. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_attachment_model.py +0 -0
  190. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
  191. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_detail_fields.py +0 -0
  192. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_detail_response.py +0 -0
  193. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_environment_fields.py +0 -0
  194. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_fields.py +0 -0
  195. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_response.py +0 -0
  196. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewall_rule.py +0 -0
  197. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/firewalls_list_response.py +0 -0
  198. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/flavor_fields.py +0 -0
  199. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/flavor_item_get_response.py +0 -0
  200. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/flavor_label_fields.py +0 -0
  201. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/flavor_list_response.py +0 -0
  202. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/flavor_object_fields.py +0 -0
  203. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
  204. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
  205. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
  206. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
  207. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
  208. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_instance_logs_response.py +0 -0
  209. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_invites_response_model.py +0 -0
  210. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_organization_response_model.py +0 -0
  211. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_permissions_response_model.py +0 -0
  212. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_policies_response_model.py +0 -0
  213. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
  214. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
  215. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/gpu_fields.py +0 -0
  216. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/gpu_list.py +0 -0
  217. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/gpu_region_fields.py +0 -0
  218. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
  219. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/image.py +0 -0
  220. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/image_fields.py +0 -0
  221. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/image_get_response.py +0 -0
  222. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/images.py +0 -0
  223. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/import_keypair_payload.py +0 -0
  224. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/import_keypair_response.py +0 -0
  225. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
  226. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance.py +0 -0
  227. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_environment_fields.py +0 -0
  228. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_events.py +0 -0
  229. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_events_fields.py +0 -0
  230. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_fields.py +0 -0
  231. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_flavor_fields.py +0 -0
  232. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_image_fields.py +0 -0
  233. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_keypair_fields.py +0 -0
  234. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_overview_fields.py +0 -0
  235. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instance_resize_payload.py +0 -0
  236. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/instances.py +0 -0
  237. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/invite_fields.py +0 -0
  238. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/invite_user_payload.py +0 -0
  239. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/invite_user_response_model.py +0 -0
  240. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/keypair_environment_features.py +0 -0
  241. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/keypair_environment_fields.py +0 -0
  242. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/keypair_fields.py +0 -0
  243. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/keypairs.py +0 -0
  244. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/lable_resonse.py +0 -0
  245. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/last_day_cost_fields.py +0 -0
  246. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/last_day_cost_response.py +0 -0
  247. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/logos.py +0 -0
  248. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
  249. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/master_flavors_response.py +0 -0
  250. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/metric_item_fields.py +0 -0
  251. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/metrics_fields.py +0 -0
  252. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/mfa_status_fields.py +0 -0
  253. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/mfa_status_response.py +0 -0
  254. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
  255. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/name_available_model.py +0 -0
  256. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/new_configurations_response.py +0 -0
  257. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/new_model_response.py +0 -0
  258. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/new_stock_response.py +0 -0
  259. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
  260. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_fields.py +0 -0
  261. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_level_billing_history.py +0 -0
  262. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
  263. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
  264. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
  265. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
  266. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_threshold_fields.py +0 -0
  267. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
  268. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_thresholds_response.py +0 -0
  269. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/organization_user_response_model.py +0 -0
  270. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/overview_info.py +0 -0
  271. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/pagination.py +0 -0
  272. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/pagination_data.py +0 -0
  273. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/partner_config.py +0 -0
  274. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/payment_details_fields.py +0 -0
  275. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/payment_details_response.py +0 -0
  276. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/payment_initiate_fields.py +0 -0
  277. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/payment_initiate_payload.py +0 -0
  278. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/payment_initiate_response.py +0 -0
  279. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/permission_fields.py +0 -0
  280. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/policy_fields.py +0 -0
  281. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/policy_permission_fields.py +0 -0
  282. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/pricebook_model.py +0 -0
  283. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
  284. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/primary_color.py +0 -0
  285. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/profile_fields.py +0 -0
  286. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/profile_list_response.py +0 -0
  287. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/profile_object_fields.py +0 -0
  288. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
  289. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
  290. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/rbac_role_field.py +0 -0
  291. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/rbac_role_fields.py +0 -0
  292. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/redeem_voucher_payload.py +0 -0
  293. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/region_fields.py +0 -0
  294. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/regions.py +0 -0
  295. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
  296. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/remove_member_payload.py +0 -0
  297. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/request_console.py +0 -0
  298. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
  299. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/request_instance_logs_response.py +0 -0
  300. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
  301. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
  302. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
  303. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
  304. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
  305. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
  306. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
  307. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
  308. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
  309. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
  310. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_history.py +0 -0
  311. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
  312. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
  313. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
  314. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
  315. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
  316. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
  317. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
  318. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
  319. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
  320. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
  321. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
  322. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
  323. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
  324. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
  325. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
  326. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
  327. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
  328. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
  329. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
  330. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
  331. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
  332. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
  333. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
  334. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
  335. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
  336. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/response_model.py +0 -0
  337. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/role_permission_fields.py +0 -0
  338. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/role_policy_fields.py +0 -0
  339. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/secondary_color.py +0 -0
  340. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/security_group_rule.py +0 -0
  341. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/security_group_rule_fields.py +0 -0
  342. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
  343. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
  344. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
  345. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/snapshot_fields.py +0 -0
  346. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/snapshot_restore_request.py +0 -0
  347. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/snapshot_retrieve.py +0 -0
  348. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
  349. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/snapshots.py +0 -0
  350. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/start_deployment.py +0 -0
  351. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/start_deployment_payload.py +0 -0
  352. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
  353. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
  354. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
  355. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
  356. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
  357. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/template.py +0 -0
  358. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/template_fields.py +0 -0
  359. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/templates.py +0 -0
  360. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
  361. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_cluster_node_group_payload.py +0 -0
  362. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_environment.py +0 -0
  363. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_keypair_name.py +0 -0
  364. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_keypair_name_response.py +0 -0
  365. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_organization_payload.py +0 -0
  366. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_organization_response_model.py +0 -0
  367. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_template.py +0 -0
  368. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
  369. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_volume_payload.py +0 -0
  370. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/update_volume_response.py +0 -0
  371. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/uris.py +0 -0
  372. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
  373. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
  374. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/user_info_post_payload.py +0 -0
  375. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/user_organizations_response.py +0 -0
  376. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/user_permission_fields.py +0 -0
  377. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/users_info_fields.py +0 -0
  378. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/users_info_list_response.py +0 -0
  379. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/vncurl.py +0 -0
  380. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/vncurl_fields.py +0 -0
  381. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volume.py +0 -0
  382. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volume_attachment_fields.py +0 -0
  383. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volume_fields.py +0 -0
  384. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
  385. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volume_overview_fields.py +0 -0
  386. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volume_types.py +0 -0
  387. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volumes.py +0 -0
  388. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/volumes_fields.py +0 -0
  389. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/voucher.py +0 -0
  390. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/voucher_redeem_response_schema.py +0 -0
  391. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/models/workload_billing_history_response.py +0 -0
  392. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/py.typed +0 -0
  393. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack/rest.py +0 -0
  394. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack.egg-info/dependency_links.txt +0 -0
  395. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack.egg-info/requires.txt +0 -0
  396. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/hyperstack.egg-info/top_level.txt +0 -0
  397. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/setup.cfg +0 -0
  398. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_access_token_field.py +0 -0
  399. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_add_user_info_success_response_model.py +0 -0
  400. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_allocated_gpu_count_graph.py +0 -0
  401. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_api_key_fields.py +0 -0
  402. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_assign_rbac_role_payload.py +0 -0
  403. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_assigning_member_role_api.py +0 -0
  404. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_callback_payload.py +0 -0
  405. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_callback_response.py +0 -0
  406. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_firewall_with_vm.py +0 -0
  407. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
  408. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_volume_fields.py +0 -0
  409. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_volumes.py +0 -0
  410. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attach_volumes_payload.py +0 -0
  411. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attachments_fields_for_volume.py +0 -0
  412. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_attributes.py +0 -0
  413. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_auth_api.py +0 -0
  414. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_auth_get_token_response_model.py +0 -0
  415. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_auth_user_fields.py +0 -0
  416. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_auth_user_info_response_model.py +0 -0
  417. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_beta_access_request_fields.py +0 -0
  418. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_beta_access_request_payload.py +0 -0
  419. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_beta_access_request_response_model.py +0 -0
  420. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_beta_access_status_item.py +0 -0
  421. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_beta_access_status_response_model.py +0 -0
  422. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_history.py +0 -0
  423. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_history_data_synthesis_details.py +0 -0
  424. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_history_fine_tuning.py +0 -0
  425. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_history_model_evalutation_details.py +0 -0
  426. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_history_serverless_inference.py +0 -0
  427. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_history_serverless_inference_details.py +0 -0
  428. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_metrices_fields.py +0 -0
  429. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_billing_metrices_response.py +0 -0
  430. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_events.py +0 -0
  431. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_events_fields.py +0 -0
  432. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_fields.py +0 -0
  433. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_flavor_fields.py +0 -0
  434. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_list_response.py +0 -0
  435. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_node_fields.py +0 -0
  436. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_node_group_fields.py +0 -0
  437. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_node_groups_create_response.py +0 -0
  438. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_node_groups_get_response.py +0 -0
  439. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_node_groups_list_response.py +0 -0
  440. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_node_instance_fields.py +0 -0
  441. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_nodes_list_response.py +0 -0
  442. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_response.py +0 -0
  443. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_version.py +0 -0
  444. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_cluster_versions.py +0 -0
  445. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_colors.py +0 -0
  446. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_common_response_model.py +0 -0
  447. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_compliance_fields.py +0 -0
  448. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_compliance_model_fields.py +0 -0
  449. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_compliance_payload.py +0 -0
  450. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_compliance_response.py +0 -0
  451. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_container_overview_fields.py +0 -0
  452. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_contract.py +0 -0
  453. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_contract_discount_plan_fields.py +0 -0
  454. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
  455. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_contract_instance_fields.py +0 -0
  456. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_contract_instances_response.py +0 -0
  457. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_cluster_node_fields.py +0 -0
  458. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_cluster_node_group_payload.py +0 -0
  459. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_cluster_payload.py +0 -0
  460. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_environment.py +0 -0
  461. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_firewall_payload.py +0 -0
  462. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_firewall_rule_payload.py +0 -0
  463. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_image.py +0 -0
  464. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_image_payload.py +0 -0
  465. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_instances_payload.py +0 -0
  466. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_instances_response.py +0 -0
  467. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_profile_payload.py +0 -0
  468. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_profile_response.py +0 -0
  469. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_security_rule_payload.py +0 -0
  470. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_snapshot_payload.py +0 -0
  471. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_snapshot_response.py +0 -0
  472. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_update_compliance_response.py +0 -0
  473. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_update_rbac_role_payload.py +0 -0
  474. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_create_volume_payload.py +0 -0
  475. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_customer_contract_detail_response_model.py +0 -0
  476. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_customer_contract_fields.py +0 -0
  477. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_dashboard_info_response.py +0 -0
  478. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
  479. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_delete_cluster_nodes_fields.py +0 -0
  480. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_deployment_fields.py +0 -0
  481. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
  482. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_deployments.py +0 -0
  483. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_detach_volumes.py +0 -0
  484. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_detach_volumes_payload.py +0 -0
  485. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
  486. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_environment.py +0 -0
  487. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_environment_features.py +0 -0
  488. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_environment_fields.py +0 -0
  489. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_environment_fields_for_volume.py +0 -0
  490. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_environments.py +0 -0
  491. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_error_response_model.py +0 -0
  492. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_attachment_model.py +0 -0
  493. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_attachment_vm_model.py +0 -0
  494. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_detail_fields.py +0 -0
  495. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_detail_response.py +0 -0
  496. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_environment_fields.py +0 -0
  497. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_fields.py +0 -0
  498. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_response.py +0 -0
  499. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewall_rule.py +0 -0
  500. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_firewalls_list_response.py +0 -0
  501. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_flavor_api.py +0 -0
  502. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_flavor_fields.py +0 -0
  503. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_flavor_item_get_response.py +0 -0
  504. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_flavor_label_fields.py +0 -0
  505. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_flavor_list_response.py +0 -0
  506. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_flavor_object_fields.py +0 -0
  507. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_generate_update_api_key_response_model.py +0 -0
  508. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_api_keys_response_model.py +0 -0
  509. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_credit_and_threshold_info.py +0 -0
  510. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
  511. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
  512. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_instance_logs_response.py +0 -0
  513. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_invites_response_model.py +0 -0
  514. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_organization_response_model.py +0 -0
  515. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_permissions_response_model.py +0 -0
  516. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_policies_response_model.py +0 -0
  517. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_rbac_roles_response_model.py +0 -0
  518. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_get_user_permissions_response_model.py +0 -0
  519. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_gpu_api.py +0 -0
  520. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_gpu_fields.py +0 -0
  521. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_gpu_list.py +0 -0
  522. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_gpu_region_fields.py +0 -0
  523. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_graph_datetime_value_model.py +0 -0
  524. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_image.py +0 -0
  525. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_image_fields.py +0 -0
  526. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_image_get_response.py +0 -0
  527. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_images.py +0 -0
  528. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_import_keypair_payload.py +0 -0
  529. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_import_keypair_response.py +0 -0
  530. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
  531. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance.py +0 -0
  532. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_environment_fields.py +0 -0
  533. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_events.py +0 -0
  534. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_events_fields.py +0 -0
  535. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_fields.py +0 -0
  536. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_flavor_fields.py +0 -0
  537. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_image_fields.py +0 -0
  538. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_keypair_fields.py +0 -0
  539. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_overview_fields.py +0 -0
  540. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instance_resize_payload.py +0 -0
  541. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_instances.py +0 -0
  542. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_invite_api.py +0 -0
  543. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_invite_fields.py +0 -0
  544. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_invite_user_payload.py +0 -0
  545. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_invite_user_response_model.py +0 -0
  546. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_keypair_api.py +0 -0
  547. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_keypair_environment_features.py +0 -0
  548. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_keypair_environment_fields.py +0 -0
  549. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_keypair_fields.py +0 -0
  550. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_keypairs.py +0 -0
  551. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_lable_resonse.py +0 -0
  552. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_last_day_cost_fields.py +0 -0
  553. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_last_day_cost_response.py +0 -0
  554. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_logos.py +0 -0
  555. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_manual_reconciliation_model.py +0 -0
  556. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_master_flavors_response.py +0 -0
  557. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_metric_item_fields.py +0 -0
  558. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_metrics_fields.py +0 -0
  559. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_mfa_status_fields.py +0 -0
  560. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_mfa_status_response.py +0 -0
  561. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
  562. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_name_available_model.py +0 -0
  563. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_new_configurations_response.py +0 -0
  564. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_new_model_response.py +0 -0
  565. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_new_stock_response.py +0 -0
  566. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_new_stock_retrive_response.py +0 -0
  567. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_api.py +0 -0
  568. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_fields.py +0 -0
  569. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_level_billing_history.py +0 -0
  570. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_level_billing_history_resources.py +0 -0
  571. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
  572. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
  573. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_level_billing_history_response_model.py +0 -0
  574. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_threshold_fields.py +0 -0
  575. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_threshold_update_response.py +0 -0
  576. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_thresholds_response.py +0 -0
  577. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_organization_user_response_model.py +0 -0
  578. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_overview_info.py +0 -0
  579. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_pagination.py +0 -0
  580. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_pagination_data.py +0 -0
  581. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_partner_config.py +0 -0
  582. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_partner_config_api.py +0 -0
  583. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_payment_details_fields.py +0 -0
  584. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_payment_details_response.py +0 -0
  585. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_payment_initiate_fields.py +0 -0
  586. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_payment_initiate_payload.py +0 -0
  587. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_payment_initiate_response.py +0 -0
  588. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_permission_api.py +0 -0
  589. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_permission_fields.py +0 -0
  590. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_policy_api.py +0 -0
  591. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_policy_fields.py +0 -0
  592. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_policy_permission_fields.py +0 -0
  593. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_pricebook_api.py +0 -0
  594. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_pricebook_model.py +0 -0
  595. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
  596. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_primary_color.py +0 -0
  597. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_profile_fields.py +0 -0
  598. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_profile_list_response.py +0 -0
  599. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_profile_object_fields.py +0 -0
  600. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_rbac_role_api.py +0 -0
  601. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_rbac_role_detail_response_model.py +0 -0
  602. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
  603. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_rbac_role_field.py +0 -0
  604. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_rbac_role_fields.py +0 -0
  605. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_redeem_voucher_payload.py +0 -0
  606. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_region_api.py +0 -0
  607. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_region_fields.py +0 -0
  608. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_regions.py +0 -0
  609. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_remove_member_from_organization_response_model.py +0 -0
  610. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_remove_member_payload.py +0 -0
  611. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_request_console.py +0 -0
  612. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_request_instance_logs_payload.py +0 -0
  613. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_request_instance_logs_response.py +0 -0
  614. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_billing_events_history_metrics.py +0 -0
  615. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_billing_events_history_response.py +0 -0
  616. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_billing_response_for_customer.py +0 -0
  617. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
  618. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_details_attributes.py +0 -0
  619. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_details_metrics.py +0 -0
  620. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_details_vm.py +0 -0
  621. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_details_volume.py +0 -0
  622. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
  623. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
  624. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_history.py +0 -0
  625. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_history_resources.py +0 -0
  626. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
  627. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
  628. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
  629. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
  630. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
  631. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
  632. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
  633. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
  634. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
  635. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
  636. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
  637. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
  638. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
  639. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
  640. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
  641. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
  642. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
  643. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
  644. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
  645. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
  646. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
  647. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
  648. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
  649. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_resource_object_response_for_customer.py +0 -0
  650. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_response_model.py +0 -0
  651. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_role_permission_fields.py +0 -0
  652. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_role_policy_fields.py +0 -0
  653. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_secondary_color.py +0 -0
  654. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_security_group_rule.py +0 -0
  655. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_security_group_rule_fields.py +0 -0
  656. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_security_rules_api.py +0 -0
  657. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_security_rules_fields_for_instance.py +0 -0
  658. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_security_rules_protocol_fields.py +0 -0
  659. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
  660. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshot_fields.py +0 -0
  661. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshot_restore_request.py +0 -0
  662. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshot_retrieve.py +0 -0
  663. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshot_retrieve_fields.py +0 -0
  664. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_snapshots.py +0 -0
  665. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_start_deployment.py +0 -0
  666. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_start_deployment_payload.py +0 -0
  667. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
  668. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_sub_resources_costs_response_model.py +0 -0
  669. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
  670. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_sub_resources_graph_response_model.py +0 -0
  671. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
  672. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_template.py +0 -0
  673. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_template_fields.py +0 -0
  674. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_templates.py +0 -0
  675. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_token_based_billing_history_response.py +0 -0
  676. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_cluster_node_group_payload.py +0 -0
  677. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_environment.py +0 -0
  678. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_keypair_name.py +0 -0
  679. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_keypair_name_response.py +0 -0
  680. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_organization_payload.py +0 -0
  681. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_organization_response_model.py +0 -0
  682. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_template.py +0 -0
  683. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_volume_attachment_payload.py +0 -0
  684. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_volume_payload.py +0 -0
  685. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_update_volume_response.py +0 -0
  686. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_uris.py +0 -0
  687. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_default_choice_for_user_fields.py +0 -0
  688. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_default_choices_for_user_response.py +0 -0
  689. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_info_post_payload.py +0 -0
  690. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_organizations_response.py +0 -0
  691. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_permission_api.py +0 -0
  692. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_user_permission_fields.py +0 -0
  693. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_users_info_fields.py +0 -0
  694. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_users_info_list_response.py +0 -0
  695. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_vncurl.py +0 -0
  696. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_vncurl_fields.py +0 -0
  697. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume.py +0 -0
  698. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_attachment_fields.py +0 -0
  699. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_fields.py +0 -0
  700. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_fields_for_instance.py +0 -0
  701. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_overview_fields.py +0 -0
  702. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volume_types.py +0 -0
  703. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volumes.py +0 -0
  704. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_volumes_fields.py +0 -0
  705. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_voucher.py +0 -0
  706. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_voucher_redeem_response_schema.py +0 -0
  707. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/test/test_vouchers_api.py +0 -0
  708. {hyperstack-1.45.2a0 → hyperstack-1.46.2a0}/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.45.2a0
3
+ Version: 1.46.2a0
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.45.2-alpha
11
+ - Package version: v1.46.2-alpha
12
12
  - Generator version: 7.10.0
13
13
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
14
14
 
@@ -86,11 +86,11 @@ with hyperstack.ApiClient(configuration) as api_client:
86
86
 
87
87
  try:
88
88
  # Retrieve Billing Rate for Resource
89
- api_response = api_instance.get_calculate2(resource_type, id)
90
- print("The response of CalculateApi->get_calculate2:\n")
89
+ api_response = api_instance.calculate_resource_billing_rate(resource_type, id)
90
+ print("The response of CalculateApi->calculate_resource_billing_rate:\n")
91
91
  pprint(api_response)
92
92
  except ApiException as e:
93
- print("Exception when calling CalculateApi->get_calculate2: %s\n" % e)
93
+ print("Exception when calling CalculateApi->calculate_resource_billing_rate: %s\n" % e)
94
94
 
95
95
  ```
96
96
 
@@ -100,22 +100,23 @@ All URIs are relative to *https://infrahub-api.nexgencloud.com/v1*
100
100
 
101
101
  Class | Method | HTTP request | Description
102
102
  ------------ | ------------- | ------------- | -------------
103
- *CalculateApi* | [**get_calculate2**](docs/CalculateApi.md#get_calculate2) | **GET** /pricebook/calculate/resource/{resource_type}/{id} | Retrieve Billing Rate for Resource
104
- *CustomerContractApi* | [**get_customer_contract**](docs/CustomerContractApi.md#get_customer_contract) | **GET** /pricebook/contracts | List Contracts
105
- *CustomerContractApi* | [**get_customer_contract_details**](docs/CustomerContractApi.md#get_customer_contract_details) | **GET** /pricebook/contracts/{contract_id} | Retrieve Contract Details
106
- *CustomerContractApi* | [**get_customer_contract_gpu_allocation_graph**](docs/CustomerContractApi.md#get_customer_contract_gpu_allocation_graph) | **GET** /pricebook/contracts/{contract_id}/gpu_allocation_graph | Retrieve GPU Allocation Graph for Contract
103
+ *CalculateApi* | [**calculate_resource_billing_rate**](docs/CalculateApi.md#calculate_resource_billing_rate) | **GET** /pricebook/calculate/resource/{resource_type}/{id} | Retrieve Billing Rate for Resource
104
+ *CustomerContractApi* | [**get_contract_gpu_allocation_graph**](docs/CustomerContractApi.md#get_contract_gpu_allocation_graph) | **GET** /pricebook/contracts/{contract_id}/gpu_allocation_graph | Retrieve GPU Allocation Graph for Contract
105
+ *CustomerContractApi* | [**list_customer_contracts**](docs/CustomerContractApi.md#list_customer_contracts) | **GET** /pricebook/contracts | List Contracts
106
+ *CustomerContractApi* | [**retrieve_contract**](docs/CustomerContractApi.md#retrieve_contract) | **GET** /pricebook/contracts/{contract_id} | Retrieve Contract Details
107
+ *FIPExclusionsApi* | [**check_if_org_is_excluded_from_floating_ip_detachment**](docs/FIPExclusionsApi.md#check_if_org_is_excluded_from_floating_ip_detachment) | **GET** /core/fip-detachment-exclusions/org/{org_id} |
107
108
  *PricebookApi* | [**get_pricebook**](docs/PricebookApi.md#get_pricebook) | **GET** /pricebook |
108
- *SnapshotsApi* | [**create_a_new_custom_image**](docs/SnapshotsApi.md#create_a_new_custom_image) | **POST** /core/snapshots/{snapshot_id}/image | Create an image from a snapshot
109
- *SnapshotsApi* | [**delete_an_existing_snapshot**](docs/SnapshotsApi.md#delete_an_existing_snapshot) | **DELETE** /core/snapshots/{id} | Delete snapshot
109
+ *SnapshotsApi* | [**create_custom_image**](docs/SnapshotsApi.md#create_custom_image) | **POST** /core/snapshots/{snapshot_id}/image | Create an image from a snapshot
110
+ *SnapshotsApi* | [**delete_snapshot**](docs/SnapshotsApi.md#delete_snapshot) | **DELETE** /core/snapshots/{id} | Delete snapshot
110
111
  *SnapshotsApi* | [**fetch_snapshot_name_availability**](docs/SnapshotsApi.md#fetch_snapshot_name_availability) | **GET** /core/snapshots/name-availability/{name} | Fetch snapshot name availability
111
- *SnapshotsApi* | [**restore_a_snapshot**](docs/SnapshotsApi.md#restore_a_snapshot) | **POST** /core/snapshots/{id}/restore | Restore a snapshot
112
- *SnapshotsApi* | [**retrieve_an_existing_snapshot**](docs/SnapshotsApi.md#retrieve_an_existing_snapshot) | **GET** /core/snapshots/{id} | Retrieve a snapshot
113
- *SnapshotsApi* | [**retrieves_a_list_of_snapshots**](docs/SnapshotsApi.md#retrieves_a_list_of_snapshots) | **GET** /core/snapshots | Retrieve list of snapshots with pagination
112
+ *SnapshotsApi* | [**get_snapshot**](docs/SnapshotsApi.md#get_snapshot) | **GET** /core/snapshots/{id} | Retrieve a snapshot
113
+ *SnapshotsApi* | [**list_snapshots**](docs/SnapshotsApi.md#list_snapshots) | **GET** /core/snapshots | Retrieve list of snapshots with pagination
114
+ *SnapshotsApi* | [**restore_snapshot**](docs/SnapshotsApi.md#restore_snapshot) | **POST** /core/snapshots/{id}/restore | Restore a snapshot
114
115
  *AliveApi* | [**get_alive**](docs/AliveApi.md#get_alive) | **GET** /billing/alive | GET: Alive
115
- *AliveApi* | [**get_doc**](docs/AliveApi.md#get_doc) | **GET** /billing/alive/doc |
116
+ *AliveApi* | [**get_alive_doc**](docs/AliveApi.md#get_alive_doc) | **GET** /billing/alive/doc |
116
117
  *ApiKeyApi* | [**delete_api_key**](docs/ApiKeyApi.md#delete_api_key) | **DELETE** /api-key/{api_key_id} | Delete API Key
117
118
  *ApiKeyApi* | [**generate_api_key**](docs/ApiKeyApi.md#generate_api_key) | **POST** /api-key/generate | Generate API Key
118
- *ApiKeyApi* | [**retrieve_api_key**](docs/ApiKeyApi.md#retrieve_api_key) | **GET** /api-key | Retrieve API Keys
119
+ *ApiKeyApi* | [**get_api_key**](docs/ApiKeyApi.md#get_api_key) | **GET** /api-key | Retrieve API Keys
119
120
  *ApiKeyApi* | [**update_api_key**](docs/ApiKeyApi.md#update_api_key) | **PUT** /api-key/{api_key_id} | Update API Key
120
121
  *AssigningMemberRoleApi* | [**assign_rbac_role_to_user**](docs/AssigningMemberRoleApi.md#assign_rbac_role_to_user) | **PUT** /auth/users/{user_id}/assign-roles | Assign RBAC Role
121
122
  *AssigningMemberRoleApi* | [**remove_rbac_role_from_user**](docs/AssigningMemberRoleApi.md#remove_rbac_role_from_user) | **DELETE** /auth/users/{user_id}/roles | Remove RBAC Role From User
@@ -124,101 +125,101 @@ Class | Method | HTTP request | Description
124
125
  *AuthApi* | [**get_user_mfa_status**](docs/AuthApi.md#get_user_mfa_status) | **GET** /auth/me/mfa | Get MFA status for authenticated user
125
126
  *AuthApi* | [**get_user_organizations**](docs/AuthApi.md#get_user_organizations) | **GET** /auth/me/organizations | Get User Organizations
126
127
  *AuthApi* | [**retrieve_authenticated_user_details**](docs/AuthApi.md#retrieve_authenticated_user_details) | **GET** /auth/me | Retrieve Authenticated User Details
127
- *BetaAccessApi* | [**create_a_beta_access_request**](docs/BetaAccessApi.md#create_a_beta_access_request) | **POST** /auth/beta-access/requests | Create a new beta access request
128
+ *BetaAccessApi* | [**create_beta_access_request**](docs/BetaAccessApi.md#create_beta_access_request) | **POST** /auth/beta-access/requests | Create a new beta access request
129
+ *BetaAccessApi* | [**get_beta_access_requests**](docs/BetaAccessApi.md#get_beta_access_requests) | **GET** /auth/beta-access/requests/{program} | Check the status of beta access requests
128
130
  *BetaAccessApi* | [**get_beta_access_status**](docs/BetaAccessApi.md#get_beta_access_status) | **GET** /auth/beta-access/requests | Check the status of all beta access requests
129
- *BetaAccessApi* | [**get_beta_access_status2**](docs/BetaAccessApi.md#get_beta_access_status2) | **GET** /auth/beta-access/requests/{program} | Check the status of beta access requests
131
+ *BillingApi* | [**buckets_billing_history_hourly_chart**](docs/BillingApi.md#buckets_billing_history_hourly_chart) | **GET** /billing/billing/history/bucket/{bucket_id}/graph | Retrieve hourly cost datapoints of a Specific Bucket for a specific billing cycle
132
+ *BillingApi* | [**get_bucket_billing_history**](docs/BillingApi.md#get_bucket_billing_history) | **GET** /billing/billing/history/bucket/{bucket_id} | Retrieve Billing History of a Specific Snapshot for a specific Billing Cycle
133
+ *BillingApi* | [**get_cluster_billing_history**](docs/BillingApi.md#get_cluster_billing_history) | **GET** /billing/billing/history/cluster/{cluster_id} | Retrieve Billing History of a Specific Cluster for a specific Billing Cycle
134
+ *BillingApi* | [**get_cluster_billing_history_graph**](docs/BillingApi.md#get_cluster_billing_history_graph) | **GET** /billing/billing/history/cluster/{cluster_id}/graph | Retrieve hourly cost datapoints of a specific Cluster for a specific billing cycle
135
+ *BillingApi* | [**get_data_synthesis_billing_history**](docs/BillingApi.md#get_data_synthesis_billing_history) | **GET** /billing/billing/history/data_synthesis | Retrieve Billing History of data synthesis for a specific Billing Cycle
136
+ *BillingApi* | [**get_data_synthesis_billing_history_graph**](docs/BillingApi.md#get_data_synthesis_billing_history_graph) | **GET** /billing/billing/history/data_synthesis/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Data Synthesis for a specific
137
+ *BillingApi* | [**get_data_synthesis_history_for_resource**](docs/BillingApi.md#get_data_synthesis_history_for_resource) | **GET** /billing/billing/history/data_synthesis/{resource_id} |
138
+ *BillingApi* | [**get_fine_tuning_billing_history**](docs/BillingApi.md#get_fine_tuning_billing_history) | **GET** /billing/billing/history/fine_tuning | Retrieve Billing History of model evaluation for a specific Billing Cycle
139
+ *BillingApi* | [**get_fine_tuning_billing_history_graph**](docs/BillingApi.md#get_fine_tuning_billing_history_graph) | **GET** /billing/billing/history/fine_tuning/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Fine Tuning for a specific billing cycle
130
140
  *BillingApi* | [**get_last_day_cost**](docs/BillingApi.md#get_last_day_cost) | **GET** /billing/billing/last-day-cost | GET: Last Day Cost
131
- *BillingApi* | [**get_organization_threshold**](docs/BillingApi.md#get_organization_threshold) | **GET** /billing/billing/threshold | GET: All Thresholds for Organization
132
- *BillingApi* | [**get_usage2**](docs/BillingApi.md#get_usage2) | **GET** /billing/billing/usage | GET: Billing usage
133
- *BillingApi* | [**get_user_billing_bucket_details_graph**](docs/BillingApi.md#get_user_billing_bucket_details_graph) | **GET** /billing/billing/history/bucket/{bucket_id}/graph | Retrieve hourly cost datapoints of a Specific Bucket for a specific billing cycle
134
- *BillingApi* | [**get_user_billing_cluster_details_graph**](docs/BillingApi.md#get_user_billing_cluster_details_graph) | **GET** /billing/billing/history/cluster/{cluster_id}/graph | Retrieve hourly cost datapoints of a specific Cluster for a specific billing cycle
135
- *BillingApi* | [**get_user_billing_data_synthesis_details_graph**](docs/BillingApi.md#get_user_billing_data_synthesis_details_graph) | **GET** /billing/billing/history/data_synthesis/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Data Synthesis for a specific
136
- *BillingApi* | [**get_user_billing_fine_tuning_details_graph**](docs/BillingApi.md#get_user_billing_fine_tuning_details_graph) | **GET** /billing/billing/history/fine_tuning/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Fine Tuning for a specific billing cycle
137
- *BillingApi* | [**get_user_billing_history2**](docs/BillingApi.md#get_user_billing_history2) | **GET** /billing/billing/history | Retrieve Billing History for a specific Billing Cycle
138
- *BillingApi* | [**get_user_billing_history_bucket2**](docs/BillingApi.md#get_user_billing_history_bucket2) | **GET** /billing/billing/history/bucket | Retrieve Billing History of Volume for a specific Billing Cycle
139
- *BillingApi* | [**get_user_billing_history_bucket_details**](docs/BillingApi.md#get_user_billing_history_bucket_details) | **GET** /billing/billing/history/bucket/{bucket_id} | Retrieve Billing History of a Specific Snapshot for a specific Billing Cycle
140
- *BillingApi* | [**get_user_billing_history_cluster**](docs/BillingApi.md#get_user_billing_history_cluster) | **GET** /billing/billing/history/cluster | Retrieve Billing History of Clusters for a specific Billing Cycle
141
- *BillingApi* | [**get_user_billing_history_cluster_details**](docs/BillingApi.md#get_user_billing_history_cluster_details) | **GET** /billing/billing/history/cluster/{cluster_id} | Retrieve Billing History of a Specific Cluster for a specific Billing Cycle
142
- *BillingApi* | [**get_user_billing_history_contract**](docs/BillingApi.md#get_user_billing_history_contract) | **GET** /billing/billing/history/contract | Retrieve Billing History of Contract for a specific Billing Cycle
143
- *BillingApi* | [**get_user_billing_history_data_synthesis**](docs/BillingApi.md#get_user_billing_history_data_synthesis) | **GET** /billing/billing/history/data_synthesis | Retrieve Billing History of data synthesis for a specific Billing Cycle
144
- *BillingApi* | [**get_user_billing_history_data_synthesis_details**](docs/BillingApi.md#get_user_billing_history_data_synthesis_details) | **GET** /billing/billing/history/data_synthesis/{resource_id} |
145
- *BillingApi* | [**get_user_billing_history_fine_tuning**](docs/BillingApi.md#get_user_billing_history_fine_tuning) | **GET** /billing/billing/history/fine_tuning | Retrieve Billing History of model evaluation for a specific Billing Cycle
146
- *BillingApi* | [**get_user_billing_history_fine_tuning_details**](docs/BillingApi.md#get_user_billing_history_fine_tuning_details) | **GET** /billing/billing/history/fine_tuning/{resource_id} | Retrieve Billing History of a Specific Fine Tuning for a specific Billing Cycle
147
- *BillingApi* | [**get_user_billing_history_model_evaluation**](docs/BillingApi.md#get_user_billing_history_model_evaluation) | **GET** /billing/billing/history/model_evaluation | Retrieve Billing History of model evaluation for a specific Billing Cycle
148
- *BillingApi* | [**get_user_billing_history_model_evaluation_details**](docs/BillingApi.md#get_user_billing_history_model_evaluation_details) | **GET** /billing/billing/history/model_evaluation/{resource_id} |
149
- *BillingApi* | [**get_user_billing_history_serverless_inference**](docs/BillingApi.md#get_user_billing_history_serverless_inference) | **GET** /billing/billing/history/serverless_inference | Retrieve Billing History of serverless inference for a specific Billing Cycle
150
- *BillingApi* | [**get_user_billing_history_serverless_inference_details**](docs/BillingApi.md#get_user_billing_history_serverless_inference_details) | **GET** /billing/billing/history/serverless_inference/{resource_id} |
151
- *BillingApi* | [**get_user_billing_history_snapshot**](docs/BillingApi.md#get_user_billing_history_snapshot) | **GET** /billing/billing/history/snapshot | Retrieve Billing History of Snapshot for a specific Billing Cycle
152
- *BillingApi* | [**get_user_billing_history_snapshot_details**](docs/BillingApi.md#get_user_billing_history_snapshot_details) | **GET** /billing/billing/history/snapshot/{snapshot_id} | Retrieve Billing History of a Specific Snapshot for a specific Billing Cycle
153
- *BillingApi* | [**get_user_billing_history_vm2**](docs/BillingApi.md#get_user_billing_history_vm2) | **GET** /billing/billing/history/virtual-machine | Retrieve Billing History of Virtual Machine for a specific Billing Cycle
154
- *BillingApi* | [**get_user_billing_history_vm_details2**](docs/BillingApi.md#get_user_billing_history_vm_details2) | **GET** /billing/billing/history/virtual-machine/{vm_id} | Retrieve Billing History of a Specific Virtual Machine for a specific Billing Cycle
155
- *BillingApi* | [**get_user_billing_history_vm_sub_resource_graph2**](docs/BillingApi.md#get_user_billing_history_vm_sub_resource_graph2) | **GET** /billing/billing/virtual-machine/{vm_id}/sub-resource/graph | Retrieve Sub-Resources Historical Cost datapoints of a Virtual
156
- *BillingApi* | [**get_user_billing_history_vm_total_costs**](docs/BillingApi.md#get_user_billing_history_vm_total_costs) | **GET** /billing/billing/virtual-machine/{vm_id}/sub-resource | Retrieve Total Costs and Non Discount Costs for Sub Resources
157
- *BillingApi* | [**get_user_billing_history_volume2**](docs/BillingApi.md#get_user_billing_history_volume2) | **GET** /billing/billing/history/volume | Retrieve Billing History of Volume for a specific Billing Cycle
158
- *BillingApi* | [**get_user_billing_history_volume_details2**](docs/BillingApi.md#get_user_billing_history_volume_details2) | **GET** /billing/billing/history/volume/{volume_id} | Retrieve Billing History of a Specific Volume for a specific Billing Cycle
159
- *BillingApi* | [**get_user_billing_model_evaluation_details_graph**](docs/BillingApi.md#get_user_billing_model_evaluation_details_graph) | **GET** /billing/billing/history/model_evaluation/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Model Evaluation for a specific
160
- *BillingApi* | [**get_user_billing_serverless_inference_details_graph**](docs/BillingApi.md#get_user_billing_serverless_inference_details_graph) | **GET** /billing/billing/history/serverless_inference/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Serverless Inference for a specific
161
- *BillingApi* | [**get_user_billing_snapshot_details_graph**](docs/BillingApi.md#get_user_billing_snapshot_details_graph) | **GET** /billing/billing/history/snapshot/{snapshot_id}/graph | Retrieve hourly cost datapoints of a Specific Snapshot for a specific billing cycle
162
- *BillingApi* | [**get_user_billing_vm_details_graph2**](docs/BillingApi.md#get_user_billing_vm_details_graph2) | **GET** /billing/billing/history/virtual-machine/{vm_id}/graph | Retrieve hourly cost datapoints of a Specific Virtual Machine for a specific billing cycle
163
- *BillingApi* | [**get_user_billing_volume_details_graph**](docs/BillingApi.md#get_user_billing_volume_details_graph) | **GET** /billing/billing/history/volume/{volume_id}/graph | Retrieve hourly cost datapoints of a Specific Volume for a specific billing cycle
164
- *BillingApi* | [**get_user_vm_billing_events**](docs/BillingApi.md#get_user_vm_billing_events) | **GET** /billing/billing/virtual-machine/{vm_id}/billing-events | Retrieve VM billing events history
165
- *BillingApi* | [**get_user_volume_billing_events**](docs/BillingApi.md#get_user_volume_billing_events) | **GET** /billing/billing/volume/{volume_id}/billing-events | Retrieve Volume billing events history
166
- *BillingApi* | [**put_organization_threshold**](docs/BillingApi.md#put_organization_threshold) | **PUT** /billing/billing/threshold/{threshold_id} | Update: Subscribe or Unsubscribe Notification Threshold
167
- *CallbacksApi* | [**attach_callback_to_virtual_machine**](docs/CallbacksApi.md#attach_callback_to_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/attach-callback | Attach callback to virtual machine
141
+ *BillingApi* | [**get_model_evaluation_billing_history**](docs/BillingApi.md#get_model_evaluation_billing_history) | **GET** /billing/billing/history/model_evaluation | Retrieve Billing History of model evaluation for a specific Billing Cycle
142
+ *BillingApi* | [**get_model_evaluation_billing_history_graph**](docs/BillingApi.md#get_model_evaluation_billing_history_graph) | **GET** /billing/billing/history/model_evaluation/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Model Evaluation for a specific
143
+ *BillingApi* | [**get_notification_threshold**](docs/BillingApi.md#get_notification_threshold) | **PUT** /billing/billing/threshold/{threshold_id} | Update: Subscribe or Unsubscribe Notification Threshold
144
+ *BillingApi* | [**get_resource_fine_tuning_billing_history**](docs/BillingApi.md#get_resource_fine_tuning_billing_history) | **GET** /billing/billing/history/fine_tuning/{resource_id} | Retrieve Billing History of a Specific Fine Tuning for a specific Billing Cycle
145
+ *BillingApi* | [**get_resource_model_evaluation_billing_history**](docs/BillingApi.md#get_resource_model_evaluation_billing_history) | **GET** /billing/billing/history/model_evaluation/{resource_id} |
146
+ *BillingApi* | [**get_serverless_inference_billing_history_graph**](docs/BillingApi.md#get_serverless_inference_billing_history_graph) | **GET** /billing/billing/history/serverless_inference/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Serverless Inference for a specific
147
+ *BillingApi* | [**get_serverless_inferences_billing_history**](docs/BillingApi.md#get_serverless_inferences_billing_history) | **GET** /billing/billing/history/serverless_inference/{resource_id} |
148
+ *BillingApi* | [**get_snapshot_billing_history**](docs/BillingApi.md#get_snapshot_billing_history) | **GET** /billing/billing/history/snapshot/{snapshot_id} | Retrieve Billing History of a Specific Snapshot for a specific Billing Cycle
149
+ *BillingApi* | [**get_snapshot_billing_history_graph**](docs/BillingApi.md#get_snapshot_billing_history_graph) | **GET** /billing/billing/history/snapshot/{snapshot_id}/graph | Retrieve hourly cost datapoints of a Specific Snapshot for a specific billing cycle
150
+ *BillingApi* | [**get_usage**](docs/BillingApi.md#get_usage) | **GET** /billing/billing/usage | GET: Billing usage
151
+ *BillingApi* | [**get_user_billing_history**](docs/BillingApi.md#get_user_billing_history) | **GET** /billing/billing/history | Retrieve Billing History for a specific Billing Cycle
152
+ *BillingApi* | [**get_vm_billing_details**](docs/BillingApi.md#get_vm_billing_details) | **GET** /billing/billing/history/virtual-machine/{vm_id} | Retrieve Billing History of a Specific Virtual Machine for a specific Billing Cycle
153
+ *BillingApi* | [**get_vm_billing_events**](docs/BillingApi.md#get_vm_billing_events) | **GET** /billing/billing/virtual-machine/{vm_id}/billing-events | Retrieve VM billing events history
154
+ *BillingApi* | [**get_vm_billing_graph**](docs/BillingApi.md#get_vm_billing_graph) | **GET** /billing/billing/history/virtual-machine/{vm_id}/graph | Retrieve hourly cost datapoints of a Specific Virtual Machine for a specific billing cycle
155
+ *BillingApi* | [**get_vm_billing_history**](docs/BillingApi.md#get_vm_billing_history) | **GET** /billing/billing/history/virtual-machine | Retrieve Billing History of Virtual Machine for a specific Billing Cycle
156
+ *BillingApi* | [**get_vm_sub_resource_costs**](docs/BillingApi.md#get_vm_sub_resource_costs) | **GET** /billing/billing/virtual-machine/{vm_id}/sub-resource | Retrieve Total Costs and Non Discount Costs for Sub Resources
157
+ *BillingApi* | [**get_vm_sub_resource_graph**](docs/BillingApi.md#get_vm_sub_resource_graph) | **GET** /billing/billing/virtual-machine/{vm_id}/sub-resource/graph | Retrieve Sub-Resources Historical Cost datapoints of a Virtual
158
+ *BillingApi* | [**get_volume_billing_details**](docs/BillingApi.md#get_volume_billing_details) | **GET** /billing/billing/history/volume/{volume_id} | Retrieve Billing History of a Specific Volume for a specific Billing Cycle
159
+ *BillingApi* | [**get_volume_billing_events**](docs/BillingApi.md#get_volume_billing_events) | **GET** /billing/billing/volume/{volume_id}/billing-events | Retrieve Volume billing events history
160
+ *BillingApi* | [**get_volume_billing_history**](docs/BillingApi.md#get_volume_billing_history) | **GET** /billing/billing/history/volume | Retrieve Billing History of Volume for a specific Billing Cycle
161
+ *BillingApi* | [**get_volume_billing_history_graph**](docs/BillingApi.md#get_volume_billing_history_graph) | **GET** /billing/billing/history/volume/{volume_id}/graph | Retrieve hourly cost datapoints of a Specific Volume for a specific billing cycle
162
+ *BillingApi* | [**list_billing_contract_history**](docs/BillingApi.md#list_billing_contract_history) | **GET** /billing/billing/history/contract | Retrieve Billing History of Contract for a specific Billing Cycle
163
+ *BillingApi* | [**list_bucket_billing_history**](docs/BillingApi.md#list_bucket_billing_history) | **GET** /billing/billing/history/bucket | Retrieve Billing History of a Bucket for a specific Billing Cycle
164
+ *BillingApi* | [**list_clusters_billing_history**](docs/BillingApi.md#list_clusters_billing_history) | **GET** /billing/billing/history/cluster | Retrieve Billing History of Clusters for a specific Billing Cycle
165
+ *BillingApi* | [**list_org_notification_thresholds**](docs/BillingApi.md#list_org_notification_thresholds) | **GET** /billing/billing/threshold | GET: All Thresholds for Organization
166
+ *BillingApi* | [**list_serverless_inference_billing_history**](docs/BillingApi.md#list_serverless_inference_billing_history) | **GET** /billing/billing/history/serverless_inference | Retrieve Billing History of serverless inference for a specific Billing Cycle
167
+ *BillingApi* | [**list_snapshot_billing_history**](docs/BillingApi.md#list_snapshot_billing_history) | **GET** /billing/billing/history/snapshot | Retrieve Billing History of Snapshot for a specific Billing Cycle
168
+ *CallbacksApi* | [**attach_callback_to_vm**](docs/CallbacksApi.md#attach_callback_to_vm) | **POST** /core/virtual-machines/{vm_id}/attach-callback | Attach callback to virtual machine
168
169
  *CallbacksApi* | [**attach_callback_to_volume**](docs/CallbacksApi.md#attach_callback_to_volume) | **POST** /core/volumes/{volume_id}/attach-callback | Attach callback to volume
169
- *CallbacksApi* | [**delete_virtual_machine_callback**](docs/CallbacksApi.md#delete_virtual_machine_callback) | **DELETE** /core/virtual-machines/{vm_id}/delete-callback | Delete virtual machine callback
170
+ *CallbacksApi* | [**delete_vm_callback**](docs/CallbacksApi.md#delete_vm_callback) | **DELETE** /core/virtual-machines/{vm_id}/delete-callback | Delete virtual machine callback
170
171
  *CallbacksApi* | [**delete_volume_callback**](docs/CallbacksApi.md#delete_volume_callback) | **DELETE** /core/volumes/{volume_id}/delete-callback | Delete volume callback
171
- *CallbacksApi* | [**update_virtual_machine_callback**](docs/CallbacksApi.md#update_virtual_machine_callback) | **PUT** /core/virtual-machines/{vm_id}/update-callback | Update virtual machine callback
172
+ *CallbacksApi* | [**update_vm_callback**](docs/CallbacksApi.md#update_vm_callback) | **PUT** /core/virtual-machines/{vm_id}/update-callback | Update virtual machine callback
172
173
  *CallbacksApi* | [**update_volume_callback**](docs/CallbacksApi.md#update_volume_callback) | **PUT** /core/volumes/{volume_id}/update-callback | Update volume callback
173
- *ClusterEventsApi* | [**fetch_all_of_a_cluster_events**](docs/ClusterEventsApi.md#fetch_all_of_a_cluster_events) | **GET** /core/clusters/{cluster_id}/events | Fetch all of a cluster events
174
- *ClustersApi* | [**attempt_to_manually_reconcile_a_cluster**](docs/ClustersApi.md#attempt_to_manually_reconcile_a_cluster) | **POST** /core/clusters/{cluster_id}/reconcile | Reconcile a cluster
174
+ *ClusterEventsApi* | [**list_cluster_events**](docs/ClusterEventsApi.md#list_cluster_events) | **GET** /core/clusters/{cluster_id}/events | Fetch all of a cluster events
175
175
  *ClustersApi* | [**create_cluster**](docs/ClustersApi.md#create_cluster) | **POST** /core/clusters | Create Cluster
176
176
  *ClustersApi* | [**create_node**](docs/ClustersApi.md#create_node) | **POST** /core/clusters/{cluster_id}/nodes | Create Node
177
177
  *ClustersApi* | [**create_node_group**](docs/ClustersApi.md#create_node_group) | **POST** /core/clusters/{cluster_id}/node-groups | Create a node group in a cluster
178
- *ClustersApi* | [**delete_a_cluster**](docs/ClustersApi.md#delete_a_cluster) | **DELETE** /core/clusters/{id} | Delete a cluster
179
- *ClustersApi* | [**delete_a_node_group**](docs/ClustersApi.md#delete_a_node_group) | **DELETE** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Delete a node group
178
+ *ClustersApi* | [**delete_cluster**](docs/ClustersApi.md#delete_cluster) | **DELETE** /core/clusters/{id} | Delete a cluster
180
179
  *ClustersApi* | [**delete_cluster_node**](docs/ClustersApi.md#delete_cluster_node) | **DELETE** /core/clusters/{cluster_id}/nodes/{node_id} | Delete Cluster Node
181
180
  *ClustersApi* | [**delete_cluster_nodes**](docs/ClustersApi.md#delete_cluster_nodes) | **POST** /core/clusters/{cluster_id}/nodes/delete | Delete Multiple Cluster Nodes
181
+ *ClustersApi* | [**delete_node_group**](docs/ClustersApi.md#delete_node_group) | **DELETE** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Delete a node group
182
182
  *ClustersApi* | [**fetch_cluster_name_availability**](docs/ClustersApi.md#fetch_cluster_name_availability) | **GET** /core/clusters/name-availability/{name} | Fetch cluster name availability
183
183
  *ClustersApi* | [**get_cluster_master_flavors**](docs/ClustersApi.md#get_cluster_master_flavors) | **GET** /core/clusters/master-flavors | Get Cluster Master Flavors
184
184
  *ClustersApi* | [**get_cluster_nodes**](docs/ClustersApi.md#get_cluster_nodes) | **GET** /core/clusters/{cluster_id}/nodes | Get Cluster Nodes
185
185
  *ClustersApi* | [**get_cluster_versions**](docs/ClustersApi.md#get_cluster_versions) | **GET** /core/clusters/versions | List Cluster Versions
186
+ *ClustersApi* | [**get_node_group**](docs/ClustersApi.md#get_node_group) | **GET** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Retrieve a node group in a cluster
186
187
  *ClustersApi* | [**getting_cluster_detail**](docs/ClustersApi.md#getting_cluster_detail) | **GET** /core/clusters/{id} | Getting Cluster Detail
187
188
  *ClustersApi* | [**list_clusters**](docs/ClustersApi.md#list_clusters) | **GET** /core/clusters | List Clusters
188
189
  *ClustersApi* | [**list_node_groups**](docs/ClustersApi.md#list_node_groups) | **GET** /core/clusters/{cluster_id}/node-groups | List node groups for a cluster
189
- *ClustersApi* | [**retrieve_a_node_group**](docs/ClustersApi.md#retrieve_a_node_group) | **GET** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Retrieve a node group in a cluster
190
- *ClustersApi* | [**update_a_node_group**](docs/ClustersApi.md#update_a_node_group) | **PATCH** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Update a node group in a cluster
190
+ *ClustersApi* | [**reconcile_cluster**](docs/ClustersApi.md#reconcile_cluster) | **POST** /core/clusters/{cluster_id}/reconcile | Reconcile a cluster
191
+ *ClustersApi* | [**update_node_group**](docs/ClustersApi.md#update_node_group) | **PATCH** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Update a node group in a cluster
191
192
  *ComplianceApi* | [**create_compliance**](docs/ComplianceApi.md#create_compliance) | **POST** /core/compliance | Create compliance
192
- *ComplianceApi* | [**delete_a_compliance**](docs/ComplianceApi.md#delete_a_compliance) | **DELETE** /core/compliance/{gpu_model} | Delete a compliance
193
- *ComplianceApi* | [**retrieve_compliance**](docs/ComplianceApi.md#retrieve_compliance) | **GET** /core/compliance | Retrieve GPU compliance
194
- *ComplianceApi* | [**update_a_compliance**](docs/ComplianceApi.md#update_a_compliance) | **PUT** /core/compliance | Update a compliance
195
- *CreditApi* | [**get_credit2**](docs/CreditApi.md#get_credit2) | **GET** /billing/user-credit/credit | GET: View credit and threshold
196
- *DashboardApi* | [**retrieve_dashboard**](docs/DashboardApi.md#retrieve_dashboard) | **GET** /core/dashboard | Retrieve Dashboard
193
+ *ComplianceApi* | [**delete_compliance**](docs/ComplianceApi.md#delete_compliance) | **DELETE** /core/compliance/{gpu_model} | Delete a compliance
194
+ *ComplianceApi* | [**get_compliance**](docs/ComplianceApi.md#get_compliance) | **GET** /core/compliance | Retrieve GPU compliance
195
+ *ComplianceApi* | [**update_compliance**](docs/ComplianceApi.md#update_compliance) | **PUT** /core/compliance | Update a compliance
196
+ *CreditApi* | [**get_user_credit**](docs/CreditApi.md#get_user_credit) | **GET** /billing/user-credit/credit | GET: View credit and threshold
197
+ *DashboardApi* | [**get_dashboard**](docs/DashboardApi.md#get_dashboard) | **GET** /core/dashboard | Retrieve Dashboard
197
198
  *DeploymentApi* | [**delete_deployment**](docs/DeploymentApi.md#delete_deployment) | **DELETE** /core/marketplace/deployments/{id} | Delete Deployment
198
- *DeploymentApi* | [**details_of_deployment_by_id**](docs/DeploymentApi.md#details_of_deployment_by_id) | **GET** /core/marketplace/deployments/{id} | Details of Deployment by ID
199
+ *DeploymentApi* | [**get_deployment**](docs/DeploymentApi.md#get_deployment) | **GET** /core/marketplace/deployments/{id} | Details of Deployment by ID
199
200
  *DeploymentApi* | [**list_deployments**](docs/DeploymentApi.md#list_deployments) | **GET** /core/marketplace/deployments | List Deployments
200
201
  *DeploymentApi* | [**start_deployment**](docs/DeploymentApi.md#start_deployment) | **POST** /core/marketplace/deployments | Start Deployment
201
202
  *EnvironmentApi* | [**create_environment**](docs/EnvironmentApi.md#create_environment) | **POST** /core/environments | Create environment
202
203
  *EnvironmentApi* | [**delete_environment**](docs/EnvironmentApi.md#delete_environment) | **DELETE** /core/environments/{id} | Delete environment
203
204
  *EnvironmentApi* | [**fetch_environment_name_availability**](docs/EnvironmentApi.md#fetch_environment_name_availability) | **GET** /core/environments/name-availability/{name} | Fetch environment name availability
205
+ *EnvironmentApi* | [**get_environment**](docs/EnvironmentApi.md#get_environment) | **GET** /core/environments/{id} | Retrieve environment
204
206
  *EnvironmentApi* | [**list_environments**](docs/EnvironmentApi.md#list_environments) | **GET** /core/environments | List environments
205
- *EnvironmentApi* | [**retrieve_environment**](docs/EnvironmentApi.md#retrieve_environment) | **GET** /core/environments/{id} | Retrieve environment
206
207
  *EnvironmentApi* | [**update_environment**](docs/EnvironmentApi.md#update_environment) | **PUT** /core/environments/{id} | Update environment
207
- *FirewallAttachmentApi* | [**attach_firewall_to_virtual_machines**](docs/FirewallAttachmentApi.md#attach_firewall_to_virtual_machines) | **POST** /core/firewalls/{firewall_id}/update-attachments | Attach Firewalls to VMs
208
- *FirewallsApi* | [**add_firewall_rule_to_an_existing_firewall**](docs/FirewallsApi.md#add_firewall_rule_to_an_existing_firewall) | **POST** /core/firewalls/{firewall_id}/firewall-rules | Add firewall rule to firewall
209
- *FirewallsApi* | [**create_a_new_firewall**](docs/FirewallsApi.md#create_a_new_firewall) | **POST** /core/firewalls | Create firewall
208
+ *FirewallAttachmentApi* | [**attach_firewall_to_vms**](docs/FirewallAttachmentApi.md#attach_firewall_to_vms) | **POST** /core/firewalls/{firewall_id}/update-attachments | Attach Firewalls to VMs
209
+ *FirewallsApi* | [**add_rule_to_firewall**](docs/FirewallsApi.md#add_rule_to_firewall) | **POST** /core/firewalls/{firewall_id}/firewall-rules | Add firewall rule to firewall
210
+ *FirewallsApi* | [**create_firewall**](docs/FirewallsApi.md#create_firewall) | **POST** /core/firewalls | Create firewall
210
211
  *FirewallsApi* | [**delete_existing_firewall**](docs/FirewallsApi.md#delete_existing_firewall) | **DELETE** /core/firewalls/{id} | Delete firewall
211
- *FirewallsApi* | [**delete_firewall_rules_from_firewall**](docs/FirewallsApi.md#delete_firewall_rules_from_firewall) | **DELETE** /core/firewalls/{firewall_id}/firewall-rules/{firewall_rule_id} | Delete firewall rules from firewall
212
+ *FirewallsApi* | [**delete_rule_from_firewall**](docs/FirewallsApi.md#delete_rule_from_firewall) | **DELETE** /core/firewalls/{firewall_id}/firewall-rules/{firewall_rule_id} | Delete firewall rules from firewall
213
+ *FirewallsApi* | [**get_firewall**](docs/FirewallsApi.md#get_firewall) | **GET** /core/firewalls/{id} | Retrieve firewall details
212
214
  *FirewallsApi* | [**list_existing_firewalls**](docs/FirewallsApi.md#list_existing_firewalls) | **GET** /core/firewalls | List firewalls
213
- *FirewallsApi* | [**retrieve_the_details_of_an_existing_firewall**](docs/FirewallsApi.md#retrieve_the_details_of_an_existing_firewall) | **GET** /core/firewalls/{id} | Retrieve firewall details
214
215
  *FlavorApi* | [**list_flavors**](docs/FlavorApi.md#list_flavors) | **GET** /core/flavors | List Flavors
215
- *FloatingIpApi* | [**attach_public_ipto_virtual_machine**](docs/FloatingIpApi.md#attach_public_ipto_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/attach-floatingip | Attach public IP to virtual machine
216
- *FloatingIpApi* | [**detach_public_ip_from_virtual_machine**](docs/FloatingIpApi.md#detach_public_ip_from_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/detach-floatingip | Detach public IP from virtual machine
216
+ *FloatingIpApi* | [**attach_public_ipto_vm**](docs/FloatingIpApi.md#attach_public_ipto_vm) | **POST** /core/virtual-machines/{vm_id}/attach-floatingip | Attach public IP to virtual machine
217
+ *FloatingIpApi* | [**detach_public_ip_from_vm**](docs/FloatingIpApi.md#detach_public_ip_from_vm) | **POST** /core/virtual-machines/{vm_id}/detach-floatingip | Detach public IP from virtual machine
217
218
  *GpuApi* | [**list_gpus**](docs/GpuApi.md#list_gpus) | **GET** /core/gpus | List GPUs
218
219
  *ImageApi* | [**delete_image**](docs/ImageApi.md#delete_image) | **DELETE** /core/images/{id} | Delete an image
219
220
  *ImageApi* | [**fetch_image_name_availability**](docs/ImageApi.md#fetch_image_name_availability) | **GET** /core/image/name-availability/{name} | Fetch name availability for Images
220
- *ImageApi* | [**get_image_details**](docs/ImageApi.md#get_image_details) | **GET** /core/images/{id} | Get Private Image Details
221
- *ImageApi* | [**list_images2**](docs/ImageApi.md#list_images2) | **GET** /core/images | List Images
221
+ *ImageApi* | [**get_image**](docs/ImageApi.md#get_image) | **GET** /core/images/{id} | Get Private Image Details
222
+ *ImageApi* | [**list_images**](docs/ImageApi.md#list_images) | **GET** /core/images | List Images
222
223
  *InviteApi* | [**accept_invite**](docs/InviteApi.md#accept_invite) | **GET** /auth/invites/{id}/accept | Accept Invite
223
224
  *InviteApi* | [**delete_invite**](docs/InviteApi.md#delete_invite) | **DELETE** /auth/invites/{id} | Accept Invite
224
225
  *InviteApi* | [**invite_user_to_organization**](docs/InviteApi.md#invite_user_to_organization) | **POST** /auth/invites | Invite User to Organization
@@ -232,15 +233,15 @@ Class | Method | HTTP request | Description
232
233
  *OrganizationApi* | [**update_organization_information**](docs/OrganizationApi.md#update_organization_information) | **PUT** /auth/organizations/update | Update Organization Information
233
234
  *PartnerConfigApi* | [**get_partner_config**](docs/PartnerConfigApi.md#get_partner_config) | **GET** /auth/partner-config | Get partner config
234
235
  *PartnerConfigApi* | [**get_partner_config_by_domain**](docs/PartnerConfigApi.md#get_partner_config_by_domain) | **GET** /auth/partner-config/docs |
235
- *PaymentApi* | [**get_details**](docs/PaymentApi.md#get_details) | **GET** /billing/payment/payment-details | GET: View payment details
236
- *PaymentApi* | [**get_payment_receipt2**](docs/PaymentApi.md#get_payment_receipt2) | **GET** /billing/payment/receipt/{payment_id} | Retrieve Payment Receipt
237
- *PaymentApi* | [**post_payment**](docs/PaymentApi.md#post_payment) | **POST** /billing/payment/payment-initiate | POST: Initiate payment
236
+ *PaymentApi* | [**get_payment_receipt**](docs/PaymentApi.md#get_payment_receipt) | **GET** /billing/payment/receipt/{payment_id} | Retrieve Payment Receipt
237
+ *PaymentApi* | [**initiate_payment**](docs/PaymentApi.md#initiate_payment) | **POST** /billing/payment/payment-initiate | POST: Initiate payment
238
+ *PaymentApi* | [**list_payment_details**](docs/PaymentApi.md#list_payment_details) | **GET** /billing/payment/payment-details | GET: View payment details
238
239
  *PermissionApi* | [**list_permissions**](docs/PermissionApi.md#list_permissions) | **GET** /auth/permissions | List Permissions
239
240
  *PolicyApi* | [**list_policies**](docs/PolicyApi.md#list_policies) | **GET** /auth/policies | List Policies
240
241
  *ProfileApi* | [**create_profile**](docs/ProfileApi.md#create_profile) | **POST** /core/profiles | Create profile
241
242
  *ProfileApi* | [**delete_profile**](docs/ProfileApi.md#delete_profile) | **DELETE** /core/profiles/{id} | Delete profile
243
+ *ProfileApi* | [**get_profile**](docs/ProfileApi.md#get_profile) | **GET** /core/profiles/{id} | Retrieve profile details
242
244
  *ProfileApi* | [**list_profiles**](docs/ProfileApi.md#list_profiles) | **GET** /core/profiles | List profiles
243
- *ProfileApi* | [**retrieve_profile_details**](docs/ProfileApi.md#retrieve_profile_details) | **GET** /core/profiles/{id} | Retrieve profile details
244
245
  *RbacRoleApi* | [**create_rbac_role**](docs/RbacRoleApi.md#create_rbac_role) | **POST** /auth/roles | Create RBAC Role
245
246
  *RbacRoleApi* | [**delete_rbac_role**](docs/RbacRoleApi.md#delete_rbac_role) | **DELETE** /auth/roles/{id} | Delete RBAC Role
246
247
  *RbacRoleApi* | [**list_rbac_roles**](docs/RbacRoleApi.md#list_rbac_roles) | **GET** /auth/roles | List RBAC Roles
@@ -248,52 +249,52 @@ Class | Method | HTTP request | Description
248
249
  *RbacRoleApi* | [**update_rbac_role**](docs/RbacRoleApi.md#update_rbac_role) | **PUT** /auth/roles/{id} | Update RBAC Role
249
250
  *RegionApi* | [**list_regions**](docs/RegionApi.md#list_regions) | **GET** /core/regions | List Regions
250
251
  *SecurityRulesApi* | [**list_firewall_rule_protocols**](docs/SecurityRulesApi.md#list_firewall_rule_protocols) | **GET** /core/sg-rules-protocols | List firewall rule protocols
251
- *SnapshotEventsApi* | [**fetch_all_events_for_a_snapshot**](docs/SnapshotEventsApi.md#fetch_all_events_for_a_snapshot) | **GET** /core/snapshots/{snapshot_id}/events | Fetch all events for a snapshot
252
- *StockApi* | [**retrieve_gpu_stocks**](docs/StockApi.md#retrieve_gpu_stocks) | **GET** /core/stocks | Retrieve GPU stocks
252
+ *SnapshotEventsApi* | [**list_snapshot_events**](docs/SnapshotEventsApi.md#list_snapshot_events) | **GET** /core/snapshots/{snapshot_id}/events | Fetch all events for a snapshot
253
+ *StockApi* | [**get_gpu_stock**](docs/StockApi.md#get_gpu_stock) | **GET** /core/stocks | Retrieve GPU stocks
253
254
  *TemplateApi* | [**create_template**](docs/TemplateApi.md#create_template) | **POST** /core/marketplace/templates | Create template
254
255
  *TemplateApi* | [**delete_template**](docs/TemplateApi.md#delete_template) | **DELETE** /core/marketplace/templates/{id} | Delete template
256
+ *TemplateApi* | [**get_template**](docs/TemplateApi.md#get_template) | **GET** /core/marketplace/templates/{id} | Retrieve template details
255
257
  *TemplateApi* | [**list_templates**](docs/TemplateApi.md#list_templates) | **GET** /core/marketplace/templates | List templates
256
- *TemplateApi* | [**retrieve_template_details**](docs/TemplateApi.md#retrieve_template_details) | **GET** /core/marketplace/templates/{id} | Retrieve template details
257
258
  *TemplateApi* | [**update_template**](docs/TemplateApi.md#update_template) | **PUT** /core/marketplace/templates/{id} | Update template
258
- *UserApi* | [**get_user**](docs/UserApi.md#get_user) | **GET** /billing/user/info | GET: Retrieve billing info
259
- *UserApi* | [**post_user**](docs/UserApi.md#post_user) | **POST** /billing/user/info | POST: Insert billing info
260
- *UserApi* | [**put_user**](docs/UserApi.md#put_user) | **PUT** /billing/user/info | PUT: Update billing info
261
- *UserDetailChoiceApi* | [**retrieve_default_flavors_and_images**](docs/UserDetailChoiceApi.md#retrieve_default_flavors_and_images) | **GET** /core/user/resources/defaults | Retrieve Default Flavors and Images
259
+ *UserApi* | [**add_user_billing_info**](docs/UserApi.md#add_user_billing_info) | **POST** /billing/user/info | POST: Insert billing info
260
+ *UserApi* | [**get_user_billing_info**](docs/UserApi.md#get_user_billing_info) | **GET** /billing/user/info | GET: Retrieve billing info
261
+ *UserApi* | [**update_user_billing_info**](docs/UserApi.md#update_user_billing_info) | **PUT** /billing/user/info | PUT: Update billing info
262
+ *UserDetailChoiceApi* | [**list_default_flavors_and_images**](docs/UserDetailChoiceApi.md#list_default_flavors_and_images) | **GET** /core/user/resources/defaults | Retrieve Default Flavors and Images
262
263
  *UserPermissionApi* | [**list_my_user_permissions**](docs/UserPermissionApi.md#list_my_user_permissions) | **GET** /auth/users/me/permissions | List My User Permissions
263
264
  *UserPermissionApi* | [**list_user_permissions**](docs/UserPermissionApi.md#list_user_permissions) | **GET** /auth/users/{id}/permissions | List User Permissions
264
- *VirtualMachineApi* | [**attach_firewalls_to_a_virtual_machine**](docs/VirtualMachineApi.md#attach_firewalls_to_a_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/attach-firewalls | Attach firewalls to a virtual machine
265
- *VirtualMachineApi* | [**create_one_or_more_virtual_machines**](docs/VirtualMachineApi.md#create_one_or_more_virtual_machines) | **POST** /core/virtual-machines | Create virtual machines
266
- *VirtualMachineApi* | [**delete_security_rule**](docs/VirtualMachineApi.md#delete_security_rule) | **DELETE** /core/virtual-machines/{vm_id}/sg-rules/{sg_rule_id} | Delete firewall rule from virtual machine
267
- *VirtualMachineApi* | [**delete_virtual_machine**](docs/VirtualMachineApi.md#delete_virtual_machine) | **DELETE** /core/virtual-machines/{vm_id} | Delete virtual machine
268
- *VirtualMachineApi* | [**fetch_virtual_machine_name_availability**](docs/VirtualMachineApi.md#fetch_virtual_machine_name_availability) | **GET** /core/virtual-machines/name-availability/{name} | Fetch virtual machine name availability
269
- *VirtualMachineApi* | [**get_instance_hard_reboot**](docs/VirtualMachineApi.md#get_instance_hard_reboot) | **GET** /core/virtual-machines/{vm_id}/hard-reboot | Hard reboot virtual machine
270
- *VirtualMachineApi* | [**get_instance_hibernate**](docs/VirtualMachineApi.md#get_instance_hibernate) | **GET** /core/virtual-machines/{vm_id}/hibernate | Hibernate virtual machine
271
- *VirtualMachineApi* | [**get_instance_hibernate_restore**](docs/VirtualMachineApi.md#get_instance_hibernate_restore) | **GET** /core/virtual-machines/{vm_id}/hibernate-restore | Restore virtual machine from hibernation
272
- *VirtualMachineApi* | [**get_instance_logs**](docs/VirtualMachineApi.md#get_instance_logs) | **GET** /core/virtual-machines/{vm_id}/logs | Get virtual machine logs
273
- *VirtualMachineApi* | [**get_instance_metrics**](docs/VirtualMachineApi.md#get_instance_metrics) | **GET** /core/virtual-machines/{vm_id}/metrics | Retrieve virtual machine performance metrics
274
- *VirtualMachineApi* | [**get_instance_start**](docs/VirtualMachineApi.md#get_instance_start) | **GET** /core/virtual-machines/{vm_id}/start | Start virtual machine
275
- *VirtualMachineApi* | [**get_instance_stop**](docs/VirtualMachineApi.md#get_instance_stop) | **GET** /core/virtual-machines/{vm_id}/stop | Stop virtual machine
276
- *VirtualMachineApi* | [**list_virtual_machines**](docs/VirtualMachineApi.md#list_virtual_machines) | **GET** /core/virtual-machines | List virtual machines
277
- *VirtualMachineApi* | [**post_instance_logs**](docs/VirtualMachineApi.md#post_instance_logs) | **POST** /core/virtual-machines/{vm_id}/logs | Request virtual machine logs
278
- *VirtualMachineApi* | [**post_instance_resize**](docs/VirtualMachineApi.md#post_instance_resize) | **POST** /core/virtual-machines/{vm_id}/resize | Resize virtual machine
279
- *VirtualMachineApi* | [**post_security_rule**](docs/VirtualMachineApi.md#post_security_rule) | **POST** /core/virtual-machines/{vm_id}/sg-rules | Add firewall rule to virtual machine
280
- *VirtualMachineApi* | [**post_snapshots**](docs/VirtualMachineApi.md#post_snapshots) | **POST** /core/virtual-machines/{vm_id}/snapshots | Create snapshot from a virtual machine
281
- *VirtualMachineApi* | [**put_labels**](docs/VirtualMachineApi.md#put_labels) | **PUT** /core/virtual-machines/{vm_id}/label | Edit virtual machine labels
282
- *VirtualMachineApi* | [**retrieve_virtual_machine_details**](docs/VirtualMachineApi.md#retrieve_virtual_machine_details) | **GET** /core/virtual-machines/{vm_id} | Retrieve virtual machine details
283
- *VirtualMachineApi* | [**retrieve_virtual_machines_associated_with_a_contract**](docs/VirtualMachineApi.md#retrieve_virtual_machines_associated_with_a_contract) | **GET** /core/virtual-machines/contract/{contract_id}/virtual-machines | Retrieve virtual machines associated with a contract
284
- *VirtualMachineEventsApi* | [**list_virtual_machine_events**](docs/VirtualMachineEventsApi.md#list_virtual_machine_events) | **GET** /core/virtual-machines/{vm_id}/events | List virtual machine events
285
- *VncUrlApi* | [**get_vnc_url**](docs/VncUrlApi.md#get_vnc_url) | **GET** /core/virtual-machines/{vm_id}/request-console | Request Instance Console
265
+ *VirtualMachineApi* | [**add_vm_label**](docs/VirtualMachineApi.md#add_vm_label) | **PUT** /core/virtual-machines/{vm_id}/label | Edit virtual machine labels
266
+ *VirtualMachineApi* | [**attach_firewalls_to_vm**](docs/VirtualMachineApi.md#attach_firewalls_to_vm) | **POST** /core/virtual-machines/{vm_id}/attach-firewalls | Attach firewalls to a virtual machine
267
+ *VirtualMachineApi* | [**check_vm_name_availability**](docs/VirtualMachineApi.md#check_vm_name_availability) | **GET** /core/virtual-machines/name-availability/{name} | Fetch virtual machine name availability
268
+ *VirtualMachineApi* | [**create_firewall_rule_for_vm**](docs/VirtualMachineApi.md#create_firewall_rule_for_vm) | **POST** /core/virtual-machines/{vm_id}/sg-rules | Add firewall rule to virtual machine
269
+ *VirtualMachineApi* | [**create_snapshot_for_vm**](docs/VirtualMachineApi.md#create_snapshot_for_vm) | **POST** /core/virtual-machines/{vm_id}/snapshots | Create snapshot from a virtual machine
270
+ *VirtualMachineApi* | [**create_vms**](docs/VirtualMachineApi.md#create_vms) | **POST** /core/virtual-machines | Create virtual machines
271
+ *VirtualMachineApi* | [**delete_firewall_rule_for_vm**](docs/VirtualMachineApi.md#delete_firewall_rule_for_vm) | **DELETE** /core/virtual-machines/{vm_id}/sg-rules/{sg_rule_id} | Delete firewall rule from virtual machine
272
+ *VirtualMachineApi* | [**delete_vm**](docs/VirtualMachineApi.md#delete_vm) | **DELETE** /core/virtual-machines/{vm_id} | Delete virtual machine
273
+ *VirtualMachineApi* | [**get_contract_vms**](docs/VirtualMachineApi.md#get_contract_vms) | **GET** /core/virtual-machines/contract/{contract_id}/virtual-machines | Retrieve virtual machines associated with a contract
274
+ *VirtualMachineApi* | [**get_vm**](docs/VirtualMachineApi.md#get_vm) | **GET** /core/virtual-machines/{vm_id} | Retrieve virtual machine details
275
+ *VirtualMachineApi* | [**get_vm_logs**](docs/VirtualMachineApi.md#get_vm_logs) | **GET** /core/virtual-machines/{vm_id}/logs | Get virtual machine logs
276
+ *VirtualMachineApi* | [**get_vm_metrics**](docs/VirtualMachineApi.md#get_vm_metrics) | **GET** /core/virtual-machines/{vm_id}/metrics | Retrieve virtual machine performance metrics
277
+ *VirtualMachineApi* | [**hard_reboot_vm**](docs/VirtualMachineApi.md#hard_reboot_vm) | **GET** /core/virtual-machines/{vm_id}/hard-reboot | Hard reboot virtual machine
278
+ *VirtualMachineApi* | [**hibernate_vm**](docs/VirtualMachineApi.md#hibernate_vm) | **GET** /core/virtual-machines/{vm_id}/hibernate | Hibernate virtual machine
279
+ *VirtualMachineApi* | [**list_vms**](docs/VirtualMachineApi.md#list_vms) | **GET** /core/virtual-machines | List virtual machines
280
+ *VirtualMachineApi* | [**request_vm_logs**](docs/VirtualMachineApi.md#request_vm_logs) | **POST** /core/virtual-machines/{vm_id}/logs | Request virtual machine logs
281
+ *VirtualMachineApi* | [**resize_vm**](docs/VirtualMachineApi.md#resize_vm) | **POST** /core/virtual-machines/{vm_id}/resize | Resize virtual machine
282
+ *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
283
+ *VirtualMachineApi* | [**start_vm**](docs/VirtualMachineApi.md#start_vm) | **GET** /core/virtual-machines/{vm_id}/start | Start virtual machine
284
+ *VirtualMachineApi* | [**stop_vm**](docs/VirtualMachineApi.md#stop_vm) | **GET** /core/virtual-machines/{vm_id}/stop | Stop virtual machine
285
+ *VirtualMachineEventsApi* | [**list_vm_events**](docs/VirtualMachineEventsApi.md#list_vm_events) | **GET** /core/virtual-machines/{vm_id}/events | List virtual machine events
286
286
  *VncUrlApi* | [**get_vncurl**](docs/VncUrlApi.md#get_vncurl) | **GET** /core/virtual-machines/{vm_id}/console/{job_id} | Get VNC Console Link
287
+ *VncUrlApi* | [**request_vm_console**](docs/VncUrlApi.md#request_vm_console) | **GET** /core/virtual-machines/{vm_id}/request-console | Request Instance Console
287
288
  *VolumeApi* | [**create_volume**](docs/VolumeApi.md#create_volume) | **POST** /core/volumes | Create volume
288
289
  *VolumeApi* | [**delete_volume**](docs/VolumeApi.md#delete_volume) | **DELETE** /core/volumes/{volume_id} | Delete volume
289
- *VolumeApi* | [**fetch_volume_details**](docs/VolumeApi.md#fetch_volume_details) | **GET** /core/volumes/{volume_id} | Fetch Volume Details
290
290
  *VolumeApi* | [**fetch_volume_name_availability**](docs/VolumeApi.md#fetch_volume_name_availability) | **GET** /core/volume/name-availability/{name} | Fetch volume name availability
291
+ *VolumeApi* | [**get_volume**](docs/VolumeApi.md#get_volume) | **GET** /core/volumes/{volume_id} | Fetch Volume Details
291
292
  *VolumeApi* | [**list_volume_types**](docs/VolumeApi.md#list_volume_types) | **GET** /core/volume-types | List volume types
292
293
  *VolumeApi* | [**list_volumes**](docs/VolumeApi.md#list_volumes) | **GET** /core/volumes | List volumes
293
294
  *VolumeApi* | [**update_volume**](docs/VolumeApi.md#update_volume) | **PATCH** /core/volumes/{volume_id} | Update volume fields
294
- *VolumeAttachmentApi* | [**attach_volumes_to_virtual_machine**](docs/VolumeAttachmentApi.md#attach_volumes_to_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/attach-volumes | Attach volumes to virtual machine
295
- *VolumeAttachmentApi* | [**detach_volumes_from_virtual_machine**](docs/VolumeAttachmentApi.md#detach_volumes_from_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/detach-volumes | Detach volumes from virtual machine
296
- *VolumeAttachmentApi* | [**update_a_volume_attachment**](docs/VolumeAttachmentApi.md#update_a_volume_attachment) | **PATCH** /core/volume-attachments/{volume_attachment_id} | Update a volume attachment
295
+ *VolumeAttachmentApi* | [**attach_volumes_to_vm**](docs/VolumeAttachmentApi.md#attach_volumes_to_vm) | **POST** /core/virtual-machines/{vm_id}/attach-volumes | Attach volumes to virtual machine
296
+ *VolumeAttachmentApi* | [**detach_volumes_from_vm**](docs/VolumeAttachmentApi.md#detach_volumes_from_vm) | **POST** /core/virtual-machines/{vm_id}/detach-volumes | Detach volumes from virtual machine
297
+ *VolumeAttachmentApi* | [**update_volume_attachment**](docs/VolumeAttachmentApi.md#update_volume_attachment) | **PATCH** /core/volume-attachments/{volume_attachment_id} | Update a volume attachment
297
298
  *VouchersApi* | [**redeem_a_voucher**](docs/VouchersApi.md#redeem_a_voucher) | **POST** /billing/billing/vouchers/redeem | Redeem a voucher with a voucher_code
298
299
 
299
300
 
@@ -14,11 +14,12 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "v1.45.2-alpha"
17
+ __version__ = "v1.46.2-alpha"
18
18
 
19
19
  # import apis into sdk package
20
20
  from .api.calculate_api import CalculateApi
21
21
  from .api.customer_contract_api import CustomerContractApi
22
+ from .api.fip_exclusions_api import FIPExclusionsApi
22
23
  from .api.pricebook_api import PricebookApi
23
24
  from .api.snapshots_api import SnapshotsApi
24
25
  from .api.alive_api import AliveApi
@@ -3,6 +3,7 @@
3
3
  # import apis into api package
4
4
  from .calculate_api import CalculateApi
5
5
  from .customer_contract_api import CustomerContractApi
6
+ from .fip_exclusions_api import FIPExclusionsApi
6
7
  from .pricebook_api import PricebookApi
7
8
  from .snapshots_api import SnapshotsApi
8
9
  from .alive_api import AliveApi
@@ -275,7 +275,7 @@ class AliveApi:
275
275
 
276
276
 
277
277
  @validate_call
278
- def get_doc(
278
+ def get_alive_doc(
279
279
  self,
280
280
  _request_timeout: Union[
281
281
  None,
@@ -290,7 +290,7 @@ class AliveApi:
290
290
  _headers: Optional[Dict[StrictStr, Any]] = None,
291
291
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
292
292
  ) -> None:
293
- """get_doc
293
+ """get_alive_doc
294
294
 
295
295
 
296
296
  :param _request_timeout: timeout setting for this request. If one
@@ -315,7 +315,7 @@ class AliveApi:
315
315
  :return: Returns the result object.
316
316
  """ # noqa: E501
317
317
 
318
- _param = self._get_doc_serialize(
318
+ _param = self._get_alive_doc_serialize(
319
319
  _request_auth=_request_auth,
320
320
  _content_type=_content_type,
321
321
  _headers=_headers,
@@ -337,7 +337,7 @@ class AliveApi:
337
337
 
338
338
 
339
339
  @validate_call
340
- def get_doc_with_http_info(
340
+ def get_alive_doc_with_http_info(
341
341
  self,
342
342
  _request_timeout: Union[
343
343
  None,
@@ -352,7 +352,7 @@ class AliveApi:
352
352
  _headers: Optional[Dict[StrictStr, Any]] = None,
353
353
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
354
354
  ) -> ApiResponse[None]:
355
- """get_doc
355
+ """get_alive_doc
356
356
 
357
357
 
358
358
  :param _request_timeout: timeout setting for this request. If one
@@ -377,7 +377,7 @@ class AliveApi:
377
377
  :return: Returns the result object.
378
378
  """ # noqa: E501
379
379
 
380
- _param = self._get_doc_serialize(
380
+ _param = self._get_alive_doc_serialize(
381
381
  _request_auth=_request_auth,
382
382
  _content_type=_content_type,
383
383
  _headers=_headers,
@@ -399,7 +399,7 @@ class AliveApi:
399
399
 
400
400
 
401
401
  @validate_call
402
- def get_doc_without_preload_content(
402
+ def get_alive_doc_without_preload_content(
403
403
  self,
404
404
  _request_timeout: Union[
405
405
  None,
@@ -414,7 +414,7 @@ class AliveApi:
414
414
  _headers: Optional[Dict[StrictStr, Any]] = None,
415
415
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
416
416
  ) -> RESTResponseType:
417
- """get_doc
417
+ """get_alive_doc
418
418
 
419
419
 
420
420
  :param _request_timeout: timeout setting for this request. If one
@@ -439,7 +439,7 @@ class AliveApi:
439
439
  :return: Returns the result object.
440
440
  """ # noqa: E501
441
441
 
442
- _param = self._get_doc_serialize(
442
+ _param = self._get_alive_doc_serialize(
443
443
  _request_auth=_request_auth,
444
444
  _content_type=_content_type,
445
445
  _headers=_headers,
@@ -456,7 +456,7 @@ class AliveApi:
456
456
  return response_data.response
457
457
 
458
458
 
459
- def _get_doc_serialize(
459
+ def _get_alive_doc_serialize(
460
460
  self,
461
461
  _request_auth,
462
462
  _content_type,
@@ -602,7 +602,7 @@ class ApiKeyApi:
602
602
 
603
603
 
604
604
  @validate_call
605
- def retrieve_api_key(
605
+ def get_api_key(
606
606
  self,
607
607
  _request_timeout: Union[
608
608
  None,
@@ -643,7 +643,7 @@ class ApiKeyApi:
643
643
  :return: Returns the result object.
644
644
  """ # noqa: E501
645
645
 
646
- _param = self._retrieve_api_key_serialize(
646
+ _param = self._get_api_key_serialize(
647
647
  _request_auth=_request_auth,
648
648
  _content_type=_content_type,
649
649
  _headers=_headers,
@@ -668,7 +668,7 @@ class ApiKeyApi:
668
668
 
669
669
 
670
670
  @validate_call
671
- def retrieve_api_key_with_http_info(
671
+ def get_api_key_with_http_info(
672
672
  self,
673
673
  _request_timeout: Union[
674
674
  None,
@@ -709,7 +709,7 @@ class ApiKeyApi:
709
709
  :return: Returns the result object.
710
710
  """ # noqa: E501
711
711
 
712
- _param = self._retrieve_api_key_serialize(
712
+ _param = self._get_api_key_serialize(
713
713
  _request_auth=_request_auth,
714
714
  _content_type=_content_type,
715
715
  _headers=_headers,
@@ -734,7 +734,7 @@ class ApiKeyApi:
734
734
 
735
735
 
736
736
  @validate_call
737
- def retrieve_api_key_without_preload_content(
737
+ def get_api_key_without_preload_content(
738
738
  self,
739
739
  _request_timeout: Union[
740
740
  None,
@@ -775,7 +775,7 @@ class ApiKeyApi:
775
775
  :return: Returns the result object.
776
776
  """ # noqa: E501
777
777
 
778
- _param = self._retrieve_api_key_serialize(
778
+ _param = self._get_api_key_serialize(
779
779
  _request_auth=_request_auth,
780
780
  _content_type=_content_type,
781
781
  _headers=_headers,
@@ -795,7 +795,7 @@ class ApiKeyApi:
795
795
  return response_data.response
796
796
 
797
797
 
798
- def _retrieve_api_key_serialize(
798
+ def _get_api_key_serialize(
799
799
  self,
800
800
  _request_auth,
801
801
  _content_type,