hyperstack 1.55.1a0__tar.gz → 1.55.4a0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/PKG-INFO +1 -1
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/README.md +3 -1
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/__init__.py +3 -1
- hyperstack-1.55.4a0/hyperstack/_user_agent.py +107 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/api_key_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/assigning_member_role_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/auth_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/callbacks_api.py +18 -18
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/compliance_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/dashboard_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/environment_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/firewall_attachment_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/firewalls_api.py +15 -15
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/flavor_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/floating_ip_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/image_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/invite_api.py +9 -9
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/keypair_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/organization_api.py +9 -9
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/permission_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/policy_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/profile_api.py +9 -9
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/rbac_role_api.py +15 -15
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/region_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/stock_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/template_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/user_permission_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/virtual_machine_api.py +12 -12
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/virtual_machine_events_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/vnc_url_api.py +6 -6
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/volume_attachment_api.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api_client.py +3 -3
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/configuration.py +1 -1
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/__init__.py +2 -0
- hyperstack-1.55.4a0/hyperstack/models/compatible_image.py +95 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_instances_payload.py +7 -7
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_volume_payload.py +1 -1
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_fields.py +8 -2
- hyperstack-1.55.4a0/hyperstack/models/image_restrictions.py +99 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/PKG-INFO +1 -1
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/SOURCES.txt +5 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/pyproject.toml +1 -1
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/setup.py +1 -1
- hyperstack-1.55.4a0/test/test_compatible_image.py +55 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_fields.py +11 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_item_get_response.py +1 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_list_response.py +1 -0
- hyperstack-1.55.4a0/test/test_image_restrictions.py +60 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/__init__.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/access_keys_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/alive_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/auto_topup_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/beta_access_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/billing_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/buckets_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/calculate_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/cluster_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/clusters_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/credit_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/customer_contract_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/deployment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/email_opt_in_out_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/fip_exclusions_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/gpu_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/health_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/partner_config_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/payment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/pricebook_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/regions_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/security_rules_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/snapshot_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/snapshots_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/user_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/user_consent_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/user_consent_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/user_detail_choice_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/volume_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api/vouchers_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/api_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/exceptions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/access_token_field.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/allowed_countries_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/api_key_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_callback_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_callback_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_volume_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_volumes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attach_volumes_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/auth_user_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/auto_topup.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/auto_topup_error_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/auto_topup_status_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_request_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_request_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_status_item.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_image_generation_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_metrices_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/billing_metrices_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_events.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_events_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_group_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_group_firewall_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_version.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/cluster_versions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/colors.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/common_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/compatible_flavor.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_model_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/compliance_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_action_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_block.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_events_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_template.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/consent_templates_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/container_overview_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/contract.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_instance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/contract_instances_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_auto_topup_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_cluster_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_environment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_firewall_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_image.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_image_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_instances_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_profile_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_profile_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_security_rule_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_snapshot_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_snapshot_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_update_compliance_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/customer_contract_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/dashboard_info_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/delete_cluster_nodes_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/deployment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/deployments.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/detach_volumes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/detach_volumes_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/disable_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/email_category.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/email_category_child.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/email_preferences_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/environment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/environment_features.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/environments.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/error_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_attachment_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_detail_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_detail_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewall_rule.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/firewalls_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_item_get_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_label_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_object_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/flavor_restrictions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/generate_update_api_key_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_instance_logs_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_invites_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_organization_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_permissions_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_policies_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/gpu_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/gpu_list.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/gpu_region_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/image.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/image_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/image_generation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/image_get_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/images.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/import_keypair_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/import_keypair_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_enhanced_metrics_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_events.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_events_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_flavor_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_image_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_keypair_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_overview_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instance_resize_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/instances.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/invite_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/invite_user_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/invite_user_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/keypair_environment_features.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/keypair_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/keypair_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/keypairs.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/lable_resonse.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/last_day_cost_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/last_day_cost_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/logos.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/master_flavors_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/metric_item_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/metrics_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/mfa_status_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/mfa_status_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/name_available_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/new_configurations_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/new_model_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/new_stock_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_create_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_create_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_access_key_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_bucket_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_bucket_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_delete_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_error_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_health_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_pagination_meta.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_region_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_region_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/object_storage_regions_enum.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_threshold_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_thresholds_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/organization_user_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/overview_info.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/pagination.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/pagination_data.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/partner_config.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_details_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_details_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_initiate_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_initiate_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/payment_initiate_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/policy_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/policy_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/pricebook_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/primary_color.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/profile_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/profile_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/profile_object_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_field.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/rbac_role_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/record_consent_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/redeem_voucher_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/region_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/regions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/remove_member_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/request_console.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/request_instance_logs_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/role_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/role_policy_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/secondary_color.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/security_group_rule.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/security_group_rule_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_restore_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_retrieve.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/snapshots.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/start_deployment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/start_deployment_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/supported_keypair_public_key_types_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/template.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/template_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/templates.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_auto_topup_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_consent_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_email_preference_input.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_email_preference_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_environment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_keypair_name.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_keypair_name_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_organization_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_organization_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_template.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_volume_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/update_volume_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/uris.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_consent.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_consent_event.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_consents_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_enhanced_metrics_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_enhanced_metrics_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_enhanced_metrics_response_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_info_post_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_organizations_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/user_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/users_info_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/users_info_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/vm_quota.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/vncurl.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/vncurl_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_attachment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_overview_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volume_types.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volumes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/volumes_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/voucher.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/voucher_redeem_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/models/workload_billing_history_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/py.typed +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack/rest.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/dependency_links.txt +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/requires.txt +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/hyperstack.egg-info/top_level.txt +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/setup.cfg +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_access_keys_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_access_token_field.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_add_user_info_success_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_alive_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_allowed_countries_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_api_key_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_api_key_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_assign_rbac_role_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_assigning_member_role_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_callback_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_callback_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_firewall_with_vm.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_volume_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_volumes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attach_volumes_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attachments_fields_for_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auth_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auth_get_token_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auth_user_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auth_user_info_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auto_topup.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auto_topup_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auto_topup_error_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_auto_topup_status_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_beta_access_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_beta_access_request_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_beta_access_request_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_beta_access_request_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_beta_access_status_item.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_beta_access_status_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history_fine_tuning.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history_image_generation_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history_serverless_inference.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_metrices_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_billing_metrices_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_buckets_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_calculate_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_callbacks_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_events.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_events_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_flavor_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_group_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_group_firewall_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_node_instance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_nodes_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_version.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_cluster_versions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_clusters_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_colors.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_common_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_compatible_flavor.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_compliance_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_compliance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_compliance_model_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_compliance_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_compliance_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_consent_action_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_consent_block.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_consent_events_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_consent_template.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_consent_templates_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_container_overview_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_contract.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_contract_discount_plan_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_contract_instance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_contract_instances_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_auto_topup_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_cluster_node_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_cluster_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_environment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_firewall_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_firewall_rule_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_image.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_image_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_instances_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_instances_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_profile_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_profile_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_security_rule_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_snapshot_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_snapshot_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_update_compliance_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_create_volume_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_credit_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_customer_contract_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_customer_contract_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_dashboard_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_dashboard_info_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_delete_cluster_nodes_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_deployment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_deployment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_deployments.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_detach_volumes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_detach_volumes_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_disable_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_email_category.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_email_category_child.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_email_opt_in_out_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_email_preferences_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_environment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_environment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_environment_features.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_environment_fields_for_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_environments.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_error_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_fip_exclusions_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_attachment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_attachment_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_detail_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_detail_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewall_rule.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewalls_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_firewalls_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_label_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_object_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_flavor_restrictions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_floating_ip_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_generate_update_api_key_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_api_keys_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_instance_logs_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_invites_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_organization_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_permissions_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_policies_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_get_user_permissions_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_gpu_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_gpu_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_gpu_list.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_gpu_region_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_graph_datetime_value_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_health_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_image.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_image_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_image_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_image_generation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_image_get_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_images.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_import_keypair_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_import_keypair_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_enhanced_metrics_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_events.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_events_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_flavor_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_image_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_keypair_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_overview_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instance_resize_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_instances.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_invite_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_invite_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_invite_user_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_invite_user_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_keypair_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_keypair_environment_features.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_keypair_environment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_keypair_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_keypairs.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_lable_resonse.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_last_day_cost_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_last_day_cost_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_logos.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_manual_reconciliation_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_master_flavors_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_metric_item_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_metrics_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_mfa_status_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_mfa_status_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_name_available_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_new_configurations_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_new_model_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_new_stock_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_new_stock_retrive_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_create_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_create_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_access_key_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_bucket_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_bucket_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_delete_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_error_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_health_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_pagination_meta.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_region_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_region_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_object_storage_regions_enum.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_threshold_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_threshold_update_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_thresholds_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_organization_user_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_overview_info.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_pagination.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_pagination_data.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_partner_config.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_partner_config_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_payment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_payment_details_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_payment_details_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_payment_initiate_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_payment_initiate_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_payment_initiate_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_permission_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_policy_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_policy_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_policy_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_pricebook_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_pricebook_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_primary_color.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_profile_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_profile_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_profile_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_profile_object_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_rbac_role_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_rbac_role_field.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_rbac_role_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_record_consent_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_redeem_voucher_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_region_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_region_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_regions.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_regions_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_remove_member_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_request_console.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_request_instance_logs_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_request_instance_logs_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_billing_events_history_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_role_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_role_policy_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_secondary_color.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_security_group_rule.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_security_group_rule_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_security_rules_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_security_rules_protocol_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshot_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshot_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshot_restore_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshot_retrieve.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshots.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_snapshots_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_start_deployment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_start_deployment_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_stock_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_supported_keypair_public_key_types_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_template.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_template_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_template_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_templates.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_token_based_billing_history_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_auto_topup_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_auto_topup_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_consent_request.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_email_preference_input.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_email_preference_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_environment.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_keypair_name.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_keypair_name_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_organization_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_organization_response_model.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_template.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_volume_attachment_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_volume_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_update_volume_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_uris.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_consent.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_consent_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_consent_event.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_consent_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_consents_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_detail_choice_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_enhanced_metrics_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_enhanced_metrics_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_enhanced_metrics_response_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_info_post_payload.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_organizations_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_permission_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_user_permission_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_users_info_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_users_info_list_response.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_virtual_machine_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_virtual_machine_events_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_vm_quota.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_vnc_url_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_vncurl.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_vncurl_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_attachment_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_attachment_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_fields_for_instance.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_overview_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volume_types.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volumes.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_volumes_fields.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_voucher.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_voucher_redeem_response_schema.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_vouchers_api.py +0 -0
- {hyperstack-1.55.1a0 → hyperstack-1.55.4a0}/test/test_workload_billing_history_response.py +0 -0
|
@@ -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.55.
|
|
11
|
+
- Package version: v1.55.4-alpha
|
|
12
12
|
- Generator version: 7.10.0
|
|
13
13
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
14
14
|
|
|
@@ -382,6 +382,7 @@ Class | Method | HTTP request | Description
|
|
|
382
382
|
- [Colors](docs/Colors.md)
|
|
383
383
|
- [CommonResponseModel](docs/CommonResponseModel.md)
|
|
384
384
|
- [CompatibleFlavor](docs/CompatibleFlavor.md)
|
|
385
|
+
- [CompatibleImage](docs/CompatibleImage.md)
|
|
385
386
|
- [ComplianceFields](docs/ComplianceFields.md)
|
|
386
387
|
- [ComplianceModelFields](docs/ComplianceModelFields.md)
|
|
387
388
|
- [CompliancePayload](docs/CompliancePayload.md)
|
|
@@ -475,6 +476,7 @@ Class | Method | HTTP request | Description
|
|
|
475
476
|
- [ImageFields](docs/ImageFields.md)
|
|
476
477
|
- [ImageGenerationBillingHistoryDetailsResponseSchema](docs/ImageGenerationBillingHistoryDetailsResponseSchema.md)
|
|
477
478
|
- [ImageGetResponse](docs/ImageGetResponse.md)
|
|
479
|
+
- [ImageRestrictions](docs/ImageRestrictions.md)
|
|
478
480
|
- [Images](docs/Images.md)
|
|
479
481
|
- [ImportKeypairPayload](docs/ImportKeypairPayload.md)
|
|
480
482
|
- [ImportKeypairResponse](docs/ImportKeypairResponse.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "v1.55.
|
|
17
|
+
__version__ = "v1.55.4-alpha"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from .api.access_keys_api import AccessKeysApi
|
|
@@ -140,6 +140,7 @@ from .models.cluster_versions import ClusterVersions
|
|
|
140
140
|
from .models.colors import Colors
|
|
141
141
|
from .models.common_response_model import CommonResponseModel
|
|
142
142
|
from .models.compatible_flavor import CompatibleFlavor
|
|
143
|
+
from .models.compatible_image import CompatibleImage
|
|
143
144
|
from .models.compliance_fields import ComplianceFields
|
|
144
145
|
from .models.compliance_model_fields import ComplianceModelFields
|
|
145
146
|
from .models.compliance_payload import CompliancePayload
|
|
@@ -233,6 +234,7 @@ from .models.image import Image
|
|
|
233
234
|
from .models.image_fields import ImageFields
|
|
234
235
|
from .models.image_generation_billing_history_details_response_schema import ImageGenerationBillingHistoryDetailsResponseSchema
|
|
235
236
|
from .models.image_get_response import ImageGetResponse
|
|
237
|
+
from .models.image_restrictions import ImageRestrictions
|
|
236
238
|
from .models.images import Images
|
|
237
239
|
from .models.import_keypair_payload import ImportKeypairPayload
|
|
238
240
|
from .models.import_keypair_response import ImportKeypairResponse
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""Forced Hyperstack client identification headers.
|
|
4
|
+
|
|
5
|
+
Maintained in sdk-generator (util/python/_user_agent.py) and copied into the
|
|
6
|
+
generated package by the `add-hyperstack-headers` task. Do not edit in the SDK
|
|
7
|
+
repos -- changes there are overwritten on the next release.
|
|
8
|
+
|
|
9
|
+
The module name deliberately avoids the substring "hyperstack": the generator
|
|
10
|
+
pipeline rewrites absolute imports in this package tree, and keeping this file
|
|
11
|
+
out of that namespace makes it impossible for the rewrite to touch it.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
import platform
|
|
15
|
+
import sys
|
|
16
|
+
|
|
17
|
+
CLIENT_HEADER = "Hyperstack-Client"
|
|
18
|
+
USER_AGENT_HEADER = "User-Agent"
|
|
19
|
+
|
|
20
|
+
# Stamped by the sdk-generator Taskfile, per flavour:
|
|
21
|
+
# python -> hyperstack-python-sdk
|
|
22
|
+
# python_async -> hyperstack-python-sdk-async
|
|
23
|
+
SDK_NAME = "hyperstack-python-sdk"
|
|
24
|
+
|
|
25
|
+
# Header names we always own, matched case-insensitively so a caller cannot
|
|
26
|
+
# smuggle in a second copy under different casing.
|
|
27
|
+
_FORCED = (CLIENT_HEADER.lower(), USER_AGENT_HEADER.lower())
|
|
28
|
+
|
|
29
|
+
_cache = None
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def _sdk_version():
|
|
33
|
+
# Imported lazily: this module is pulled in from api_client, which is itself
|
|
34
|
+
# imported while the package __init__ is still executing.
|
|
35
|
+
try:
|
|
36
|
+
from . import __version__
|
|
37
|
+
|
|
38
|
+
return __version__ or "unknown"
|
|
39
|
+
except Exception:
|
|
40
|
+
return "unknown"
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def _normalize_os(value):
|
|
44
|
+
v = (value or "").strip().lower()
|
|
45
|
+
if v.startswith("darwin") or v.startswith("mac"):
|
|
46
|
+
return "darwin"
|
|
47
|
+
if v.startswith("win") or v == "cygwin":
|
|
48
|
+
return "windows"
|
|
49
|
+
if v.startswith("linux"):
|
|
50
|
+
return "linux"
|
|
51
|
+
return v.replace(" ", "-") or "unknown"
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def _normalize_arch(value):
|
|
55
|
+
v = (value or "").strip().lower()
|
|
56
|
+
if v in ("x86_64", "x64", "amd64"):
|
|
57
|
+
return "x86_64"
|
|
58
|
+
if v in ("aarch64", "arm64"):
|
|
59
|
+
return "arm64"
|
|
60
|
+
if v in ("i386", "i686", "x86"):
|
|
61
|
+
return "386"
|
|
62
|
+
return v or "unknown"
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def _sanitize(value):
|
|
66
|
+
"""Keep printable ASCII only, capped at 256 chars.
|
|
67
|
+
|
|
68
|
+
Header values must not carry control characters (CR/LF would allow response
|
|
69
|
+
splitting) and some HTTP stacks reject non-ASCII outright.
|
|
70
|
+
"""
|
|
71
|
+
return "".join(c for c in value if 0x20 <= ord(c) < 0x7F)[:256]
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def _build():
|
|
75
|
+
client = _sanitize("%s/%s" % (SDK_NAME, _sdk_version()))
|
|
76
|
+
try:
|
|
77
|
+
runtime = "Python/%s" % platform.python_version()
|
|
78
|
+
except Exception:
|
|
79
|
+
runtime = "Python/unknown"
|
|
80
|
+
try:
|
|
81
|
+
os_name = _normalize_os(sys.platform)
|
|
82
|
+
arch = _normalize_arch(platform.machine())
|
|
83
|
+
except Exception:
|
|
84
|
+
os_name, arch = "unknown", "unknown"
|
|
85
|
+
user_agent = _sanitize("%s (%s; %s/%s)" % (client, runtime, os_name, arch))
|
|
86
|
+
return {CLIENT_HEADER: client, USER_AGENT_HEADER: user_agent}
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
def hyperstack_headers():
|
|
90
|
+
"""Return the forced identification headers, computed once and cached."""
|
|
91
|
+
global _cache
|
|
92
|
+
if _cache is None:
|
|
93
|
+
_cache = _build()
|
|
94
|
+
return _cache
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
def apply_hyperstack_headers(header_params):
|
|
98
|
+
"""Force the identification headers onto a mutable header dict.
|
|
99
|
+
|
|
100
|
+
Any caller-supplied variant is dropped first, so exactly one of each is sent.
|
|
101
|
+
"""
|
|
102
|
+
if header_params is None:
|
|
103
|
+
return header_params
|
|
104
|
+
for key in [k for k in list(header_params) if str(k).lower() in _FORCED]:
|
|
105
|
+
del header_params[key]
|
|
106
|
+
header_params.update(hyperstack_headers())
|
|
107
|
+
return header_params
|
|
@@ -332,7 +332,7 @@ class ApiKeyApi:
|
|
|
332
332
|
) -> GenerateUpdateApiKeyResponseModel:
|
|
333
333
|
"""Generate API Key
|
|
334
334
|
|
|
335
|
-
Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs
|
|
335
|
+
Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
|
|
336
336
|
|
|
337
337
|
:param payload: (required)
|
|
338
338
|
:type payload: GenerateUpdateApiKeyPayload
|
|
@@ -404,7 +404,7 @@ class ApiKeyApi:
|
|
|
404
404
|
) -> ApiResponse[GenerateUpdateApiKeyResponseModel]:
|
|
405
405
|
"""Generate API Key
|
|
406
406
|
|
|
407
|
-
Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs
|
|
407
|
+
Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
|
|
408
408
|
|
|
409
409
|
:param payload: (required)
|
|
410
410
|
:type payload: GenerateUpdateApiKeyPayload
|
|
@@ -476,7 +476,7 @@ class ApiKeyApi:
|
|
|
476
476
|
) -> RESTResponseType:
|
|
477
477
|
"""Generate API Key
|
|
478
478
|
|
|
479
|
-
Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs
|
|
479
|
+
Generates your API key, providing access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/generate-api-key).
|
|
480
480
|
|
|
481
481
|
:param payload: (required)
|
|
482
482
|
:type payload: GenerateUpdateApiKeyPayload
|
|
@@ -620,7 +620,7 @@ class ApiKeyApi:
|
|
|
620
620
|
) -> GetApiKeysResponseModel:
|
|
621
621
|
"""Retrieve API Keys
|
|
622
622
|
|
|
623
|
-
Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs
|
|
623
|
+
Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
|
|
624
624
|
|
|
625
625
|
:param _request_timeout: timeout setting for this request. If one
|
|
626
626
|
number provided, it will be total request
|
|
@@ -686,7 +686,7 @@ class ApiKeyApi:
|
|
|
686
686
|
) -> ApiResponse[GetApiKeysResponseModel]:
|
|
687
687
|
"""Retrieve API Keys
|
|
688
688
|
|
|
689
|
-
Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs
|
|
689
|
+
Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
|
|
690
690
|
|
|
691
691
|
:param _request_timeout: timeout setting for this request. If one
|
|
692
692
|
number provided, it will be total request
|
|
@@ -752,7 +752,7 @@ class ApiKeyApi:
|
|
|
752
752
|
) -> RESTResponseType:
|
|
753
753
|
"""Retrieve API Keys
|
|
754
754
|
|
|
755
|
-
Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs
|
|
755
|
+
Retrieves your API keys, granting access to the Infrahub APIs. For further details on API keys, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/api-key/retrieve-api-key).
|
|
756
756
|
|
|
757
757
|
:param _request_timeout: timeout setting for this request. If one
|
|
758
758
|
number provided, it will be total request
|
|
@@ -59,7 +59,7 @@ class AssigningMemberRoleApi:
|
|
|
59
59
|
) -> RbacRoleDetailResponseModel:
|
|
60
60
|
"""Assign RBAC Role
|
|
61
61
|
|
|
62
|
-
Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs
|
|
62
|
+
Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
|
|
63
63
|
|
|
64
64
|
:param user_id: (required)
|
|
65
65
|
:type user_id: int
|
|
@@ -134,7 +134,7 @@ class AssigningMemberRoleApi:
|
|
|
134
134
|
) -> ApiResponse[RbacRoleDetailResponseModel]:
|
|
135
135
|
"""Assign RBAC Role
|
|
136
136
|
|
|
137
|
-
Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs
|
|
137
|
+
Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
|
|
138
138
|
|
|
139
139
|
:param user_id: (required)
|
|
140
140
|
:type user_id: int
|
|
@@ -209,7 +209,7 @@ class AssigningMemberRoleApi:
|
|
|
209
209
|
) -> RESTResponseType:
|
|
210
210
|
"""Assign RBAC Role
|
|
211
211
|
|
|
212
|
-
Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs
|
|
212
|
+
Assigns a specific RBAC role to a user within your organization, granting them access to the resource actions permitted by the role. Provide the user ID in the path and the role ID in the request body. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/assign-rbac-role).
|
|
213
213
|
|
|
214
214
|
:param user_id: (required)
|
|
215
215
|
:type user_id: int
|
|
@@ -359,7 +359,7 @@ class AssigningMemberRoleApi:
|
|
|
359
359
|
) -> CommonResponseModel:
|
|
360
360
|
"""Remove RBAC Role From User
|
|
361
361
|
|
|
362
|
-
Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs
|
|
362
|
+
Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
|
|
363
363
|
|
|
364
364
|
:param user_id: (required)
|
|
365
365
|
:type user_id: int
|
|
@@ -430,7 +430,7 @@ class AssigningMemberRoleApi:
|
|
|
430
430
|
) -> ApiResponse[CommonResponseModel]:
|
|
431
431
|
"""Remove RBAC Role From User
|
|
432
432
|
|
|
433
|
-
Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs
|
|
433
|
+
Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
|
|
434
434
|
|
|
435
435
|
:param user_id: (required)
|
|
436
436
|
:type user_id: int
|
|
@@ -501,7 +501,7 @@ class AssigningMemberRoleApi:
|
|
|
501
501
|
) -> RESTResponseType:
|
|
502
502
|
"""Remove RBAC Role From User
|
|
503
503
|
|
|
504
|
-
Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs
|
|
504
|
+
Removes an RBAC role from a user within your organization, revoking the resource permissions they had access to. Provide the user ID in the path. For additional information, [click here](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/rbac/manage-member-roles/revoke-rbac-role).
|
|
505
505
|
|
|
506
506
|
:param user_id: (required)
|
|
507
507
|
:type user_id: int
|
|
@@ -1103,7 +1103,7 @@ class AuthApi:
|
|
|
1103
1103
|
) -> AuthUserInfoResponseModel:
|
|
1104
1104
|
"""Retrieve Authenticated User Details
|
|
1105
1105
|
|
|
1106
|
-
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs
|
|
1106
|
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
|
|
1107
1107
|
|
|
1108
1108
|
:param _request_timeout: timeout setting for this request. If one
|
|
1109
1109
|
number provided, it will be total request
|
|
@@ -1169,7 +1169,7 @@ class AuthApi:
|
|
|
1169
1169
|
) -> ApiResponse[AuthUserInfoResponseModel]:
|
|
1170
1170
|
"""Retrieve Authenticated User Details
|
|
1171
1171
|
|
|
1172
|
-
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs
|
|
1172
|
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
|
|
1173
1173
|
|
|
1174
1174
|
:param _request_timeout: timeout setting for this request. If one
|
|
1175
1175
|
number provided, it will be total request
|
|
@@ -1235,7 +1235,7 @@ class AuthApi:
|
|
|
1235
1235
|
) -> RESTResponseType:
|
|
1236
1236
|
"""Retrieve Authenticated User Details
|
|
1237
1237
|
|
|
1238
|
-
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs
|
|
1238
|
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
|
|
1239
1239
|
|
|
1240
1240
|
:param _request_timeout: timeout setting for this request. If one
|
|
1241
1241
|
number provided, it will be total request
|
|
@@ -59,7 +59,7 @@ class CallbacksApi:
|
|
|
59
59
|
) -> AttachCallbackResponse:
|
|
60
60
|
"""Attach callback to virtual machine
|
|
61
61
|
|
|
62
|
-
Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs
|
|
62
|
+
Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
|
|
63
63
|
|
|
64
64
|
:param vm_id: (required)
|
|
65
65
|
:type vm_id: int
|
|
@@ -134,7 +134,7 @@ class CallbacksApi:
|
|
|
134
134
|
) -> ApiResponse[AttachCallbackResponse]:
|
|
135
135
|
"""Attach callback to virtual machine
|
|
136
136
|
|
|
137
|
-
Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs
|
|
137
|
+
Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
|
|
138
138
|
|
|
139
139
|
:param vm_id: (required)
|
|
140
140
|
:type vm_id: int
|
|
@@ -209,7 +209,7 @@ class CallbacksApi:
|
|
|
209
209
|
) -> RESTResponseType:
|
|
210
210
|
"""Attach callback to virtual machine
|
|
211
211
|
|
|
212
|
-
Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs
|
|
212
|
+
Creates a callback URL for a specified virtual machine, enabling the posting of action events executed on the virtual machine to the specified URL. Provide the callback URL in the request body and the ID of the virtual machine to which it is being attached in the path. For more details on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/attach-callback-vm).
|
|
213
213
|
|
|
214
214
|
:param vm_id: (required)
|
|
215
215
|
:type vm_id: int
|
|
@@ -360,7 +360,7 @@ class CallbacksApi:
|
|
|
360
360
|
) -> AttachCallbackResponse:
|
|
361
361
|
"""Attach callback to volume
|
|
362
362
|
|
|
363
|
-
Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs
|
|
363
|
+
Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
|
|
364
364
|
|
|
365
365
|
:param volume_id: (required)
|
|
366
366
|
:type volume_id: int
|
|
@@ -435,7 +435,7 @@ class CallbacksApi:
|
|
|
435
435
|
) -> ApiResponse[AttachCallbackResponse]:
|
|
436
436
|
"""Attach callback to volume
|
|
437
437
|
|
|
438
|
-
Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs
|
|
438
|
+
Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
|
|
439
439
|
|
|
440
440
|
:param volume_id: (required)
|
|
441
441
|
:type volume_id: int
|
|
@@ -510,7 +510,7 @@ class CallbacksApi:
|
|
|
510
510
|
) -> RESTResponseType:
|
|
511
511
|
"""Attach callback to volume
|
|
512
512
|
|
|
513
|
-
Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs
|
|
513
|
+
Creates a callback URL for a specified volume, enabling the posting of action events executed on the volume to the specified URL. Provide the callback URL in the request body and the ID of the volume to which it is being attached in the path. For more details on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/attach-callback-volume).
|
|
514
514
|
|
|
515
515
|
:param volume_id: (required)
|
|
516
516
|
:type volume_id: int
|
|
@@ -660,7 +660,7 @@ class CallbacksApi:
|
|
|
660
660
|
) -> ResponseModel:
|
|
661
661
|
"""Delete virtual machine callback
|
|
662
662
|
|
|
663
|
-
Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs
|
|
663
|
+
Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
|
|
664
664
|
|
|
665
665
|
:param vm_id: (required)
|
|
666
666
|
:type vm_id: int
|
|
@@ -731,7 +731,7 @@ class CallbacksApi:
|
|
|
731
731
|
) -> ApiResponse[ResponseModel]:
|
|
732
732
|
"""Delete virtual machine callback
|
|
733
733
|
|
|
734
|
-
Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs
|
|
734
|
+
Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
|
|
735
735
|
|
|
736
736
|
:param vm_id: (required)
|
|
737
737
|
:type vm_id: int
|
|
@@ -802,7 +802,7 @@ class CallbacksApi:
|
|
|
802
802
|
) -> RESTResponseType:
|
|
803
803
|
"""Delete virtual machine callback
|
|
804
804
|
|
|
805
|
-
Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs
|
|
805
|
+
Permanently deletes the callback URL associated with a specified virtual machine by providing the virtual machine ID in the request path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms/delete-callback-vm).
|
|
806
806
|
|
|
807
807
|
:param vm_id: (required)
|
|
808
808
|
:type vm_id: int
|
|
@@ -933,7 +933,7 @@ class CallbacksApi:
|
|
|
933
933
|
) -> ResponseModel:
|
|
934
934
|
"""Delete volume callback
|
|
935
935
|
|
|
936
|
-
Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs
|
|
936
|
+
Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
|
|
937
937
|
|
|
938
938
|
:param volume_id: (required)
|
|
939
939
|
:type volume_id: int
|
|
@@ -1004,7 +1004,7 @@ class CallbacksApi:
|
|
|
1004
1004
|
) -> ApiResponse[ResponseModel]:
|
|
1005
1005
|
"""Delete volume callback
|
|
1006
1006
|
|
|
1007
|
-
Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs
|
|
1007
|
+
Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
|
|
1008
1008
|
|
|
1009
1009
|
:param volume_id: (required)
|
|
1010
1010
|
:type volume_id: int
|
|
@@ -1075,7 +1075,7 @@ class CallbacksApi:
|
|
|
1075
1075
|
) -> RESTResponseType:
|
|
1076
1076
|
"""Delete volume callback
|
|
1077
1077
|
|
|
1078
|
-
Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs
|
|
1078
|
+
Permanently deletes the callback URL associated with a specified volume by providing the volume ID in the request path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/delete-callback-volume).
|
|
1079
1079
|
|
|
1080
1080
|
:param volume_id: (required)
|
|
1081
1081
|
:type volume_id: int
|
|
@@ -1207,7 +1207,7 @@ class CallbacksApi:
|
|
|
1207
1207
|
) -> AttachCallbackResponse:
|
|
1208
1208
|
"""Update virtual machine callback
|
|
1209
1209
|
|
|
1210
|
-
Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs
|
|
1210
|
+
Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
|
|
1211
1211
|
|
|
1212
1212
|
:param vm_id: (required)
|
|
1213
1213
|
:type vm_id: int
|
|
@@ -1282,7 +1282,7 @@ class CallbacksApi:
|
|
|
1282
1282
|
) -> ApiResponse[AttachCallbackResponse]:
|
|
1283
1283
|
"""Update virtual machine callback
|
|
1284
1284
|
|
|
1285
|
-
Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs
|
|
1285
|
+
Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
|
|
1286
1286
|
|
|
1287
1287
|
:param vm_id: (required)
|
|
1288
1288
|
:type vm_id: int
|
|
@@ -1357,7 +1357,7 @@ class CallbacksApi:
|
|
|
1357
1357
|
) -> RESTResponseType:
|
|
1358
1358
|
"""Update virtual machine callback
|
|
1359
1359
|
|
|
1360
|
-
Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs
|
|
1360
|
+
Updates the callback URL for a specified virtual machine. Provide the new callback URL in the request body, along with the ID of the associated virtual machine in the path. For additional information on virtual machine callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/virtual-machines/callbacks-vms).
|
|
1361
1361
|
|
|
1362
1362
|
:param vm_id: (required)
|
|
1363
1363
|
:type vm_id: int
|
|
@@ -1508,7 +1508,7 @@ class CallbacksApi:
|
|
|
1508
1508
|
) -> AttachCallbackResponse:
|
|
1509
1509
|
"""Update volume callback
|
|
1510
1510
|
|
|
1511
|
-
Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs
|
|
1511
|
+
Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
|
|
1512
1512
|
|
|
1513
1513
|
:param volume_id: (required)
|
|
1514
1514
|
:type volume_id: int
|
|
@@ -1583,7 +1583,7 @@ class CallbacksApi:
|
|
|
1583
1583
|
) -> ApiResponse[AttachCallbackResponse]:
|
|
1584
1584
|
"""Update volume callback
|
|
1585
1585
|
|
|
1586
|
-
Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs
|
|
1586
|
+
Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
|
|
1587
1587
|
|
|
1588
1588
|
:param volume_id: (required)
|
|
1589
1589
|
:type volume_id: int
|
|
@@ -1658,7 +1658,7 @@ class CallbacksApi:
|
|
|
1658
1658
|
) -> RESTResponseType:
|
|
1659
1659
|
"""Update volume callback
|
|
1660
1660
|
|
|
1661
|
-
Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs
|
|
1661
|
+
Updates the callback URL for a specified volume. Provide the new callback URL in the request body, along with the ID of the associated volume in the path. For additional information on volume callback URLs, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/volumes/volume-callbacks/update-callback-volume/).
|
|
1662
1662
|
|
|
1663
1663
|
:param volume_id: (required)
|
|
1664
1664
|
:type volume_id: int
|
|
@@ -620,7 +620,7 @@ class ComplianceApi:
|
|
|
620
620
|
) -> ComplianceResponse:
|
|
621
621
|
"""Retrieve GPU compliance
|
|
622
622
|
|
|
623
|
-
Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs
|
|
623
|
+
Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs.hyperstack.cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
|
|
624
624
|
|
|
625
625
|
:param gpu: This is for gpu model
|
|
626
626
|
:type gpu: str
|
|
@@ -692,7 +692,7 @@ class ComplianceApi:
|
|
|
692
692
|
) -> ApiResponse[ComplianceResponse]:
|
|
693
693
|
"""Retrieve GPU compliance
|
|
694
694
|
|
|
695
|
-
Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs
|
|
695
|
+
Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs.hyperstack.cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
|
|
696
696
|
|
|
697
697
|
:param gpu: This is for gpu model
|
|
698
698
|
:type gpu: str
|
|
@@ -764,7 +764,7 @@ class ComplianceApi:
|
|
|
764
764
|
) -> RESTResponseType:
|
|
765
765
|
"""Retrieve GPU compliance
|
|
766
766
|
|
|
767
|
-
Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs
|
|
767
|
+
Returns a list of compliance objects each corresponding to available GPU models. These compliance objects contain minimum and maximum values for RAM in GB, number of vCPUs, and system disk capacity in GB. Use the optional `gpu` model parameter in the query string to filter responses by GPU model. For additional details on GPU compliance, [**click here**](https://docs.hyperstack.cloud/docs/hardware/flavors#adhering-to-gpu-compliance).
|
|
768
768
|
|
|
769
769
|
:param gpu: This is for gpu model
|
|
770
770
|
:type gpu: str
|
|
@@ -54,7 +54,7 @@ class DashboardApi:
|
|
|
54
54
|
) -> DashboardInfoResponse:
|
|
55
55
|
"""Retrieve Dashboard
|
|
56
56
|
|
|
57
|
-
Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs
|
|
57
|
+
Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs.hyperstack.cloud/docs/resource-management/dashboard/).
|
|
58
58
|
|
|
59
59
|
:param _request_timeout: timeout setting for this request. If one
|
|
60
60
|
number provided, it will be total request
|
|
@@ -120,7 +120,7 @@ class DashboardApi:
|
|
|
120
120
|
) -> ApiResponse[DashboardInfoResponse]:
|
|
121
121
|
"""Retrieve Dashboard
|
|
122
122
|
|
|
123
|
-
Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs
|
|
123
|
+
Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs.hyperstack.cloud/docs/resource-management/dashboard/).
|
|
124
124
|
|
|
125
125
|
:param _request_timeout: timeout setting for this request. If one
|
|
126
126
|
number provided, it will be total request
|
|
@@ -186,7 +186,7 @@ class DashboardApi:
|
|
|
186
186
|
) -> RESTResponseType:
|
|
187
187
|
"""Retrieve Dashboard
|
|
188
188
|
|
|
189
|
-
Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs
|
|
189
|
+
Returns hardware and pricing overview for your active resources, includingvirtual machines, containers, and volumes. For more details on the Dashboard feature, [**click here**](https://docs.hyperstack.cloud/docs/resource-management/dashboard/).
|
|
190
190
|
|
|
191
191
|
:param _request_timeout: timeout setting for this request. If one
|
|
192
192
|
number provided, it will be total request
|
|
@@ -64,7 +64,7 @@ class EnvironmentApi:
|
|
|
64
64
|
) -> Environment:
|
|
65
65
|
"""Create environment
|
|
66
66
|
|
|
67
|
-
Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs
|
|
67
|
+
Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs.hyperstack.cloud/docs/resource-management/regions/) in the request body.
|
|
68
68
|
|
|
69
69
|
:param payload: (required)
|
|
70
70
|
:type payload: CreateEnvironment
|
|
@@ -136,7 +136,7 @@ class EnvironmentApi:
|
|
|
136
136
|
) -> ApiResponse[Environment]:
|
|
137
137
|
"""Create environment
|
|
138
138
|
|
|
139
|
-
Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs
|
|
139
|
+
Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs.hyperstack.cloud/docs/resource-management/regions/) in the request body.
|
|
140
140
|
|
|
141
141
|
:param payload: (required)
|
|
142
142
|
:type payload: CreateEnvironment
|
|
@@ -208,7 +208,7 @@ class EnvironmentApi:
|
|
|
208
208
|
) -> RESTResponseType:
|
|
209
209
|
"""Create environment
|
|
210
210
|
|
|
211
|
-
Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs
|
|
211
|
+
Creates an environment—a container to organize your resources, including SSH key pairs, virtual machines, and volumes. To create your environment, provide your desired environment name, and [**region**](https://docs.hyperstack.cloud/docs/resource-management/regions/) in the request body.
|
|
212
212
|
|
|
213
213
|
:param payload: (required)
|
|
214
214
|
:type payload: CreateEnvironment
|
|
@@ -1447,7 +1447,7 @@ class EnvironmentApi:
|
|
|
1447
1447
|
) -> Environments:
|
|
1448
1448
|
"""List environments
|
|
1449
1449
|
|
|
1450
|
-
Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs
|
|
1450
|
+
Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
|
|
1451
1451
|
|
|
1452
1452
|
:param page: Page Number
|
|
1453
1453
|
:type page: str
|
|
@@ -1525,7 +1525,7 @@ class EnvironmentApi:
|
|
|
1525
1525
|
) -> ApiResponse[Environments]:
|
|
1526
1526
|
"""List environments
|
|
1527
1527
|
|
|
1528
|
-
Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs
|
|
1528
|
+
Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
|
|
1529
1529
|
|
|
1530
1530
|
:param page: Page Number
|
|
1531
1531
|
:type page: str
|
|
@@ -1603,7 +1603,7 @@ class EnvironmentApi:
|
|
|
1603
1603
|
) -> RESTResponseType:
|
|
1604
1604
|
"""List environments
|
|
1605
1605
|
|
|
1606
|
-
Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs
|
|
1606
|
+
Returns a list of your existing environments, providing the following details for each; environment ID, name, [**region**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/), and the date and time of creation. For more information on environments, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/environments/).
|
|
1607
1607
|
|
|
1608
1608
|
:param page: Page Number
|
|
1609
1609
|
:type page: str
|
|
@@ -58,7 +58,7 @@ class FirewallAttachmentApi:
|
|
|
58
58
|
) -> ResponseModel:
|
|
59
59
|
"""Attach Firewalls to VMs
|
|
60
60
|
|
|
61
|
-
Attach a firewall to one or more virtual machines by providing the virtual machine IDs in the request body and the firewall ID in the path. For more information, [**click here**](https://docs
|
|
61
|
+
Attach a firewall to one or more virtual machines by providing the virtual machine IDs in the request body and the firewall ID in the path. For more information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/firewalls/attach-firewall-to-vms).
|
|
62
62
|
|
|
63
63
|
:param firewall_id: (required)
|
|
64
64
|
:type firewall_id: int
|
|
@@ -135,7 +135,7 @@ class FirewallAttachmentApi:
|
|
|
135
135
|
) -> ApiResponse[ResponseModel]:
|
|
136
136
|
"""Attach Firewalls to VMs
|
|
137
137
|
|
|
138
|
-
Attach a firewall to one or more virtual machines by providing the virtual machine IDs in the request body and the firewall ID in the path. For more information, [**click here**](https://docs
|
|
138
|
+
Attach a firewall to one or more virtual machines by providing the virtual machine IDs in the request body and the firewall ID in the path. For more information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/firewalls/attach-firewall-to-vms).
|
|
139
139
|
|
|
140
140
|
:param firewall_id: (required)
|
|
141
141
|
:type firewall_id: int
|
|
@@ -212,7 +212,7 @@ class FirewallAttachmentApi:
|
|
|
212
212
|
) -> RESTResponseType:
|
|
213
213
|
"""Attach Firewalls to VMs
|
|
214
214
|
|
|
215
|
-
Attach a firewall to one or more virtual machines by providing the virtual machine IDs in the request body and the firewall ID in the path. For more information, [**click here**](https://docs
|
|
215
|
+
Attach a firewall to one or more virtual machines by providing the virtual machine IDs in the request body and the firewall ID in the path. For more information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/core-resources/firewalls/attach-firewall-to-vms).
|
|
216
216
|
|
|
217
217
|
:param firewall_id: (required)
|
|
218
218
|
:type firewall_id: int
|