hyperstack 1.42.1a0__tar.gz → 1.43.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.42.1a0 → hyperstack-1.43.0a0}/PKG-INFO +1 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/README.md +3 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/__init__.py +2 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/clusters_api.py +317 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api_client.py +1 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/configuration.py +1 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/__init__.py +1 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_fields.py +4 -2
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_node_group_fields.py +5 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_cluster_node_group_payload.py +16 -3
- hyperstack-1.43.0a0/hyperstack/models/update_cluster_node_group_payload.py +90 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack.egg-info/PKG-INFO +1 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack.egg-info/SOURCES.txt +2 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/pyproject.toml +1 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/setup.py +1 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_fields.py +3 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_list_response.py +3 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_node_group_fields.py +2 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_node_groups_create_response.py +2 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_node_groups_get_response.py +2 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_node_groups_list_response.py +2 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_response.py +3 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_clusters_api.py +7 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_contract_instance_fields.py +3 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_contract_instances_response.py +3 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_cluster_node_group_payload.py +5 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_cluster_payload.py +4 -1
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_manual_reconciliation_model.py +3 -0
- hyperstack-1.43.0a0/test/test_update_cluster_node_group_payload.py +52 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/__init__.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/admin_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/alive_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/api_key_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/assigning_member_role_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/auth_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/beta_access_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/billing_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/calculate_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/callbacks_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/cluster_events_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/compliance_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/credit_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/customer_contract_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/dashboard_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/deployment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/environment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/firewall_attachment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/firewalls_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/flavor_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/floating_ip_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/gpu_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/image_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/invite_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/keypair_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/organization_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/partner_config_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/payment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/permission_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/policy_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/pricebook_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/profile_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/rbac_role_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/region_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/security_rules_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/snapshot_events_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/snapshots_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/stock_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/template_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/user_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/user_detail_choice_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/user_permission_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/virtual_machine_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/virtual_machine_events_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/vnc_url_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/volume_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api/volume_attachment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/api_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/exceptions.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/access_token_field.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/api_key_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_callback_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_callback_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_volume_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_volumes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attach_volumes_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/auth_user_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/beta_access_request_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/beta_access_request_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/beta_access_status_item.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_history.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_metrices_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/billing_metrices_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_events.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_events_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_node_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_version.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/cluster_versions.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/colors.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/common_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/compliance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/compliance_model_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/compliance_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/compliance_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/container_overview_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/contract.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/contract_instance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/contract_instances_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_cluster_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_environment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_firewall_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_image.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_image_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_instances_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_instances_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_profile_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_profile_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_security_rule_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_snapshot_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_snapshot_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_update_compliance_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_volume_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/customer_contract_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/dashboard_info_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/deployment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/deployments.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/detach_volumes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/detach_volumes_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/environment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/environment_features.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/environments.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/error_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_attachment_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_detail_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_detail_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewall_rule.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/firewalls_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/flavor_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/flavor_item_get_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/flavor_label_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/flavor_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/flavor_object_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/generate_update_api_key_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_instance_logs_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_invites_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_organization_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_permissions_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_policies_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/gpu_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/gpu_list.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/gpu_region_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/image.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/image_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/image_get_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/images.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/import_keypair_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/import_keypair_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_events.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_events_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_flavor_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_image_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_keypair_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_overview_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instance_resize_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/instances.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/invite_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/invite_user_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/invite_user_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/keypair_environment_features.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/keypair_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/keypair_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/keypairs.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/lable_resonse.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/last_day_cost_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/last_day_cost_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/logos.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/master_flavors_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/metric_item_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/metrics_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/mfa_status_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/mfa_status_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/name_available_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/new_configurations_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/new_model_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/new_stock_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_level_billing_history.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_threshold_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_thresholds_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/organization_user_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/overview_info.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/pagination.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/pagination_data.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/partner_config.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/payment_details_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/payment_details_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/payment_initiate_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/payment_initiate_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/payment_initiate_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/policy_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/policy_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/pricebook_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/primary_color.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/profile_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/profile_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/profile_object_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/rbac_role_field.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/rbac_role_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/region_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/regions.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/remove_member_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/request_console.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/request_instance_logs_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_history.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/role_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/role_policy_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/secondary_color.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/security_group_rule.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/security_group_rule_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/snapshot_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/snapshot_restore_request.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/snapshot_retrieve.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/snapshots.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/start_deployment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/start_deployment_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/template.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/template_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/templates.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_environment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_keypair_name.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_keypair_name_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_organization_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_organization_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_template.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_volume_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/update_volume_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/uris.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/user_info_post_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/user_organizations_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/user_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/users_info_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/users_info_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/vncurl.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/vncurl_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volume_attachment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volume_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volume_overview_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volume_types.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volumes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/volumes_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/workload_billing_history_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/py.typed +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/rest.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack.egg-info/dependency_links.txt +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack.egg-info/requires.txt +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack.egg-info/top_level.txt +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/setup.cfg +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_access_token_field.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_add_user_info_success_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_admin_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_alive_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_api_key_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_api_key_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_assign_rbac_role_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_assigning_member_role_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_callback_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_callback_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_firewall_with_vm.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_volume_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_volumes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attach_volumes_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attachments_fields_for_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_auth_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_auth_get_token_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_auth_user_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_auth_user_info_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_beta_access_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_beta_access_request_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_beta_access_request_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_beta_access_request_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_beta_access_status_item.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_beta_access_status_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_history.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_history_fine_tuning.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_history_serverless_inference.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_metrices_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_billing_metrices_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_calculate_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_callbacks_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_events.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_events_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_events_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_flavor_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_node_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_node_instance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_nodes_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_version.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_cluster_versions.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_colors.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_common_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_compliance_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_compliance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_compliance_model_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_compliance_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_compliance_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_container_overview_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_contract.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_contract_discount_plan_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_cluster_node_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_environment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_firewall_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_firewall_rule_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_image.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_image_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_instances_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_instances_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_profile_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_profile_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_security_rule_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_snapshot_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_snapshot_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_update_compliance_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_create_volume_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_credit_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_customer_contract_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_customer_contract_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_dashboard_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_dashboard_info_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_deployment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_deployment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_deployments.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_detach_volumes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_detach_volumes_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_environment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_environment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_environment_features.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_environment_fields_for_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_environments.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_error_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_attachment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_attachment_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_detail_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_detail_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewall_rule.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewalls_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_firewalls_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_flavor_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_flavor_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_flavor_item_get_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_flavor_label_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_flavor_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_flavor_object_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_floating_ip_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_generate_update_api_key_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_api_keys_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_instance_logs_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_invites_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_organization_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_permissions_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_policies_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_get_user_permissions_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_gpu_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_gpu_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_gpu_list.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_gpu_region_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_graph_datetime_value_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_image.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_image_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_image_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_image_get_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_images.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_import_keypair_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_import_keypair_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_events.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_events_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_flavor_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_image_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_keypair_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_overview_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instance_resize_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_instances.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_invite_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_invite_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_invite_user_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_invite_user_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_keypair_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_keypair_environment_features.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_keypair_environment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_keypair_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_keypairs.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_lable_resonse.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_last_day_cost_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_last_day_cost_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_logos.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_master_flavors_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_metric_item_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_metrics_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_mfa_status_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_mfa_status_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_name_available_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_new_configurations_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_new_model_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_new_stock_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_new_stock_retrive_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_level_billing_history.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_threshold_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_threshold_update_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_thresholds_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_organization_user_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_overview_info.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_pagination.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_pagination_data.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_partner_config.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_partner_config_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_payment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_payment_details_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_payment_details_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_payment_initiate_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_payment_initiate_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_payment_initiate_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_permission_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_policy_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_policy_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_policy_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_pricebook_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_pricebook_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_primary_color.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_profile_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_profile_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_profile_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_profile_object_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_rbac_role_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_rbac_role_field.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_rbac_role_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_region_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_region_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_regions.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_remove_member_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_request_console.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_request_instance_logs_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_request_instance_logs_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_billing_events_history_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_history.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_role_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_role_policy_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_secondary_color.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_security_group_rule.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_security_group_rule_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_security_rules_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_security_rules_protocol_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshot_events_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshot_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshot_restore_request.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshot_retrieve.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshots.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_snapshots_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_start_deployment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_start_deployment_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_stock_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_template.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_template_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_template_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_templates.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_token_based_billing_history_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_environment.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_keypair_name.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_keypair_name_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_organization_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_organization_response_model.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_template.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_volume_attachment_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_volume_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_update_volume_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_uris.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_detail_choice_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_info_post_payload.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_organizations_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_permission_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_user_permission_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_users_info_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_users_info_list_response.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_virtual_machine_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_virtual_machine_events_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_vnc_url_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_vncurl.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_vncurl_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_attachment_api.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_attachment_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_fields_for_instance.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_overview_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volume_types.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volumes.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/test/test_volumes_fields.py +0 -0
- {hyperstack-1.42.1a0 → hyperstack-1.43.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.43.0-alpha
|
|
12
12
|
- Generator version: 7.10.0
|
|
13
13
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
14
14
|
|
|
@@ -187,6 +187,7 @@ Class | Method | HTTP request | Description
|
|
|
187
187
|
*ClustersApi* | [**list_clusters**](docs/ClustersApi.md#list_clusters) | **GET** /core/clusters | List Clusters
|
|
188
188
|
*ClustersApi* | [**list_node_groups**](docs/ClustersApi.md#list_node_groups) | **GET** /core/clusters/{cluster_id}/node-groups | List node groups for a cluster
|
|
189
189
|
*ClustersApi* | [**retrieve_a_node_group**](docs/ClustersApi.md#retrieve_a_node_group) | **GET** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Retrieve a node group in a cluster
|
|
190
|
+
*ClustersApi* | [**update_a_node_group**](docs/ClustersApi.md#update_a_node_group) | **PATCH** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Update a node group in a cluster
|
|
190
191
|
*ComplianceApi* | [**create_compliance**](docs/ComplianceApi.md#create_compliance) | **POST** /core/compliance | Create compliance
|
|
191
192
|
*ComplianceApi* | [**delete_a_compliance**](docs/ComplianceApi.md#delete_a_compliance) | **DELETE** /core/compliance/{gpu_model} | Delete a compliance
|
|
192
193
|
*ComplianceApi* | [**retrieve_compliance**](docs/ComplianceApi.md#retrieve_compliance) | **GET** /core/compliance | Retrieve GPU compliance
|
|
@@ -561,6 +562,7 @@ Class | Method | HTTP request | Description
|
|
|
561
562
|
- [Templates](docs/Templates.md)
|
|
562
563
|
- [TokenBasedBillingHistoryResponse](docs/TokenBasedBillingHistoryResponse.md)
|
|
563
564
|
- [URIs](docs/URIs.md)
|
|
565
|
+
- [UpdateClusterNodeGroupPayload](docs/UpdateClusterNodeGroupPayload.md)
|
|
564
566
|
- [UpdateEnvironment](docs/UpdateEnvironment.md)
|
|
565
567
|
- [UpdateKeypairName](docs/UpdateKeypairName.md)
|
|
566
568
|
- [UpdateKeypairNameResponse](docs/UpdateKeypairNameResponse.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "v1.
|
|
17
|
+
__version__ = "v1.43.0-alpha"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from .api.calculate_api import CalculateApi
|
|
@@ -341,6 +341,7 @@ from .models.template_fields import TemplateFields
|
|
|
341
341
|
from .models.templates import Templates
|
|
342
342
|
from .models.token_based_billing_history_response import TokenBasedBillingHistoryResponse
|
|
343
343
|
from .models.uris import URIs
|
|
344
|
+
from .models.update_cluster_node_group_payload import UpdateClusterNodeGroupPayload
|
|
344
345
|
from .models.update_environment import UpdateEnvironment
|
|
345
346
|
from .models.update_keypair_name import UpdateKeypairName
|
|
346
347
|
from .models.update_keypair_name_response import UpdateKeypairNameResponse
|
|
@@ -33,6 +33,7 @@ from ..models.manual_reconciliation_model import ManualReconciliationModel
|
|
|
33
33
|
from ..models.master_flavors_response import MasterFlavorsResponse
|
|
34
34
|
from ..models.name_available_model import NameAvailableModel
|
|
35
35
|
from ..models.response_model import ResponseModel
|
|
36
|
+
from ..models.update_cluster_node_group_payload import UpdateClusterNodeGroupPayload
|
|
36
37
|
|
|
37
38
|
from ..api_client import ApiClient, RequestSerialized
|
|
38
39
|
from ..api_response import ApiResponse
|
|
@@ -4266,3 +4267,319 @@ class ClustersApi:
|
|
|
4266
4267
|
)
|
|
4267
4268
|
|
|
4268
4269
|
|
|
4270
|
+
|
|
4271
|
+
|
|
4272
|
+
@validate_call
|
|
4273
|
+
def update_a_node_group(
|
|
4274
|
+
self,
|
|
4275
|
+
cluster_id: StrictInt,
|
|
4276
|
+
node_group_id: StrictInt,
|
|
4277
|
+
payload: UpdateClusterNodeGroupPayload,
|
|
4278
|
+
_request_timeout: Union[
|
|
4279
|
+
None,
|
|
4280
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4281
|
+
Tuple[
|
|
4282
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4283
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
4284
|
+
]
|
|
4285
|
+
] = None,
|
|
4286
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
4287
|
+
_content_type: Optional[StrictStr] = None,
|
|
4288
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4289
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4290
|
+
) -> ClusterNodeGroupsCreateResponse:
|
|
4291
|
+
"""Update a node group in a cluster
|
|
4292
|
+
|
|
4293
|
+
|
|
4294
|
+
:param cluster_id: (required)
|
|
4295
|
+
:type cluster_id: int
|
|
4296
|
+
:param node_group_id: (required)
|
|
4297
|
+
:type node_group_id: int
|
|
4298
|
+
:param payload: (required)
|
|
4299
|
+
:type payload: UpdateClusterNodeGroupPayload
|
|
4300
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4301
|
+
number provided, it will be total request
|
|
4302
|
+
timeout. It can also be a pair (tuple) of
|
|
4303
|
+
(connection, read) timeouts.
|
|
4304
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
4305
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
4306
|
+
request; this effectively ignores the
|
|
4307
|
+
authentication in the spec for a single request.
|
|
4308
|
+
:type _request_auth: dict, optional
|
|
4309
|
+
:param _content_type: force content-type for the request.
|
|
4310
|
+
:type _content_type: str, Optional
|
|
4311
|
+
:param _headers: set to override the headers for a single
|
|
4312
|
+
request; this effectively ignores the headers
|
|
4313
|
+
in the spec for a single request.
|
|
4314
|
+
:type _headers: dict, optional
|
|
4315
|
+
:param _host_index: set to override the host_index for a single
|
|
4316
|
+
request; this effectively ignores the host_index
|
|
4317
|
+
in the spec for a single request.
|
|
4318
|
+
:type _host_index: int, optional
|
|
4319
|
+
:return: Returns the result object.
|
|
4320
|
+
""" # noqa: E501
|
|
4321
|
+
|
|
4322
|
+
_param = self._update_a_node_group_serialize(
|
|
4323
|
+
cluster_id=cluster_id,
|
|
4324
|
+
node_group_id=node_group_id,
|
|
4325
|
+
payload=payload,
|
|
4326
|
+
_request_auth=_request_auth,
|
|
4327
|
+
_content_type=_content_type,
|
|
4328
|
+
_headers=_headers,
|
|
4329
|
+
_host_index=_host_index
|
|
4330
|
+
)
|
|
4331
|
+
|
|
4332
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
4333
|
+
'200': "ClusterNodeGroupsCreateResponse",
|
|
4334
|
+
'400': "ErrorResponseModel",
|
|
4335
|
+
'401': "ErrorResponseModel",
|
|
4336
|
+
'404': "ErrorResponseModel",
|
|
4337
|
+
'409': "ErrorResponseModel",
|
|
4338
|
+
'500': None,
|
|
4339
|
+
}
|
|
4340
|
+
response_data = self.api_client.call_api(
|
|
4341
|
+
*_param,
|
|
4342
|
+
_request_timeout=_request_timeout
|
|
4343
|
+
)
|
|
4344
|
+
response_data.read()
|
|
4345
|
+
return self.api_client.response_deserialize(
|
|
4346
|
+
response_data=response_data,
|
|
4347
|
+
response_types_map=_response_types_map,
|
|
4348
|
+
).data
|
|
4349
|
+
|
|
4350
|
+
|
|
4351
|
+
@validate_call
|
|
4352
|
+
def update_a_node_group_with_http_info(
|
|
4353
|
+
self,
|
|
4354
|
+
cluster_id: StrictInt,
|
|
4355
|
+
node_group_id: StrictInt,
|
|
4356
|
+
payload: UpdateClusterNodeGroupPayload,
|
|
4357
|
+
_request_timeout: Union[
|
|
4358
|
+
None,
|
|
4359
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4360
|
+
Tuple[
|
|
4361
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4362
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
4363
|
+
]
|
|
4364
|
+
] = None,
|
|
4365
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
4366
|
+
_content_type: Optional[StrictStr] = None,
|
|
4367
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4368
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4369
|
+
) -> ApiResponse[ClusterNodeGroupsCreateResponse]:
|
|
4370
|
+
"""Update a node group in a cluster
|
|
4371
|
+
|
|
4372
|
+
|
|
4373
|
+
:param cluster_id: (required)
|
|
4374
|
+
:type cluster_id: int
|
|
4375
|
+
:param node_group_id: (required)
|
|
4376
|
+
:type node_group_id: int
|
|
4377
|
+
:param payload: (required)
|
|
4378
|
+
:type payload: UpdateClusterNodeGroupPayload
|
|
4379
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4380
|
+
number provided, it will be total request
|
|
4381
|
+
timeout. It can also be a pair (tuple) of
|
|
4382
|
+
(connection, read) timeouts.
|
|
4383
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
4384
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
4385
|
+
request; this effectively ignores the
|
|
4386
|
+
authentication in the spec for a single request.
|
|
4387
|
+
:type _request_auth: dict, optional
|
|
4388
|
+
:param _content_type: force content-type for the request.
|
|
4389
|
+
:type _content_type: str, Optional
|
|
4390
|
+
:param _headers: set to override the headers for a single
|
|
4391
|
+
request; this effectively ignores the headers
|
|
4392
|
+
in the spec for a single request.
|
|
4393
|
+
:type _headers: dict, optional
|
|
4394
|
+
:param _host_index: set to override the host_index for a single
|
|
4395
|
+
request; this effectively ignores the host_index
|
|
4396
|
+
in the spec for a single request.
|
|
4397
|
+
:type _host_index: int, optional
|
|
4398
|
+
:return: Returns the result object.
|
|
4399
|
+
""" # noqa: E501
|
|
4400
|
+
|
|
4401
|
+
_param = self._update_a_node_group_serialize(
|
|
4402
|
+
cluster_id=cluster_id,
|
|
4403
|
+
node_group_id=node_group_id,
|
|
4404
|
+
payload=payload,
|
|
4405
|
+
_request_auth=_request_auth,
|
|
4406
|
+
_content_type=_content_type,
|
|
4407
|
+
_headers=_headers,
|
|
4408
|
+
_host_index=_host_index
|
|
4409
|
+
)
|
|
4410
|
+
|
|
4411
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
4412
|
+
'200': "ClusterNodeGroupsCreateResponse",
|
|
4413
|
+
'400': "ErrorResponseModel",
|
|
4414
|
+
'401': "ErrorResponseModel",
|
|
4415
|
+
'404': "ErrorResponseModel",
|
|
4416
|
+
'409': "ErrorResponseModel",
|
|
4417
|
+
'500': None,
|
|
4418
|
+
}
|
|
4419
|
+
response_data = self.api_client.call_api(
|
|
4420
|
+
*_param,
|
|
4421
|
+
_request_timeout=_request_timeout
|
|
4422
|
+
)
|
|
4423
|
+
response_data.read()
|
|
4424
|
+
return self.api_client.response_deserialize(
|
|
4425
|
+
response_data=response_data,
|
|
4426
|
+
response_types_map=_response_types_map,
|
|
4427
|
+
)
|
|
4428
|
+
|
|
4429
|
+
|
|
4430
|
+
@validate_call
|
|
4431
|
+
def update_a_node_group_without_preload_content(
|
|
4432
|
+
self,
|
|
4433
|
+
cluster_id: StrictInt,
|
|
4434
|
+
node_group_id: StrictInt,
|
|
4435
|
+
payload: UpdateClusterNodeGroupPayload,
|
|
4436
|
+
_request_timeout: Union[
|
|
4437
|
+
None,
|
|
4438
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4439
|
+
Tuple[
|
|
4440
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4441
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
4442
|
+
]
|
|
4443
|
+
] = None,
|
|
4444
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
4445
|
+
_content_type: Optional[StrictStr] = None,
|
|
4446
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4447
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4448
|
+
) -> RESTResponseType:
|
|
4449
|
+
"""Update a node group in a cluster
|
|
4450
|
+
|
|
4451
|
+
|
|
4452
|
+
:param cluster_id: (required)
|
|
4453
|
+
:type cluster_id: int
|
|
4454
|
+
:param node_group_id: (required)
|
|
4455
|
+
:type node_group_id: int
|
|
4456
|
+
:param payload: (required)
|
|
4457
|
+
:type payload: UpdateClusterNodeGroupPayload
|
|
4458
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4459
|
+
number provided, it will be total request
|
|
4460
|
+
timeout. It can also be a pair (tuple) of
|
|
4461
|
+
(connection, read) timeouts.
|
|
4462
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
4463
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
4464
|
+
request; this effectively ignores the
|
|
4465
|
+
authentication in the spec for a single request.
|
|
4466
|
+
:type _request_auth: dict, optional
|
|
4467
|
+
:param _content_type: force content-type for the request.
|
|
4468
|
+
:type _content_type: str, Optional
|
|
4469
|
+
:param _headers: set to override the headers for a single
|
|
4470
|
+
request; this effectively ignores the headers
|
|
4471
|
+
in the spec for a single request.
|
|
4472
|
+
:type _headers: dict, optional
|
|
4473
|
+
:param _host_index: set to override the host_index for a single
|
|
4474
|
+
request; this effectively ignores the host_index
|
|
4475
|
+
in the spec for a single request.
|
|
4476
|
+
:type _host_index: int, optional
|
|
4477
|
+
:return: Returns the result object.
|
|
4478
|
+
""" # noqa: E501
|
|
4479
|
+
|
|
4480
|
+
_param = self._update_a_node_group_serialize(
|
|
4481
|
+
cluster_id=cluster_id,
|
|
4482
|
+
node_group_id=node_group_id,
|
|
4483
|
+
payload=payload,
|
|
4484
|
+
_request_auth=_request_auth,
|
|
4485
|
+
_content_type=_content_type,
|
|
4486
|
+
_headers=_headers,
|
|
4487
|
+
_host_index=_host_index
|
|
4488
|
+
)
|
|
4489
|
+
|
|
4490
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
4491
|
+
'200': "ClusterNodeGroupsCreateResponse",
|
|
4492
|
+
'400': "ErrorResponseModel",
|
|
4493
|
+
'401': "ErrorResponseModel",
|
|
4494
|
+
'404': "ErrorResponseModel",
|
|
4495
|
+
'409': "ErrorResponseModel",
|
|
4496
|
+
'500': None,
|
|
4497
|
+
}
|
|
4498
|
+
response_data = self.api_client.call_api(
|
|
4499
|
+
*_param,
|
|
4500
|
+
_request_timeout=_request_timeout
|
|
4501
|
+
)
|
|
4502
|
+
return response_data.response
|
|
4503
|
+
|
|
4504
|
+
|
|
4505
|
+
def _update_a_node_group_serialize(
|
|
4506
|
+
self,
|
|
4507
|
+
cluster_id,
|
|
4508
|
+
node_group_id,
|
|
4509
|
+
payload,
|
|
4510
|
+
_request_auth,
|
|
4511
|
+
_content_type,
|
|
4512
|
+
_headers,
|
|
4513
|
+
_host_index,
|
|
4514
|
+
) -> RequestSerialized:
|
|
4515
|
+
|
|
4516
|
+
_host = None
|
|
4517
|
+
|
|
4518
|
+
_collection_formats: Dict[str, str] = {
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4521
|
+
_path_params: Dict[str, str] = {}
|
|
4522
|
+
_query_params: List[Tuple[str, str]] = []
|
|
4523
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
4524
|
+
_form_params: List[Tuple[str, str]] = []
|
|
4525
|
+
_files: Dict[
|
|
4526
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
4527
|
+
] = {}
|
|
4528
|
+
_body_params: Optional[bytes] = None
|
|
4529
|
+
|
|
4530
|
+
# process the path parameters
|
|
4531
|
+
if cluster_id is not None:
|
|
4532
|
+
_path_params['cluster_id'] = cluster_id
|
|
4533
|
+
if node_group_id is not None:
|
|
4534
|
+
_path_params['node_group_id'] = node_group_id
|
|
4535
|
+
# process the query parameters
|
|
4536
|
+
# process the header parameters
|
|
4537
|
+
# process the form parameters
|
|
4538
|
+
# process the body parameter
|
|
4539
|
+
if payload is not None:
|
|
4540
|
+
_body_params = payload
|
|
4541
|
+
|
|
4542
|
+
|
|
4543
|
+
# set the HTTP header `Accept`
|
|
4544
|
+
if 'Accept' not in _header_params:
|
|
4545
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4546
|
+
[
|
|
4547
|
+
'application/json'
|
|
4548
|
+
]
|
|
4549
|
+
)
|
|
4550
|
+
|
|
4551
|
+
# set the HTTP header `Content-Type`
|
|
4552
|
+
if _content_type:
|
|
4553
|
+
_header_params['Content-Type'] = _content_type
|
|
4554
|
+
else:
|
|
4555
|
+
_default_content_type = (
|
|
4556
|
+
self.api_client.select_header_content_type(
|
|
4557
|
+
[
|
|
4558
|
+
'application/json'
|
|
4559
|
+
]
|
|
4560
|
+
)
|
|
4561
|
+
)
|
|
4562
|
+
if _default_content_type is not None:
|
|
4563
|
+
_header_params['Content-Type'] = _default_content_type
|
|
4564
|
+
|
|
4565
|
+
# authentication setting
|
|
4566
|
+
_auth_settings: List[str] = [
|
|
4567
|
+
'apiKey'
|
|
4568
|
+
]
|
|
4569
|
+
|
|
4570
|
+
return self.api_client.param_serialize(
|
|
4571
|
+
method='PATCH',
|
|
4572
|
+
resource_path='/core/clusters/{cluster_id}/node-groups/{node_group_id}',
|
|
4573
|
+
path_params=_path_params,
|
|
4574
|
+
query_params=_query_params,
|
|
4575
|
+
header_params=_header_params,
|
|
4576
|
+
body=_body_params,
|
|
4577
|
+
post_params=_form_params,
|
|
4578
|
+
files=_files,
|
|
4579
|
+
auth_settings=_auth_settings,
|
|
4580
|
+
collection_formats=_collection_formats,
|
|
4581
|
+
_host=_host,
|
|
4582
|
+
_request_auth=_request_auth
|
|
4583
|
+
)
|
|
4584
|
+
|
|
4585
|
+
|
|
@@ -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.43.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.43.0-alpha".\
|
|
528
528
|
format(env=sys.platform, pyversion=sys.version)
|
|
529
529
|
|
|
530
530
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -278,6 +278,7 @@ from .template_fields import TemplateFields
|
|
|
278
278
|
from .templates import Templates
|
|
279
279
|
from .token_based_billing_history_response import TokenBasedBillingHistoryResponse
|
|
280
280
|
from .uris import URIs
|
|
281
|
+
from .update_cluster_node_group_payload import UpdateClusterNodeGroupPayload
|
|
281
282
|
from .update_environment import UpdateEnvironment
|
|
282
283
|
from .update_keypair_name import UpdateKeypairName
|
|
283
284
|
from .update_keypair_name_response import UpdateKeypairNameResponse
|
|
@@ -18,7 +18,7 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from ..models.cluster_flavor_fields import ClusterFlavorFields
|
|
24
24
|
from ..models.cluster_node_fields import ClusterNodeFields
|
|
@@ -34,6 +34,7 @@ class ClusterFields(BaseModel):
|
|
|
34
34
|
created_at: Optional[datetime] = None
|
|
35
35
|
environment_name: Optional[StrictStr] = None
|
|
36
36
|
id: Optional[StrictInt] = None
|
|
37
|
+
is_reconciling: Optional[StrictBool] = None
|
|
37
38
|
keypair_name: Optional[StrictStr] = None
|
|
38
39
|
kube_config: Optional[StrictStr] = None
|
|
39
40
|
kubernetes_version: Optional[StrictStr] = None
|
|
@@ -43,7 +44,7 @@ class ClusterFields(BaseModel):
|
|
|
43
44
|
nodes: Optional[List[ClusterNodeFields]] = None
|
|
44
45
|
status: Optional[StrictStr] = None
|
|
45
46
|
status_reason: Optional[StrictStr] = None
|
|
46
|
-
__properties: ClassVar[List[str]] = ["api_address", "created_at", "environment_name", "id", "keypair_name", "kube_config", "kubernetes_version", "master_flavor", "name", "node_groups", "nodes", "status", "status_reason"]
|
|
47
|
+
__properties: ClassVar[List[str]] = ["api_address", "created_at", "environment_name", "id", "is_reconciling", "keypair_name", "kube_config", "kubernetes_version", "master_flavor", "name", "node_groups", "nodes", "status", "status_reason"]
|
|
47
48
|
|
|
48
49
|
model_config = ConfigDict(
|
|
49
50
|
populate_by_name=True,
|
|
@@ -117,6 +118,7 @@ class ClusterFields(BaseModel):
|
|
|
117
118
|
"created_at": obj.get("created_at"),
|
|
118
119
|
"environment_name": obj.get("environment_name"),
|
|
119
120
|
"id": obj.get("id"),
|
|
121
|
+
"is_reconciling": obj.get("is_reconciling"),
|
|
120
122
|
"keypair_name": obj.get("keypair_name"),
|
|
121
123
|
"kube_config": obj.get("kube_config"),
|
|
122
124
|
"kubernetes_version": obj.get("kubernetes_version"),
|
|
@@ -32,10 +32,12 @@ class ClusterNodeGroupFields(BaseModel):
|
|
|
32
32
|
created_at: Optional[datetime] = None
|
|
33
33
|
flavor: Optional[ClusterFlavorFields] = None
|
|
34
34
|
id: Optional[StrictInt] = None
|
|
35
|
+
max_count: Optional[StrictInt] = None
|
|
36
|
+
min_count: Optional[StrictInt] = None
|
|
35
37
|
name: Optional[StrictStr] = None
|
|
36
38
|
role: Optional[StrictStr] = None
|
|
37
39
|
updated_at: Optional[datetime] = None
|
|
38
|
-
__properties: ClassVar[List[str]] = ["count", "created_at", "flavor", "id", "name", "role", "updated_at"]
|
|
40
|
+
__properties: ClassVar[List[str]] = ["count", "created_at", "flavor", "id", "max_count", "min_count", "name", "role", "updated_at"]
|
|
39
41
|
|
|
40
42
|
model_config = ConfigDict(
|
|
41
43
|
populate_by_name=True,
|
|
@@ -95,6 +97,8 @@ class ClusterNodeGroupFields(BaseModel):
|
|
|
95
97
|
"created_at": obj.get("created_at"),
|
|
96
98
|
"flavor": ClusterFlavorFields.from_dict(obj["flavor"]) if obj.get("flavor") is not None else None,
|
|
97
99
|
"id": obj.get("id"),
|
|
100
|
+
"max_count": obj.get("max_count"),
|
|
101
|
+
"min_count": obj.get("min_count"),
|
|
98
102
|
"name": obj.get("name"),
|
|
99
103
|
"role": obj.get("role"),
|
|
100
104
|
"updated_at": obj.get("updated_at")
|
{hyperstack-1.42.1a0 → hyperstack-1.43.0a0}/hyperstack/models/create_cluster_node_group_payload.py
RENAMED
|
@@ -17,7 +17,7 @@ import pprint
|
|
|
17
17
|
import re # noqa: F401
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from typing import Optional, Set
|
|
@@ -29,8 +29,18 @@ class CreateClusterNodeGroupPayload(BaseModel):
|
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
count: Optional[Annotated[int, Field(strict=True, ge=1)]] = None
|
|
31
31
|
flavor_name: StrictStr
|
|
32
|
+
max_count: Optional[Annotated[int, Field(le=20, strict=True)]] = None
|
|
33
|
+
min_count: Optional[Annotated[int, Field(strict=True, ge=1)]] = None
|
|
32
34
|
name: Annotated[str, Field(strict=True, max_length=20)]
|
|
33
|
-
|
|
35
|
+
role: StrictStr
|
|
36
|
+
__properties: ClassVar[List[str]] = ["count", "flavor_name", "max_count", "min_count", "name", "role"]
|
|
37
|
+
|
|
38
|
+
@field_validator('role')
|
|
39
|
+
def role_validate_enum(cls, value):
|
|
40
|
+
"""Validates the enum"""
|
|
41
|
+
if value not in set(['worker']):
|
|
42
|
+
raise ValueError("must be one of enum values ('worker')")
|
|
43
|
+
return value
|
|
34
44
|
|
|
35
45
|
model_config = ConfigDict(
|
|
36
46
|
populate_by_name=True,
|
|
@@ -85,7 +95,10 @@ class CreateClusterNodeGroupPayload(BaseModel):
|
|
|
85
95
|
_obj = cls.model_validate({
|
|
86
96
|
"count": obj.get("count"),
|
|
87
97
|
"flavor_name": obj.get("flavor_name"),
|
|
88
|
-
"
|
|
98
|
+
"max_count": obj.get("max_count"),
|
|
99
|
+
"min_count": obj.get("min_count"),
|
|
100
|
+
"name": obj.get("name"),
|
|
101
|
+
"role": obj.get("role") if obj.get("role") is not None else 'worker'
|
|
89
102
|
})
|
|
90
103
|
return _obj
|
|
91
104
|
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Infrahub-API
|
|
5
|
+
|
|
6
|
+
Leverage the Infrahub API and Hyperstack platform to easily create, manage, and scale powerful GPU virtual machines and their associated resources. Access this SDK to automate the deployment of your workloads and streamline your infrastructure management. To contribute, please raise an issue with a bug report, feature request, feedback, or general inquiry.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from typing_extensions import Annotated
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class UpdateClusterNodeGroupPayload(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
UpdateClusterNodeGroupPayload
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
max_count: Optional[Annotated[int, Field(le=20, strict=True)]] = None
|
|
31
|
+
min_count: Optional[Annotated[int, Field(strict=True, ge=1)]] = None
|
|
32
|
+
__properties: ClassVar[List[str]] = ["max_count", "min_count"]
|
|
33
|
+
|
|
34
|
+
model_config = ConfigDict(
|
|
35
|
+
populate_by_name=True,
|
|
36
|
+
validate_assignment=True,
|
|
37
|
+
protected_namespaces=(),
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def to_str(self) -> str:
|
|
42
|
+
"""Returns the string representation of the model using alias"""
|
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
44
|
+
|
|
45
|
+
def to_json(self) -> str:
|
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
48
|
+
return json.dumps(self.to_dict())
|
|
49
|
+
|
|
50
|
+
@classmethod
|
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
52
|
+
"""Create an instance of UpdateClusterNodeGroupPayload from a JSON string"""
|
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
|
54
|
+
|
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
|
57
|
+
|
|
58
|
+
This has the following differences from calling pydantic's
|
|
59
|
+
`self.model_dump(by_alias=True)`:
|
|
60
|
+
|
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
|
62
|
+
were set at model initialization. Other fields with value `None`
|
|
63
|
+
are ignored.
|
|
64
|
+
"""
|
|
65
|
+
excluded_fields: Set[str] = set([
|
|
66
|
+
])
|
|
67
|
+
|
|
68
|
+
_dict = self.model_dump(
|
|
69
|
+
by_alias=True,
|
|
70
|
+
exclude=excluded_fields,
|
|
71
|
+
exclude_none=True,
|
|
72
|
+
)
|
|
73
|
+
return _dict
|
|
74
|
+
|
|
75
|
+
@classmethod
|
|
76
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
77
|
+
"""Create an instance of UpdateClusterNodeGroupPayload from a dict"""
|
|
78
|
+
if obj is None:
|
|
79
|
+
return None
|
|
80
|
+
|
|
81
|
+
if not isinstance(obj, dict):
|
|
82
|
+
return cls.model_validate(obj)
|
|
83
|
+
|
|
84
|
+
_obj = cls.model_validate({
|
|
85
|
+
"max_count": obj.get("max_count"),
|
|
86
|
+
"min_count": obj.get("min_count")
|
|
87
|
+
})
|
|
88
|
+
return _obj
|
|
89
|
+
|
|
90
|
+
|
|
@@ -326,6 +326,7 @@ hyperstack/models/template.py
|
|
|
326
326
|
hyperstack/models/template_fields.py
|
|
327
327
|
hyperstack/models/templates.py
|
|
328
328
|
hyperstack/models/token_based_billing_history_response.py
|
|
329
|
+
hyperstack/models/update_cluster_node_group_payload.py
|
|
329
330
|
hyperstack/models/update_environment.py
|
|
330
331
|
hyperstack/models/update_keypair_name.py
|
|
331
332
|
hyperstack/models/update_keypair_name_response.py
|
|
@@ -656,6 +657,7 @@ test/test_template_api.py
|
|
|
656
657
|
test/test_template_fields.py
|
|
657
658
|
test/test_templates.py
|
|
658
659
|
test/test_token_based_billing_history_response.py
|
|
660
|
+
test/test_update_cluster_node_group_payload.py
|
|
659
661
|
test/test_update_environment.py
|
|
660
662
|
test/test_update_keypair_name.py
|
|
661
663
|
test/test_update_keypair_name_response.py
|
|
@@ -21,7 +21,7 @@ from setuptools import setup, find_packages # noqa: H301
|
|
|
21
21
|
# prerequisite: setuptools
|
|
22
22
|
# http://pypi.python.org/pypi/setuptools
|
|
23
23
|
NAME = "hyperstack"
|
|
24
|
-
VERSION = "v1.
|
|
24
|
+
VERSION = "v1.43.0-alpha"
|
|
25
25
|
PYTHON_REQUIRES = ">= 3.8"
|
|
26
26
|
REQUIRES = [
|
|
27
27
|
"urllib3 >= 1.25.3, < 3.0.0",
|
|
@@ -39,6 +39,7 @@ class TestClusterFields(unittest.TestCase):
|
|
|
39
39
|
created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
40
40
|
environment_name = '',
|
|
41
41
|
id = 56,
|
|
42
|
+
is_reconciling = True,
|
|
42
43
|
keypair_name = '',
|
|
43
44
|
kube_config = '',
|
|
44
45
|
kubernetes_version = '',
|
|
@@ -78,6 +79,8 @@ class TestClusterFields(unittest.TestCase):
|
|
|
78
79
|
name = '',
|
|
79
80
|
ram = 1.337, ),
|
|
80
81
|
id = 56,
|
|
82
|
+
max_count = 56,
|
|
83
|
+
min_count = 56,
|
|
81
84
|
name = '',
|
|
82
85
|
role = '',
|
|
83
86
|
updated_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), )
|