hyperstack 1.48.0a0__tar.gz → 1.50.0a0__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.48.0a0 → hyperstack-1.50.0a0}/PKG-INFO +1 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/README.md +5 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/__init__.py +4 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/environment_api.py +274 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/virtual_machine_api.py +35 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api_client.py +1 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/configuration.py +1 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/__init__.py +3 -0
- hyperstack-1.50.0a0/hyperstack/models/compatible_flavor.py +95 -0
- hyperstack-1.50.0a0/hyperstack/models/flavor_restrictions.py +99 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/image_fields.py +8 -2
- hyperstack-1.50.0a0/hyperstack/models/vm_quota.py +99 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/voucher.py +8 -2
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack.egg-info/PKG-INFO +1 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack.egg-info/SOURCES.txt +6 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/pyproject.toml +1 -1
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/setup.py +1 -1
- hyperstack-1.50.0a0/test/test_compatible_flavor.py +55 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_environment_api.py +7 -0
- hyperstack-1.50.0a0/test/test_flavor_restrictions.py +60 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_image.py +1 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_image_fields.py +11 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_image_get_response.py +1 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_images.py +1 -0
- hyperstack-1.50.0a0/test/test_vm_quota.py +57 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_voucher.py +3 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_voucher_redeem_response_schema.py +3 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/__init__.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/access_keys_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/alive_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/api_key_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/assigning_member_role_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/auth_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/beta_access_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/billing_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/buckets_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/calculate_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/callbacks_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/cluster_events_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/clusters_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/compliance_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/credit_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/customer_contract_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/dashboard_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/deployment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/fip_exclusions_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/firewall_attachment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/firewalls_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/flavor_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/floating_ip_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/gpu_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/health_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/image_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/invite_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/keypair_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/organization_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/partner_config_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/payment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/permission_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/policy_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/pricebook_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/profile_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/rbac_role_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/region_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/regions_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/security_rules_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/snapshot_events_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/snapshots_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/stock_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/template_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/user_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/user_detail_choice_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/user_permission_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/virtual_machine_events_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/vnc_url_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/volume_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/volume_attachment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api/vouchers_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/api_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/exceptions.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/access_token_field.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/api_key_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_callback_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_callback_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_volume_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_volumes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attach_volumes_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/auth_user_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/beta_access_request_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/beta_access_request_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/beta_access_status_item.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_history.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_metrices_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/billing_metrices_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_events.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_events_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_node_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_node_group_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_version.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/cluster_versions.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/colors.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/common_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/compliance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/compliance_model_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/compliance_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/compliance_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/container_overview_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/contract.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/contract_instance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/contract_instances_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_cluster_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_environment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_firewall_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_image.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_image_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_instances_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_instances_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_profile_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_profile_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_security_rule_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_snapshot_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_snapshot_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_update_compliance_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/create_volume_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/customer_contract_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/dashboard_info_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/delete_cluster_nodes_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/deployment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/deployments.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/detach_volumes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/detach_volumes_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/environment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/environment_features.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/environments.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/error_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_attachment_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_detail_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_detail_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewall_rule.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/firewalls_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/flavor_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/flavor_item_get_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/flavor_label_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/flavor_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/flavor_object_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/generate_update_api_key_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_instance_logs_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_invites_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_organization_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_permissions_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_policies_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/gpu_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/gpu_list.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/gpu_region_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/image.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/image_get_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/images.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/import_keypair_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/import_keypair_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_events.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_events_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_flavor_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_image_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_keypair_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_overview_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instance_resize_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/instances.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/invite_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/invite_user_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/invite_user_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/keypair_environment_features.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/keypair_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/keypair_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/keypairs.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/lable_resonse.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/last_day_cost_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/last_day_cost_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/logos.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/master_flavors_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/metric_item_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/metrics_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/mfa_status_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/mfa_status_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/name_available_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/new_configurations_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/new_model_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/new_stock_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_access_key_create_request.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_access_key_create_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_access_key_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_access_key_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_bucket_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_bucket_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_delete_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_error_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_health_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_pagination_meta.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_region_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_region_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/object_storage_regions_enum.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_level_billing_history.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_threshold_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_thresholds_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/organization_user_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/overview_info.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/pagination.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/pagination_data.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/partner_config.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/payment_details_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/payment_details_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/payment_initiate_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/payment_initiate_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/payment_initiate_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/policy_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/policy_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/pricebook_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/primary_color.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/profile_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/profile_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/profile_object_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/rbac_role_field.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/rbac_role_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/redeem_voucher_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/region_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/regions.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/remove_member_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/request_console.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/request_instance_logs_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_history.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/role_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/role_policy_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/secondary_color.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/security_group_rule.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/security_group_rule_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/snapshot_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/snapshot_restore_request.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/snapshot_retrieve.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/snapshots.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/start_deployment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/start_deployment_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/template.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/template_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/templates.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_environment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_keypair_name.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_keypair_name_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_organization_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_organization_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_template.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_volume_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/update_volume_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/uris.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/user_info_post_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/user_organizations_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/user_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/users_info_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/users_info_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/vncurl.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/vncurl_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volume_attachment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volume_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volume_overview_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volume_types.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volumes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/volumes_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/voucher_redeem_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/models/workload_billing_history_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/py.typed +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack/rest.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack.egg-info/dependency_links.txt +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack.egg-info/requires.txt +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/hyperstack.egg-info/top_level.txt +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/setup.cfg +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_access_keys_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_access_token_field.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_add_user_info_success_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_alive_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_api_key_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_api_key_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_assign_rbac_role_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_assigning_member_role_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_callback_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_callback_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_firewall_with_vm.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_volume_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_volumes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attach_volumes_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attachments_fields_for_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_auth_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_auth_get_token_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_auth_user_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_auth_user_info_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_beta_access_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_beta_access_request_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_beta_access_request_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_beta_access_request_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_beta_access_status_item.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_beta_access_status_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_history.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_history_fine_tuning.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_history_serverless_inference.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_metrices_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_billing_metrices_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_buckets_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_calculate_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_callbacks_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_events.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_events_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_events_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_flavor_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_node_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_node_group_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_node_instance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_nodes_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_version.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_cluster_versions.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_clusters_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_colors.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_common_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_compliance_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_compliance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_compliance_model_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_compliance_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_compliance_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_container_overview_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_contract.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_contract_discount_plan_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_contract_instance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_contract_instances_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_cluster_node_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_cluster_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_environment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_firewall_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_firewall_rule_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_image.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_image_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_instances_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_instances_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_profile_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_profile_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_security_rule_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_snapshot_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_snapshot_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_update_compliance_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_create_volume_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_credit_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_customer_contract_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_customer_contract_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_dashboard_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_dashboard_info_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_delete_cluster_nodes_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_deployment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_deployment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_deployments.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_detach_volumes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_detach_volumes_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_environment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_environment_features.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_environment_fields_for_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_environments.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_error_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_fip_exclusions_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_attachment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_attachment_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_detail_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_detail_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewall_rule.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewalls_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_firewalls_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_flavor_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_flavor_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_flavor_item_get_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_flavor_label_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_flavor_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_flavor_object_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_floating_ip_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_generate_update_api_key_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_api_keys_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_instance_logs_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_invites_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_organization_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_permissions_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_policies_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_get_user_permissions_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_gpu_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_gpu_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_gpu_list.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_gpu_region_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_graph_datetime_value_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_health_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_image_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_import_keypair_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_import_keypair_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_events.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_events_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_flavor_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_image_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_keypair_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_overview_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instance_resize_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_instances.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_invite_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_invite_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_invite_user_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_invite_user_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_keypair_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_keypair_environment_features.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_keypair_environment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_keypair_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_keypairs.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_lable_resonse.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_last_day_cost_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_last_day_cost_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_logos.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_manual_reconciliation_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_master_flavors_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_metric_item_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_metrics_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_mfa_status_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_mfa_status_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_name_available_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_new_configurations_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_new_model_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_new_stock_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_new_stock_retrive_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_access_key_create_request.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_access_key_create_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_access_key_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_access_key_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_bucket_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_bucket_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_delete_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_error_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_health_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_pagination_meta.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_region_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_region_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_object_storage_regions_enum.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_level_billing_history.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_threshold_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_threshold_update_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_thresholds_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_organization_user_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_overview_info.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_pagination.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_pagination_data.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_partner_config.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_partner_config_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_payment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_payment_details_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_payment_details_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_payment_initiate_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_payment_initiate_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_payment_initiate_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_permission_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_policy_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_policy_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_policy_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_pricebook_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_pricebook_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_primary_color.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_profile_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_profile_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_profile_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_profile_object_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_rbac_role_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_rbac_role_field.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_rbac_role_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_redeem_voucher_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_region_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_region_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_regions.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_regions_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_remove_member_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_request_console.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_request_instance_logs_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_request_instance_logs_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_billing_events_history_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_history.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_role_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_role_policy_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_secondary_color.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_security_group_rule.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_security_group_rule_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_security_rules_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_security_rules_protocol_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshot_events_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshot_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshot_restore_request.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshot_retrieve.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshots.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_snapshots_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_start_deployment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_start_deployment_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_stock_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_template.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_template_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_template_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_templates.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_token_based_billing_history_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_environment.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_keypair_name.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_keypair_name_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_organization_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_organization_response_model.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_template.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_volume_attachment_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_volume_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_update_volume_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_uris.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_detail_choice_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_info_post_payload.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_organizations_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_permission_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_user_permission_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_users_info_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_users_info_list_response.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_virtual_machine_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_virtual_machine_events_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_vnc_url_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_vncurl.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_vncurl_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_attachment_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_attachment_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_fields_for_instance.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_overview_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volume_types.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volumes.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_volumes_fields.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/test/test_vouchers_api.py +0 -0
- {hyperstack-1.48.0a0 → hyperstack-1.50.0a0}/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.
|
|
11
|
+
- Package version: v1.50.0-alpha
|
|
12
12
|
- Generator version: 7.10.0
|
|
13
13
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
14
14
|
|
|
@@ -210,6 +210,7 @@ Class | Method | HTTP request | Description
|
|
|
210
210
|
*EnvironmentApi* | [**delete_environment**](docs/EnvironmentApi.md#delete_environment) | **DELETE** /core/environments/{id} | Delete environment
|
|
211
211
|
*EnvironmentApi* | [**fetch_environment_name_availability**](docs/EnvironmentApi.md#fetch_environment_name_availability) | **GET** /core/environments/name-availability/{name} | Fetch environment name availability
|
|
212
212
|
*EnvironmentApi* | [**get_environment**](docs/EnvironmentApi.md#get_environment) | **GET** /core/environments/{id} | Retrieve environment
|
|
213
|
+
*EnvironmentApi* | [**get_environment_vm_quota**](docs/EnvironmentApi.md#get_environment_vm_quota) | **GET** /core/environments/{id}/vm-quota | Get environment VM quota
|
|
213
214
|
*EnvironmentApi* | [**list_environments**](docs/EnvironmentApi.md#list_environments) | **GET** /core/environments | List environments
|
|
214
215
|
*EnvironmentApi* | [**update_environment**](docs/EnvironmentApi.md#update_environment) | **PUT** /core/environments/{id} | Update environment
|
|
215
216
|
*FirewallAttachmentApi* | [**attach_firewall_to_vms**](docs/FirewallAttachmentApi.md#attach_firewall_to_vms) | **POST** /core/firewalls/{firewall_id}/update-attachments | Attach Firewalls to VMs
|
|
@@ -354,6 +355,7 @@ Class | Method | HTTP request | Description
|
|
|
354
355
|
- [ClusterVersions](docs/ClusterVersions.md)
|
|
355
356
|
- [Colors](docs/Colors.md)
|
|
356
357
|
- [CommonResponseModel](docs/CommonResponseModel.md)
|
|
358
|
+
- [CompatibleFlavor](docs/CompatibleFlavor.md)
|
|
357
359
|
- [ComplianceFields](docs/ComplianceFields.md)
|
|
358
360
|
- [ComplianceModelFields](docs/ComplianceModelFields.md)
|
|
359
361
|
- [CompliancePayload](docs/CompliancePayload.md)
|
|
@@ -413,6 +415,7 @@ Class | Method | HTTP request | Description
|
|
|
413
415
|
- [FlavorLabelFields](docs/FlavorLabelFields.md)
|
|
414
416
|
- [FlavorListResponse](docs/FlavorListResponse.md)
|
|
415
417
|
- [FlavorObjectFields](docs/FlavorObjectFields.md)
|
|
418
|
+
- [FlavorRestrictions](docs/FlavorRestrictions.md)
|
|
416
419
|
- [GPUFields](docs/GPUFields.md)
|
|
417
420
|
- [GPUList](docs/GPUList.md)
|
|
418
421
|
- [GPURegionFields](docs/GPURegionFields.md)
|
|
@@ -603,6 +606,7 @@ Class | Method | HTTP request | Description
|
|
|
603
606
|
- [UserPermissionFields](docs/UserPermissionFields.md)
|
|
604
607
|
- [UsersInfoFields](docs/UsersInfoFields.md)
|
|
605
608
|
- [UsersInfoListResponse](docs/UsersInfoListResponse.md)
|
|
609
|
+
- [VMQuota](docs/VMQuota.md)
|
|
606
610
|
- [VNCURL](docs/VNCURL.md)
|
|
607
611
|
- [VNCURLFields](docs/VNCURLFields.md)
|
|
608
612
|
- [Volume](docs/Volume.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "v1.
|
|
17
|
+
__version__ = "v1.50.0-alpha"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from .api.access_keys_api import AccessKeysApi
|
|
@@ -129,6 +129,7 @@ from .models.cluster_version import ClusterVersion
|
|
|
129
129
|
from .models.cluster_versions import ClusterVersions
|
|
130
130
|
from .models.colors import Colors
|
|
131
131
|
from .models.common_response_model import CommonResponseModel
|
|
132
|
+
from .models.compatible_flavor import CompatibleFlavor
|
|
132
133
|
from .models.compliance_fields import ComplianceFields
|
|
133
134
|
from .models.compliance_model_fields import ComplianceModelFields
|
|
134
135
|
from .models.compliance_payload import CompliancePayload
|
|
@@ -188,6 +189,7 @@ from .models.flavor_item_get_response import FlavorItemGetResponse
|
|
|
188
189
|
from .models.flavor_label_fields import FlavorLabelFields
|
|
189
190
|
from .models.flavor_list_response import FlavorListResponse
|
|
190
191
|
from .models.flavor_object_fields import FlavorObjectFields
|
|
192
|
+
from .models.flavor_restrictions import FlavorRestrictions
|
|
191
193
|
from .models.gpu_fields import GPUFields
|
|
192
194
|
from .models.gpu_list import GPUList
|
|
193
195
|
from .models.gpu_region_fields import GPURegionFields
|
|
@@ -378,6 +380,7 @@ from .models.user_organizations_response import UserOrganizationsResponse
|
|
|
378
380
|
from .models.user_permission_fields import UserPermissionFields
|
|
379
381
|
from .models.users_info_fields import UsersInfoFields
|
|
380
382
|
from .models.users_info_list_response import UsersInfoListResponse
|
|
383
|
+
from .models.vm_quota import VMQuota
|
|
381
384
|
from .models.vncurl import VNCURL
|
|
382
385
|
from .models.vncurl_fields import VNCURLFields
|
|
383
386
|
from .models.volume import Volume
|
|
@@ -25,6 +25,7 @@ from ..models.environments import Environments
|
|
|
25
25
|
from ..models.name_available_model import NameAvailableModel
|
|
26
26
|
from ..models.response_model import ResponseModel
|
|
27
27
|
from ..models.update_environment import UpdateEnvironment
|
|
28
|
+
from ..models.vm_quota import VMQuota
|
|
28
29
|
|
|
29
30
|
from ..api_client import ApiClient, RequestSerialized
|
|
30
31
|
from ..api_response import ApiResponse
|
|
@@ -1152,6 +1153,279 @@ class EnvironmentApi:
|
|
|
1152
1153
|
|
|
1153
1154
|
|
|
1154
1155
|
|
|
1156
|
+
@validate_call
|
|
1157
|
+
def get_environment_vm_quota(
|
|
1158
|
+
self,
|
|
1159
|
+
id: StrictInt,
|
|
1160
|
+
_request_timeout: Union[
|
|
1161
|
+
None,
|
|
1162
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1163
|
+
Tuple[
|
|
1164
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1165
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1166
|
+
]
|
|
1167
|
+
] = None,
|
|
1168
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1169
|
+
_content_type: Optional[StrictStr] = None,
|
|
1170
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1171
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1172
|
+
) -> VMQuota:
|
|
1173
|
+
"""Get environment VM quota
|
|
1174
|
+
|
|
1175
|
+
Retrieves VM quota information for a specific environment, including current VM count, maximum VMs allowed, available VMs, and percentage used in an environment before reaching the subnet IP limit.
|
|
1176
|
+
|
|
1177
|
+
:param id: (required)
|
|
1178
|
+
:type id: int
|
|
1179
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1180
|
+
number provided, it will be total request
|
|
1181
|
+
timeout. It can also be a pair (tuple) of
|
|
1182
|
+
(connection, read) timeouts.
|
|
1183
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1184
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1185
|
+
request; this effectively ignores the
|
|
1186
|
+
authentication in the spec for a single request.
|
|
1187
|
+
:type _request_auth: dict, optional
|
|
1188
|
+
:param _content_type: force content-type for the request.
|
|
1189
|
+
:type _content_type: str, Optional
|
|
1190
|
+
:param _headers: set to override the headers for a single
|
|
1191
|
+
request; this effectively ignores the headers
|
|
1192
|
+
in the spec for a single request.
|
|
1193
|
+
:type _headers: dict, optional
|
|
1194
|
+
:param _host_index: set to override the host_index for a single
|
|
1195
|
+
request; this effectively ignores the host_index
|
|
1196
|
+
in the spec for a single request.
|
|
1197
|
+
:type _host_index: int, optional
|
|
1198
|
+
:return: Returns the result object.
|
|
1199
|
+
""" # noqa: E501
|
|
1200
|
+
|
|
1201
|
+
_param = self._get_environment_vm_quota_serialize(
|
|
1202
|
+
id=id,
|
|
1203
|
+
_request_auth=_request_auth,
|
|
1204
|
+
_content_type=_content_type,
|
|
1205
|
+
_headers=_headers,
|
|
1206
|
+
_host_index=_host_index
|
|
1207
|
+
)
|
|
1208
|
+
|
|
1209
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1210
|
+
'200': "VMQuota",
|
|
1211
|
+
'400': "ErrorResponseModel",
|
|
1212
|
+
'401': "ErrorResponseModel",
|
|
1213
|
+
'404': "ErrorResponseModel",
|
|
1214
|
+
'500': None,
|
|
1215
|
+
}
|
|
1216
|
+
response_data = self.api_client.call_api(
|
|
1217
|
+
*_param,
|
|
1218
|
+
_request_timeout=_request_timeout
|
|
1219
|
+
)
|
|
1220
|
+
response_data.read()
|
|
1221
|
+
return self.api_client.response_deserialize(
|
|
1222
|
+
response_data=response_data,
|
|
1223
|
+
response_types_map=_response_types_map,
|
|
1224
|
+
).data
|
|
1225
|
+
|
|
1226
|
+
|
|
1227
|
+
@validate_call
|
|
1228
|
+
def get_environment_vm_quota_with_http_info(
|
|
1229
|
+
self,
|
|
1230
|
+
id: StrictInt,
|
|
1231
|
+
_request_timeout: Union[
|
|
1232
|
+
None,
|
|
1233
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1234
|
+
Tuple[
|
|
1235
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1236
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1237
|
+
]
|
|
1238
|
+
] = None,
|
|
1239
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1240
|
+
_content_type: Optional[StrictStr] = None,
|
|
1241
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1242
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1243
|
+
) -> ApiResponse[VMQuota]:
|
|
1244
|
+
"""Get environment VM quota
|
|
1245
|
+
|
|
1246
|
+
Retrieves VM quota information for a specific environment, including current VM count, maximum VMs allowed, available VMs, and percentage used in an environment before reaching the subnet IP limit.
|
|
1247
|
+
|
|
1248
|
+
:param id: (required)
|
|
1249
|
+
:type id: int
|
|
1250
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1251
|
+
number provided, it will be total request
|
|
1252
|
+
timeout. It can also be a pair (tuple) of
|
|
1253
|
+
(connection, read) timeouts.
|
|
1254
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1255
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1256
|
+
request; this effectively ignores the
|
|
1257
|
+
authentication in the spec for a single request.
|
|
1258
|
+
:type _request_auth: dict, optional
|
|
1259
|
+
:param _content_type: force content-type for the request.
|
|
1260
|
+
:type _content_type: str, Optional
|
|
1261
|
+
:param _headers: set to override the headers for a single
|
|
1262
|
+
request; this effectively ignores the headers
|
|
1263
|
+
in the spec for a single request.
|
|
1264
|
+
:type _headers: dict, optional
|
|
1265
|
+
:param _host_index: set to override the host_index for a single
|
|
1266
|
+
request; this effectively ignores the host_index
|
|
1267
|
+
in the spec for a single request.
|
|
1268
|
+
:type _host_index: int, optional
|
|
1269
|
+
:return: Returns the result object.
|
|
1270
|
+
""" # noqa: E501
|
|
1271
|
+
|
|
1272
|
+
_param = self._get_environment_vm_quota_serialize(
|
|
1273
|
+
id=id,
|
|
1274
|
+
_request_auth=_request_auth,
|
|
1275
|
+
_content_type=_content_type,
|
|
1276
|
+
_headers=_headers,
|
|
1277
|
+
_host_index=_host_index
|
|
1278
|
+
)
|
|
1279
|
+
|
|
1280
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1281
|
+
'200': "VMQuota",
|
|
1282
|
+
'400': "ErrorResponseModel",
|
|
1283
|
+
'401': "ErrorResponseModel",
|
|
1284
|
+
'404': "ErrorResponseModel",
|
|
1285
|
+
'500': None,
|
|
1286
|
+
}
|
|
1287
|
+
response_data = self.api_client.call_api(
|
|
1288
|
+
*_param,
|
|
1289
|
+
_request_timeout=_request_timeout
|
|
1290
|
+
)
|
|
1291
|
+
response_data.read()
|
|
1292
|
+
return self.api_client.response_deserialize(
|
|
1293
|
+
response_data=response_data,
|
|
1294
|
+
response_types_map=_response_types_map,
|
|
1295
|
+
)
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
@validate_call
|
|
1299
|
+
def get_environment_vm_quota_without_preload_content(
|
|
1300
|
+
self,
|
|
1301
|
+
id: StrictInt,
|
|
1302
|
+
_request_timeout: Union[
|
|
1303
|
+
None,
|
|
1304
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1305
|
+
Tuple[
|
|
1306
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1307
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1308
|
+
]
|
|
1309
|
+
] = None,
|
|
1310
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1311
|
+
_content_type: Optional[StrictStr] = None,
|
|
1312
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1313
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1314
|
+
) -> RESTResponseType:
|
|
1315
|
+
"""Get environment VM quota
|
|
1316
|
+
|
|
1317
|
+
Retrieves VM quota information for a specific environment, including current VM count, maximum VMs allowed, available VMs, and percentage used in an environment before reaching the subnet IP limit.
|
|
1318
|
+
|
|
1319
|
+
:param id: (required)
|
|
1320
|
+
:type id: int
|
|
1321
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1322
|
+
number provided, it will be total request
|
|
1323
|
+
timeout. It can also be a pair (tuple) of
|
|
1324
|
+
(connection, read) timeouts.
|
|
1325
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1326
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1327
|
+
request; this effectively ignores the
|
|
1328
|
+
authentication in the spec for a single request.
|
|
1329
|
+
:type _request_auth: dict, optional
|
|
1330
|
+
:param _content_type: force content-type for the request.
|
|
1331
|
+
:type _content_type: str, Optional
|
|
1332
|
+
:param _headers: set to override the headers for a single
|
|
1333
|
+
request; this effectively ignores the headers
|
|
1334
|
+
in the spec for a single request.
|
|
1335
|
+
:type _headers: dict, optional
|
|
1336
|
+
:param _host_index: set to override the host_index for a single
|
|
1337
|
+
request; this effectively ignores the host_index
|
|
1338
|
+
in the spec for a single request.
|
|
1339
|
+
:type _host_index: int, optional
|
|
1340
|
+
:return: Returns the result object.
|
|
1341
|
+
""" # noqa: E501
|
|
1342
|
+
|
|
1343
|
+
_param = self._get_environment_vm_quota_serialize(
|
|
1344
|
+
id=id,
|
|
1345
|
+
_request_auth=_request_auth,
|
|
1346
|
+
_content_type=_content_type,
|
|
1347
|
+
_headers=_headers,
|
|
1348
|
+
_host_index=_host_index
|
|
1349
|
+
)
|
|
1350
|
+
|
|
1351
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1352
|
+
'200': "VMQuota",
|
|
1353
|
+
'400': "ErrorResponseModel",
|
|
1354
|
+
'401': "ErrorResponseModel",
|
|
1355
|
+
'404': "ErrorResponseModel",
|
|
1356
|
+
'500': None,
|
|
1357
|
+
}
|
|
1358
|
+
response_data = self.api_client.call_api(
|
|
1359
|
+
*_param,
|
|
1360
|
+
_request_timeout=_request_timeout
|
|
1361
|
+
)
|
|
1362
|
+
return response_data.response
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
def _get_environment_vm_quota_serialize(
|
|
1366
|
+
self,
|
|
1367
|
+
id,
|
|
1368
|
+
_request_auth,
|
|
1369
|
+
_content_type,
|
|
1370
|
+
_headers,
|
|
1371
|
+
_host_index,
|
|
1372
|
+
) -> RequestSerialized:
|
|
1373
|
+
|
|
1374
|
+
_host = None
|
|
1375
|
+
|
|
1376
|
+
_collection_formats: Dict[str, str] = {
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
_path_params: Dict[str, str] = {}
|
|
1380
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1381
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1382
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1383
|
+
_files: Dict[
|
|
1384
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1385
|
+
] = {}
|
|
1386
|
+
_body_params: Optional[bytes] = None
|
|
1387
|
+
|
|
1388
|
+
# process the path parameters
|
|
1389
|
+
if id is not None:
|
|
1390
|
+
_path_params['id'] = id
|
|
1391
|
+
# process the query parameters
|
|
1392
|
+
# process the header parameters
|
|
1393
|
+
# process the form parameters
|
|
1394
|
+
# process the body parameter
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
# set the HTTP header `Accept`
|
|
1398
|
+
if 'Accept' not in _header_params:
|
|
1399
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1400
|
+
[
|
|
1401
|
+
'application/json'
|
|
1402
|
+
]
|
|
1403
|
+
)
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
# authentication setting
|
|
1407
|
+
_auth_settings: List[str] = [
|
|
1408
|
+
'apiKey'
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
return self.api_client.param_serialize(
|
|
1412
|
+
method='GET',
|
|
1413
|
+
resource_path='/core/environments/{id}/vm-quota',
|
|
1414
|
+
path_params=_path_params,
|
|
1415
|
+
query_params=_query_params,
|
|
1416
|
+
header_params=_header_params,
|
|
1417
|
+
body=_body_params,
|
|
1418
|
+
post_params=_form_params,
|
|
1419
|
+
files=_files,
|
|
1420
|
+
auth_settings=_auth_settings,
|
|
1421
|
+
collection_formats=_collection_formats,
|
|
1422
|
+
_host=_host,
|
|
1423
|
+
_request_auth=_request_auth
|
|
1424
|
+
)
|
|
1425
|
+
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
|
|
1155
1429
|
@validate_call
|
|
1156
1430
|
def list_environments(
|
|
1157
1431
|
self,
|
|
@@ -16,7 +16,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
|
16
16
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
17
|
from typing_extensions import Annotated
|
|
18
18
|
|
|
19
|
-
from pydantic import Field, StrictInt, StrictStr, field_validator
|
|
19
|
+
from pydantic import Field, StrictBool, StrictInt, StrictStr, field_validator
|
|
20
20
|
from typing import List, Optional
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
22
|
from ..models.attach_firewalls_to_vm_payload import AttachFirewallsToVMPayload
|
|
@@ -665,6 +665,7 @@ class VirtualMachineApi:
|
|
|
665
665
|
def check_vm_name_availability(
|
|
666
666
|
self,
|
|
667
667
|
name: StrictStr,
|
|
668
|
+
count: Annotated[Optional[StrictStr], Field(description="Nr of instances to handle (optional, default: 1)")] = None,
|
|
668
669
|
_request_timeout: Union[
|
|
669
670
|
None,
|
|
670
671
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -684,6 +685,8 @@ class VirtualMachineApi:
|
|
|
684
685
|
|
|
685
686
|
:param name: (required)
|
|
686
687
|
:type name: str
|
|
688
|
+
:param count: Nr of instances to handle (optional, default: 1)
|
|
689
|
+
:type count: str
|
|
687
690
|
:param _request_timeout: timeout setting for this request. If one
|
|
688
691
|
number provided, it will be total request
|
|
689
692
|
timeout. It can also be a pair (tuple) of
|
|
@@ -708,6 +711,7 @@ class VirtualMachineApi:
|
|
|
708
711
|
|
|
709
712
|
_param = self._check_vm_name_availability_serialize(
|
|
710
713
|
name=name,
|
|
714
|
+
count=count,
|
|
711
715
|
_request_auth=_request_auth,
|
|
712
716
|
_content_type=_content_type,
|
|
713
717
|
_headers=_headers,
|
|
@@ -736,6 +740,7 @@ class VirtualMachineApi:
|
|
|
736
740
|
def check_vm_name_availability_with_http_info(
|
|
737
741
|
self,
|
|
738
742
|
name: StrictStr,
|
|
743
|
+
count: Annotated[Optional[StrictStr], Field(description="Nr of instances to handle (optional, default: 1)")] = None,
|
|
739
744
|
_request_timeout: Union[
|
|
740
745
|
None,
|
|
741
746
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -755,6 +760,8 @@ class VirtualMachineApi:
|
|
|
755
760
|
|
|
756
761
|
:param name: (required)
|
|
757
762
|
:type name: str
|
|
763
|
+
:param count: Nr of instances to handle (optional, default: 1)
|
|
764
|
+
:type count: str
|
|
758
765
|
:param _request_timeout: timeout setting for this request. If one
|
|
759
766
|
number provided, it will be total request
|
|
760
767
|
timeout. It can also be a pair (tuple) of
|
|
@@ -779,6 +786,7 @@ class VirtualMachineApi:
|
|
|
779
786
|
|
|
780
787
|
_param = self._check_vm_name_availability_serialize(
|
|
781
788
|
name=name,
|
|
789
|
+
count=count,
|
|
782
790
|
_request_auth=_request_auth,
|
|
783
791
|
_content_type=_content_type,
|
|
784
792
|
_headers=_headers,
|
|
@@ -807,6 +815,7 @@ class VirtualMachineApi:
|
|
|
807
815
|
def check_vm_name_availability_without_preload_content(
|
|
808
816
|
self,
|
|
809
817
|
name: StrictStr,
|
|
818
|
+
count: Annotated[Optional[StrictStr], Field(description="Nr of instances to handle (optional, default: 1)")] = None,
|
|
810
819
|
_request_timeout: Union[
|
|
811
820
|
None,
|
|
812
821
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -826,6 +835,8 @@ class VirtualMachineApi:
|
|
|
826
835
|
|
|
827
836
|
:param name: (required)
|
|
828
837
|
:type name: str
|
|
838
|
+
:param count: Nr of instances to handle (optional, default: 1)
|
|
839
|
+
:type count: str
|
|
829
840
|
:param _request_timeout: timeout setting for this request. If one
|
|
830
841
|
number provided, it will be total request
|
|
831
842
|
timeout. It can also be a pair (tuple) of
|
|
@@ -850,6 +861,7 @@ class VirtualMachineApi:
|
|
|
850
861
|
|
|
851
862
|
_param = self._check_vm_name_availability_serialize(
|
|
852
863
|
name=name,
|
|
864
|
+
count=count,
|
|
853
865
|
_request_auth=_request_auth,
|
|
854
866
|
_content_type=_content_type,
|
|
855
867
|
_headers=_headers,
|
|
@@ -873,6 +885,7 @@ class VirtualMachineApi:
|
|
|
873
885
|
def _check_vm_name_availability_serialize(
|
|
874
886
|
self,
|
|
875
887
|
name,
|
|
888
|
+
count,
|
|
876
889
|
_request_auth,
|
|
877
890
|
_content_type,
|
|
878
891
|
_headers,
|
|
@@ -897,6 +910,10 @@ class VirtualMachineApi:
|
|
|
897
910
|
if name is not None:
|
|
898
911
|
_path_params['name'] = name
|
|
899
912
|
# process the query parameters
|
|
913
|
+
if count is not None:
|
|
914
|
+
|
|
915
|
+
_query_params.append(('count', count))
|
|
916
|
+
|
|
900
917
|
# process the header parameters
|
|
901
918
|
# process the form parameters
|
|
902
919
|
# process the body parameter
|
|
@@ -4146,6 +4163,7 @@ class VirtualMachineApi:
|
|
|
4146
4163
|
search: Optional[StrictStr] = None,
|
|
4147
4164
|
environment: Optional[StrictStr] = None,
|
|
4148
4165
|
exclude_firewalls: Annotated[Optional[List[StrictInt]], Field(description="Comma-separated list of Security Group IDs to ignore instances attached")] = None,
|
|
4166
|
+
exact_environment_match: Annotated[Optional[StrictBool], Field(description="Flag to filter environment by exact match instead of partial match")] = None,
|
|
4149
4167
|
_request_timeout: Union[
|
|
4150
4168
|
None,
|
|
4151
4169
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4173,6 +4191,8 @@ class VirtualMachineApi:
|
|
|
4173
4191
|
:type environment: str
|
|
4174
4192
|
:param exclude_firewalls: Comma-separated list of Security Group IDs to ignore instances attached
|
|
4175
4193
|
:type exclude_firewalls: List[int]
|
|
4194
|
+
:param exact_environment_match: Flag to filter environment by exact match instead of partial match
|
|
4195
|
+
:type exact_environment_match: bool
|
|
4176
4196
|
:param _request_timeout: timeout setting for this request. If one
|
|
4177
4197
|
number provided, it will be total request
|
|
4178
4198
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4201,6 +4221,7 @@ class VirtualMachineApi:
|
|
|
4201
4221
|
search=search,
|
|
4202
4222
|
environment=environment,
|
|
4203
4223
|
exclude_firewalls=exclude_firewalls,
|
|
4224
|
+
exact_environment_match=exact_environment_match,
|
|
4204
4225
|
_request_auth=_request_auth,
|
|
4205
4226
|
_content_type=_content_type,
|
|
4206
4227
|
_headers=_headers,
|
|
@@ -4232,6 +4253,7 @@ class VirtualMachineApi:
|
|
|
4232
4253
|
search: Optional[StrictStr] = None,
|
|
4233
4254
|
environment: Optional[StrictStr] = None,
|
|
4234
4255
|
exclude_firewalls: Annotated[Optional[List[StrictInt]], Field(description="Comma-separated list of Security Group IDs to ignore instances attached")] = None,
|
|
4256
|
+
exact_environment_match: Annotated[Optional[StrictBool], Field(description="Flag to filter environment by exact match instead of partial match")] = None,
|
|
4235
4257
|
_request_timeout: Union[
|
|
4236
4258
|
None,
|
|
4237
4259
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4259,6 +4281,8 @@ class VirtualMachineApi:
|
|
|
4259
4281
|
:type environment: str
|
|
4260
4282
|
:param exclude_firewalls: Comma-separated list of Security Group IDs to ignore instances attached
|
|
4261
4283
|
:type exclude_firewalls: List[int]
|
|
4284
|
+
:param exact_environment_match: Flag to filter environment by exact match instead of partial match
|
|
4285
|
+
:type exact_environment_match: bool
|
|
4262
4286
|
:param _request_timeout: timeout setting for this request. If one
|
|
4263
4287
|
number provided, it will be total request
|
|
4264
4288
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4287,6 +4311,7 @@ class VirtualMachineApi:
|
|
|
4287
4311
|
search=search,
|
|
4288
4312
|
environment=environment,
|
|
4289
4313
|
exclude_firewalls=exclude_firewalls,
|
|
4314
|
+
exact_environment_match=exact_environment_match,
|
|
4290
4315
|
_request_auth=_request_auth,
|
|
4291
4316
|
_content_type=_content_type,
|
|
4292
4317
|
_headers=_headers,
|
|
@@ -4318,6 +4343,7 @@ class VirtualMachineApi:
|
|
|
4318
4343
|
search: Optional[StrictStr] = None,
|
|
4319
4344
|
environment: Optional[StrictStr] = None,
|
|
4320
4345
|
exclude_firewalls: Annotated[Optional[List[StrictInt]], Field(description="Comma-separated list of Security Group IDs to ignore instances attached")] = None,
|
|
4346
|
+
exact_environment_match: Annotated[Optional[StrictBool], Field(description="Flag to filter environment by exact match instead of partial match")] = None,
|
|
4321
4347
|
_request_timeout: Union[
|
|
4322
4348
|
None,
|
|
4323
4349
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4345,6 +4371,8 @@ class VirtualMachineApi:
|
|
|
4345
4371
|
:type environment: str
|
|
4346
4372
|
:param exclude_firewalls: Comma-separated list of Security Group IDs to ignore instances attached
|
|
4347
4373
|
:type exclude_firewalls: List[int]
|
|
4374
|
+
:param exact_environment_match: Flag to filter environment by exact match instead of partial match
|
|
4375
|
+
:type exact_environment_match: bool
|
|
4348
4376
|
:param _request_timeout: timeout setting for this request. If one
|
|
4349
4377
|
number provided, it will be total request
|
|
4350
4378
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4373,6 +4401,7 @@ class VirtualMachineApi:
|
|
|
4373
4401
|
search=search,
|
|
4374
4402
|
environment=environment,
|
|
4375
4403
|
exclude_firewalls=exclude_firewalls,
|
|
4404
|
+
exact_environment_match=exact_environment_match,
|
|
4376
4405
|
_request_auth=_request_auth,
|
|
4377
4406
|
_content_type=_content_type,
|
|
4378
4407
|
_headers=_headers,
|
|
@@ -4399,6 +4428,7 @@ class VirtualMachineApi:
|
|
|
4399
4428
|
search,
|
|
4400
4429
|
environment,
|
|
4401
4430
|
exclude_firewalls,
|
|
4431
|
+
exact_environment_match,
|
|
4402
4432
|
_request_auth,
|
|
4403
4433
|
_content_type,
|
|
4404
4434
|
_headers,
|
|
@@ -4442,6 +4472,10 @@ class VirtualMachineApi:
|
|
|
4442
4472
|
|
|
4443
4473
|
_query_params.append(('exclude_firewalls', exclude_firewalls))
|
|
4444
4474
|
|
|
4475
|
+
if exact_environment_match is not None:
|
|
4476
|
+
|
|
4477
|
+
_query_params.append(('exact_environment_match', exact_environment_match))
|
|
4478
|
+
|
|
4445
4479
|
# process the header parameters
|
|
4446
4480
|
# process the form parameters
|
|
4447
4481
|
# process the body parameter
|
|
@@ -90,7 +90,7 @@ class ApiClient:
|
|
|
90
90
|
self.default_headers[header_name] = header_value
|
|
91
91
|
self.cookie = cookie
|
|
92
92
|
# Set default User-Agent.
|
|
93
|
-
self.user_agent = 'OpenAPI-Generator/v1.
|
|
93
|
+
self.user_agent = 'OpenAPI-Generator/v1.50.0-alpha/python'
|
|
94
94
|
self.client_side_validation = configuration.client_side_validation
|
|
95
95
|
|
|
96
96
|
def __enter__(self):
|
|
@@ -524,7 +524,7 @@ conf = hyperstack.Configuration(
|
|
|
524
524
|
"OS: {env}\n"\
|
|
525
525
|
"Python Version: {pyversion}\n"\
|
|
526
526
|
"Version of the API: 1.0\n"\
|
|
527
|
-
"SDK Package Version: v1.
|
|
527
|
+
"SDK Package Version: v1.50.0-alpha".\
|
|
528
528
|
format(env=sys.platform, pyversion=sys.version)
|
|
529
529
|
|
|
530
530
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -61,6 +61,7 @@ from .cluster_version import ClusterVersion
|
|
|
61
61
|
from .cluster_versions import ClusterVersions
|
|
62
62
|
from .colors import Colors
|
|
63
63
|
from .common_response_model import CommonResponseModel
|
|
64
|
+
from .compatible_flavor import CompatibleFlavor
|
|
64
65
|
from .compliance_fields import ComplianceFields
|
|
65
66
|
from .compliance_model_fields import ComplianceModelFields
|
|
66
67
|
from .compliance_payload import CompliancePayload
|
|
@@ -120,6 +121,7 @@ from .flavor_item_get_response import FlavorItemGetResponse
|
|
|
120
121
|
from .flavor_label_fields import FlavorLabelFields
|
|
121
122
|
from .flavor_list_response import FlavorListResponse
|
|
122
123
|
from .flavor_object_fields import FlavorObjectFields
|
|
124
|
+
from .flavor_restrictions import FlavorRestrictions
|
|
123
125
|
from .gpu_fields import GPUFields
|
|
124
126
|
from .gpu_list import GPUList
|
|
125
127
|
from .gpu_region_fields import GPURegionFields
|
|
@@ -310,6 +312,7 @@ from .user_organizations_response import UserOrganizationsResponse
|
|
|
310
312
|
from .user_permission_fields import UserPermissionFields
|
|
311
313
|
from .users_info_fields import UsersInfoFields
|
|
312
314
|
from .users_info_list_response import UsersInfoListResponse
|
|
315
|
+
from .vm_quota import VMQuota
|
|
313
316
|
from .vncurl import VNCURL
|
|
314
317
|
from .vncurl_fields import VNCURLFields
|
|
315
318
|
from .volume import Volume
|