hyperstack 1.43.0a0__tar.gz → 1.45.2a0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/PKG-INFO +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/README.md +7 -2
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/__init__.py +6 -2
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/__init__.py +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/clusters_api.py +299 -0
- hyperstack-1.43.0a0/hyperstack/api/admin_api.py → hyperstack-1.45.2a0/hyperstack/api/vouchers_api.py +56 -27
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api_client.py +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/configuration.py +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/__init__.py +4 -0
- hyperstack-1.45.2a0/hyperstack/models/delete_cluster_nodes_fields.py +87 -0
- hyperstack-1.45.2a0/hyperstack/models/redeem_voucher_payload.py +87 -0
- hyperstack-1.45.2a0/hyperstack/models/voucher.py +91 -0
- hyperstack-1.45.2a0/hyperstack/models/voucher_redeem_response_schema.py +95 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack.egg-info/PKG-INFO +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack.egg-info/SOURCES.txt +10 -2
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/pyproject.toml +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/setup.py +1 -1
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_clusters_api.py +7 -0
- hyperstack-1.45.2a0/test/test_delete_cluster_nodes_fields.py +53 -0
- hyperstack-1.45.2a0/test/test_redeem_voucher_payload.py +52 -0
- hyperstack-1.45.2a0/test/test_voucher.py +56 -0
- hyperstack-1.45.2a0/test/test_voucher_redeem_response_schema.py +58 -0
- hyperstack-1.45.2a0/test/test_vouchers_api.py +38 -0
- hyperstack-1.43.0a0/test/test_admin_api.py +0 -38
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/alive_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/api_key_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/assigning_member_role_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/auth_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/beta_access_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/billing_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/calculate_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/callbacks_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/cluster_events_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/compliance_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/credit_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/customer_contract_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/dashboard_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/deployment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/environment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/firewall_attachment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/firewalls_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/flavor_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/floating_ip_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/gpu_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/image_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/invite_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/keypair_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/organization_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/partner_config_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/payment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/permission_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/policy_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/pricebook_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/profile_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/rbac_role_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/region_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/security_rules_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/snapshot_events_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/snapshots_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/stock_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/template_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/user_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/user_detail_choice_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/user_permission_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/virtual_machine_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/virtual_machine_events_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/vnc_url_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/volume_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api/volume_attachment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/api_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/exceptions.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/access_token_field.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/api_key_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_callback_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_callback_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_volume_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_volumes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attach_volumes_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/auth_user_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/beta_access_request_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/beta_access_request_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/beta_access_status_item.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_history.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_metrices_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/billing_metrices_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_events.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_events_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_node_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_node_group_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_version.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/cluster_versions.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/colors.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/common_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/compliance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/compliance_model_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/compliance_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/compliance_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/container_overview_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/contract.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/contract_instance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/contract_instances_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_cluster_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_environment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_firewall_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_image.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_image_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_instances_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_instances_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_profile_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_profile_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_security_rule_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_snapshot_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_snapshot_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_update_compliance_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/create_volume_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/customer_contract_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/dashboard_info_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/deployment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/deployments.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/detach_volumes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/detach_volumes_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/environment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/environment_features.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/environments.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/error_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_attachment_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_detail_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_detail_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewall_rule.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/firewalls_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/flavor_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/flavor_item_get_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/flavor_label_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/flavor_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/flavor_object_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/generate_update_api_key_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_instance_logs_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_invites_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_organization_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_permissions_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_policies_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/gpu_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/gpu_list.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/gpu_region_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/image.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/image_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/image_get_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/images.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/import_keypair_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/import_keypair_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_events.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_events_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_flavor_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_image_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_keypair_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_overview_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instance_resize_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/instances.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/invite_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/invite_user_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/invite_user_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/keypair_environment_features.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/keypair_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/keypair_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/keypairs.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/lable_resonse.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/last_day_cost_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/last_day_cost_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/logos.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/master_flavors_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/metric_item_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/metrics_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/mfa_status_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/mfa_status_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/name_available_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/new_configurations_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/new_model_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/new_stock_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_level_billing_history.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_threshold_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_thresholds_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/organization_user_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/overview_info.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/pagination.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/pagination_data.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/partner_config.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/payment_details_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/payment_details_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/payment_initiate_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/payment_initiate_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/payment_initiate_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/policy_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/policy_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/pricebook_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/primary_color.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/profile_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/profile_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/profile_object_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/rbac_role_field.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/rbac_role_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/region_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/regions.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/remove_member_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/request_console.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/request_instance_logs_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_history.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/role_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/role_policy_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/secondary_color.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/security_group_rule.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/security_group_rule_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/snapshot_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/snapshot_restore_request.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/snapshot_retrieve.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/snapshots.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/start_deployment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/start_deployment_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/template.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/template_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/templates.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_environment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_keypair_name.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_keypair_name_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_organization_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_organization_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_template.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_volume_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/update_volume_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/uris.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/user_info_post_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/user_organizations_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/user_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/users_info_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/users_info_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/vncurl.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/vncurl_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volume_attachment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volume_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volume_overview_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volume_types.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volumes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/volumes_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/models/workload_billing_history_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/py.typed +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack/rest.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack.egg-info/dependency_links.txt +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack.egg-info/requires.txt +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/hyperstack.egg-info/top_level.txt +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/setup.cfg +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_access_token_field.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_add_user_info_success_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_alive_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_api_key_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_api_key_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_assign_rbac_role_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_assigning_member_role_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_callback_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_callback_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_firewall_with_vm.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_volume_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_volumes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attach_volumes_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attachments_fields_for_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_auth_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_auth_get_token_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_auth_user_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_auth_user_info_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_beta_access_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_beta_access_request_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_beta_access_request_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_beta_access_request_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_beta_access_status_item.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_beta_access_status_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_history.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_history_fine_tuning.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_history_serverless_inference.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_metrices_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_billing_metrices_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_calculate_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_callbacks_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_events.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_events_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_events_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_flavor_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_node_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_node_group_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_node_instance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_nodes_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_version.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_cluster_versions.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_colors.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_common_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_compliance_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_compliance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_compliance_model_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_compliance_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_compliance_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_container_overview_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_contract.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_contract_discount_plan_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_contract_instance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_contract_instances_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_cluster_node_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_cluster_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_environment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_firewall_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_firewall_rule_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_image.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_image_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_instances_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_instances_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_profile_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_profile_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_security_rule_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_snapshot_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_snapshot_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_update_compliance_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_create_volume_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_credit_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_customer_contract_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_customer_contract_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_dashboard_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_dashboard_info_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_deployment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_deployment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_deployments.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_detach_volumes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_detach_volumes_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_environment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_environment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_environment_features.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_environment_fields_for_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_environments.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_error_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_attachment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_attachment_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_detail_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_detail_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewall_rule.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewalls_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_firewalls_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_flavor_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_flavor_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_flavor_item_get_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_flavor_label_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_flavor_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_flavor_object_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_floating_ip_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_generate_update_api_key_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_api_keys_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_instance_logs_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_invites_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_organization_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_permissions_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_policies_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_get_user_permissions_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_gpu_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_gpu_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_gpu_list.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_gpu_region_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_graph_datetime_value_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_image.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_image_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_image_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_image_get_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_images.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_import_keypair_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_import_keypair_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_events.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_events_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_flavor_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_image_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_keypair_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_overview_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instance_resize_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_instances.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_invite_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_invite_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_invite_user_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_invite_user_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_keypair_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_keypair_environment_features.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_keypair_environment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_keypair_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_keypairs.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_lable_resonse.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_last_day_cost_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_last_day_cost_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_logos.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_manual_reconciliation_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_master_flavors_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_metric_item_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_metrics_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_mfa_status_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_mfa_status_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_name_available_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_new_configurations_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_new_model_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_new_stock_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_new_stock_retrive_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_level_billing_history.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_threshold_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_threshold_update_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_thresholds_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_organization_user_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_overview_info.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_pagination.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_pagination_data.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_partner_config.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_partner_config_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_payment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_payment_details_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_payment_details_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_payment_initiate_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_payment_initiate_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_payment_initiate_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_permission_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_policy_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_policy_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_policy_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_pricebook_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_pricebook_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_primary_color.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_profile_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_profile_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_profile_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_profile_object_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_rbac_role_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_rbac_role_field.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_rbac_role_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_region_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_region_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_regions.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_remove_member_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_request_console.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_request_instance_logs_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_request_instance_logs_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_billing_events_history_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_history.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_role_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_role_policy_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_secondary_color.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_security_group_rule.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_security_group_rule_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_security_rules_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_security_rules_protocol_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshot_events_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshot_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshot_restore_request.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshot_retrieve.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshots.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_snapshots_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_start_deployment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_start_deployment_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_stock_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_template.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_template_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_template_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_templates.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_token_based_billing_history_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_environment.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_keypair_name.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_keypair_name_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_organization_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_organization_response_model.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_template.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_volume_attachment_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_volume_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_update_volume_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_uris.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_detail_choice_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_info_post_payload.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_organizations_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_permission_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_user_permission_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_users_info_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_users_info_list_response.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_virtual_machine_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_virtual_machine_events_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_vnc_url_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_vncurl.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_vncurl_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_attachment_api.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_attachment_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_fields_for_instance.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_overview_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volume_types.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volumes.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/test/test_volumes_fields.py +0 -0
- {hyperstack-1.43.0a0 → hyperstack-1.45.2a0}/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.45.2-alpha
|
|
12
12
|
- Generator version: 7.10.0
|
|
13
13
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
14
14
|
|
|
@@ -111,7 +111,6 @@ Class | Method | HTTP request | Description
|
|
|
111
111
|
*SnapshotsApi* | [**restore_a_snapshot**](docs/SnapshotsApi.md#restore_a_snapshot) | **POST** /core/snapshots/{id}/restore | Restore a snapshot
|
|
112
112
|
*SnapshotsApi* | [**retrieve_an_existing_snapshot**](docs/SnapshotsApi.md#retrieve_an_existing_snapshot) | **GET** /core/snapshots/{id} | Retrieve a snapshot
|
|
113
113
|
*SnapshotsApi* | [**retrieves_a_list_of_snapshots**](docs/SnapshotsApi.md#retrieves_a_list_of_snapshots) | **GET** /core/snapshots | Retrieve list of snapshots with pagination
|
|
114
|
-
*AdminApi* | [**send_password_change_notification_email**](docs/AdminApi.md#send_password_change_notification_email) | **POST** /auth/admin/password-change-mail | Send Password Change Notification Email
|
|
115
114
|
*AliveApi* | [**get_alive**](docs/AliveApi.md#get_alive) | **GET** /billing/alive | GET: Alive
|
|
116
115
|
*AliveApi* | [**get_doc**](docs/AliveApi.md#get_doc) | **GET** /billing/alive/doc |
|
|
117
116
|
*ApiKeyApi* | [**delete_api_key**](docs/ApiKeyApi.md#delete_api_key) | **DELETE** /api-key/{api_key_id} | Delete API Key
|
|
@@ -179,6 +178,7 @@ Class | Method | HTTP request | Description
|
|
|
179
178
|
*ClustersApi* | [**delete_a_cluster**](docs/ClustersApi.md#delete_a_cluster) | **DELETE** /core/clusters/{id} | Delete a cluster
|
|
180
179
|
*ClustersApi* | [**delete_a_node_group**](docs/ClustersApi.md#delete_a_node_group) | **DELETE** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Delete a node group
|
|
181
180
|
*ClustersApi* | [**delete_cluster_node**](docs/ClustersApi.md#delete_cluster_node) | **DELETE** /core/clusters/{cluster_id}/nodes/{node_id} | Delete Cluster Node
|
|
181
|
+
*ClustersApi* | [**delete_cluster_nodes**](docs/ClustersApi.md#delete_cluster_nodes) | **POST** /core/clusters/{cluster_id}/nodes/delete | Delete Multiple Cluster Nodes
|
|
182
182
|
*ClustersApi* | [**fetch_cluster_name_availability**](docs/ClustersApi.md#fetch_cluster_name_availability) | **GET** /core/clusters/name-availability/{name} | Fetch cluster name availability
|
|
183
183
|
*ClustersApi* | [**get_cluster_master_flavors**](docs/ClustersApi.md#get_cluster_master_flavors) | **GET** /core/clusters/master-flavors | Get Cluster Master Flavors
|
|
184
184
|
*ClustersApi* | [**get_cluster_nodes**](docs/ClustersApi.md#get_cluster_nodes) | **GET** /core/clusters/{cluster_id}/nodes | Get Cluster Nodes
|
|
@@ -294,6 +294,7 @@ Class | Method | HTTP request | Description
|
|
|
294
294
|
*VolumeAttachmentApi* | [**attach_volumes_to_virtual_machine**](docs/VolumeAttachmentApi.md#attach_volumes_to_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/attach-volumes | Attach volumes to virtual machine
|
|
295
295
|
*VolumeAttachmentApi* | [**detach_volumes_from_virtual_machine**](docs/VolumeAttachmentApi.md#detach_volumes_from_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/detach-volumes | Detach volumes from virtual machine
|
|
296
296
|
*VolumeAttachmentApi* | [**update_a_volume_attachment**](docs/VolumeAttachmentApi.md#update_a_volume_attachment) | **PATCH** /core/volume-attachments/{volume_attachment_id} | Update a volume attachment
|
|
297
|
+
*VouchersApi* | [**redeem_a_voucher**](docs/VouchersApi.md#redeem_a_voucher) | **POST** /billing/billing/vouchers/redeem | Redeem a voucher with a voucher_code
|
|
297
298
|
|
|
298
299
|
|
|
299
300
|
## Documentation For Models
|
|
@@ -377,6 +378,7 @@ Class | Method | HTTP request | Description
|
|
|
377
378
|
- [CustomerContractFields](docs/CustomerContractFields.md)
|
|
378
379
|
- [DashboardInfoResponse](docs/DashboardInfoResponse.md)
|
|
379
380
|
- [DataSynthesisBillingHistoryDetailsResponseSchema](docs/DataSynthesisBillingHistoryDetailsResponseSchema.md)
|
|
381
|
+
- [DeleteClusterNodesFields](docs/DeleteClusterNodesFields.md)
|
|
380
382
|
- [DeploymentFields](docs/DeploymentFields.md)
|
|
381
383
|
- [DeploymentFieldsForStartDeployments](docs/DeploymentFieldsForStartDeployments.md)
|
|
382
384
|
- [Deployments](docs/Deployments.md)
|
|
@@ -493,6 +495,7 @@ Class | Method | HTTP request | Description
|
|
|
493
495
|
- [RbacRoleDetailResponseModelFixed](docs/RbacRoleDetailResponseModelFixed.md)
|
|
494
496
|
- [RbacRoleField](docs/RbacRoleField.md)
|
|
495
497
|
- [RbacRoleFields](docs/RbacRoleFields.md)
|
|
498
|
+
- [RedeemVoucherPayload](docs/RedeemVoucherPayload.md)
|
|
496
499
|
- [RegionFields](docs/RegionFields.md)
|
|
497
500
|
- [Regions](docs/Regions.md)
|
|
498
501
|
- [RemoveMemberFromOrganizationResponseModel](docs/RemoveMemberFromOrganizationResponseModel.md)
|
|
@@ -589,6 +592,8 @@ Class | Method | HTTP request | Description
|
|
|
589
592
|
- [VolumeTypes](docs/VolumeTypes.md)
|
|
590
593
|
- [Volumes](docs/Volumes.md)
|
|
591
594
|
- [VolumesFields](docs/VolumesFields.md)
|
|
595
|
+
- [Voucher](docs/Voucher.md)
|
|
596
|
+
- [VoucherRedeemResponseSchema](docs/VoucherRedeemResponseSchema.md)
|
|
592
597
|
- [WorkloadBillingHistoryResponse](docs/WorkloadBillingHistoryResponse.md)
|
|
593
598
|
|
|
594
599
|
|
|
@@ -14,14 +14,13 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "v1.
|
|
17
|
+
__version__ = "v1.45.2-alpha"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from .api.calculate_api import CalculateApi
|
|
21
21
|
from .api.customer_contract_api import CustomerContractApi
|
|
22
22
|
from .api.pricebook_api import PricebookApi
|
|
23
23
|
from .api.snapshots_api import SnapshotsApi
|
|
24
|
-
from .api.admin_api import AdminApi
|
|
25
24
|
from .api.alive_api import AliveApi
|
|
26
25
|
from .api.api_key_api import ApiKeyApi
|
|
27
26
|
from .api.assigning_member_role_api import AssigningMemberRoleApi
|
|
@@ -64,6 +63,7 @@ from .api.virtual_machine_events_api import VirtualMachineEventsApi
|
|
|
64
63
|
from .api.vnc_url_api import VncUrlApi
|
|
65
64
|
from .api.volume_api import VolumeApi
|
|
66
65
|
from .api.volume_attachment_api import VolumeAttachmentApi
|
|
66
|
+
from .api.vouchers_api import VouchersApi
|
|
67
67
|
|
|
68
68
|
# import ApiClient
|
|
69
69
|
from .api_response import ApiResponse
|
|
@@ -156,6 +156,7 @@ from .models.customer_contract_detail_response_model import CustomerContractDeta
|
|
|
156
156
|
from .models.customer_contract_fields import CustomerContractFields
|
|
157
157
|
from .models.dashboard_info_response import DashboardInfoResponse
|
|
158
158
|
from .models.data_synthesis_billing_history_details_response_schema import DataSynthesisBillingHistoryDetailsResponseSchema
|
|
159
|
+
from .models.delete_cluster_nodes_fields import DeleteClusterNodesFields
|
|
159
160
|
from .models.deployment_fields import DeploymentFields
|
|
160
161
|
from .models.deployment_fields_for_start_deployments import DeploymentFieldsForStartDeployments
|
|
161
162
|
from .models.deployments import Deployments
|
|
@@ -272,6 +273,7 @@ from .models.rbac_role_detail_response_model import RbacRoleDetailResponseModel
|
|
|
272
273
|
from .models.rbac_role_detail_response_model_fixed import RbacRoleDetailResponseModelFixed
|
|
273
274
|
from .models.rbac_role_field import RbacRoleField
|
|
274
275
|
from .models.rbac_role_fields import RbacRoleFields
|
|
276
|
+
from .models.redeem_voucher_payload import RedeemVoucherPayload
|
|
275
277
|
from .models.region_fields import RegionFields
|
|
276
278
|
from .models.regions import Regions
|
|
277
279
|
from .models.remove_member_from_organization_response_model import RemoveMemberFromOrganizationResponseModel
|
|
@@ -368,4 +370,6 @@ from .models.volume_overview_fields import VolumeOverviewFields
|
|
|
368
370
|
from .models.volume_types import VolumeTypes
|
|
369
371
|
from .models.volumes import Volumes
|
|
370
372
|
from .models.volumes_fields import VolumesFields
|
|
373
|
+
from .models.voucher import Voucher
|
|
374
|
+
from .models.voucher_redeem_response_schema import VoucherRedeemResponseSchema
|
|
371
375
|
from .models.workload_billing_history_response import WorkloadBillingHistoryResponse
|
|
@@ -5,7 +5,6 @@ from .calculate_api import CalculateApi
|
|
|
5
5
|
from .customer_contract_api import CustomerContractApi
|
|
6
6
|
from .pricebook_api import PricebookApi
|
|
7
7
|
from .snapshots_api import SnapshotsApi
|
|
8
|
-
from .admin_api import AdminApi
|
|
9
8
|
from .alive_api import AliveApi
|
|
10
9
|
from .api_key_api import ApiKeyApi
|
|
11
10
|
from .assigning_member_role_api import AssigningMemberRoleApi
|
|
@@ -48,4 +47,5 @@ from .virtual_machine_events_api import VirtualMachineEventsApi
|
|
|
48
47
|
from .vnc_url_api import VncUrlApi
|
|
49
48
|
from .volume_api import VolumeApi
|
|
50
49
|
from .volume_attachment_api import VolumeAttachmentApi
|
|
50
|
+
from .vouchers_api import VouchersApi
|
|
51
51
|
|
|
@@ -29,6 +29,7 @@ from ..models.cluster_versions import ClusterVersions
|
|
|
29
29
|
from ..models.create_cluster_node_fields import CreateClusterNodeFields
|
|
30
30
|
from ..models.create_cluster_node_group_payload import CreateClusterNodeGroupPayload
|
|
31
31
|
from ..models.create_cluster_payload import CreateClusterPayload
|
|
32
|
+
from ..models.delete_cluster_nodes_fields import DeleteClusterNodesFields
|
|
32
33
|
from ..models.manual_reconciliation_model import ManualReconciliationModel
|
|
33
34
|
from ..models.master_flavors_response import MasterFlavorsResponse
|
|
34
35
|
from ..models.name_available_model import NameAvailableModel
|
|
@@ -2057,6 +2058,304 @@ class ClustersApi:
|
|
|
2057
2058
|
|
|
2058
2059
|
|
|
2059
2060
|
|
|
2061
|
+
@validate_call
|
|
2062
|
+
def delete_cluster_nodes(
|
|
2063
|
+
self,
|
|
2064
|
+
cluster_id: StrictInt,
|
|
2065
|
+
payload: DeleteClusterNodesFields,
|
|
2066
|
+
_request_timeout: Union[
|
|
2067
|
+
None,
|
|
2068
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2069
|
+
Tuple[
|
|
2070
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2071
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2072
|
+
]
|
|
2073
|
+
] = None,
|
|
2074
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2075
|
+
_content_type: Optional[StrictStr] = None,
|
|
2076
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2077
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2078
|
+
) -> ResponseModel:
|
|
2079
|
+
"""Delete Multiple Cluster Nodes
|
|
2080
|
+
|
|
2081
|
+
|
|
2082
|
+
:param cluster_id: (required)
|
|
2083
|
+
:type cluster_id: int
|
|
2084
|
+
:param payload: (required)
|
|
2085
|
+
:type payload: DeleteClusterNodesFields
|
|
2086
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2087
|
+
number provided, it will be total request
|
|
2088
|
+
timeout. It can also be a pair (tuple) of
|
|
2089
|
+
(connection, read) timeouts.
|
|
2090
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2091
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2092
|
+
request; this effectively ignores the
|
|
2093
|
+
authentication in the spec for a single request.
|
|
2094
|
+
:type _request_auth: dict, optional
|
|
2095
|
+
:param _content_type: force content-type for the request.
|
|
2096
|
+
:type _content_type: str, Optional
|
|
2097
|
+
:param _headers: set to override the headers for a single
|
|
2098
|
+
request; this effectively ignores the headers
|
|
2099
|
+
in the spec for a single request.
|
|
2100
|
+
:type _headers: dict, optional
|
|
2101
|
+
:param _host_index: set to override the host_index for a single
|
|
2102
|
+
request; this effectively ignores the host_index
|
|
2103
|
+
in the spec for a single request.
|
|
2104
|
+
:type _host_index: int, optional
|
|
2105
|
+
:return: Returns the result object.
|
|
2106
|
+
""" # noqa: E501
|
|
2107
|
+
|
|
2108
|
+
_param = self._delete_cluster_nodes_serialize(
|
|
2109
|
+
cluster_id=cluster_id,
|
|
2110
|
+
payload=payload,
|
|
2111
|
+
_request_auth=_request_auth,
|
|
2112
|
+
_content_type=_content_type,
|
|
2113
|
+
_headers=_headers,
|
|
2114
|
+
_host_index=_host_index
|
|
2115
|
+
)
|
|
2116
|
+
|
|
2117
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2118
|
+
'200': "ResponseModel",
|
|
2119
|
+
'400': "ErrorResponseModel",
|
|
2120
|
+
'401': "ErrorResponseModel",
|
|
2121
|
+
'404': "ErrorResponseModel",
|
|
2122
|
+
'500': None,
|
|
2123
|
+
}
|
|
2124
|
+
response_data = self.api_client.call_api(
|
|
2125
|
+
*_param,
|
|
2126
|
+
_request_timeout=_request_timeout
|
|
2127
|
+
)
|
|
2128
|
+
response_data.read()
|
|
2129
|
+
return self.api_client.response_deserialize(
|
|
2130
|
+
response_data=response_data,
|
|
2131
|
+
response_types_map=_response_types_map,
|
|
2132
|
+
).data
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
@validate_call
|
|
2136
|
+
def delete_cluster_nodes_with_http_info(
|
|
2137
|
+
self,
|
|
2138
|
+
cluster_id: StrictInt,
|
|
2139
|
+
payload: DeleteClusterNodesFields,
|
|
2140
|
+
_request_timeout: Union[
|
|
2141
|
+
None,
|
|
2142
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2143
|
+
Tuple[
|
|
2144
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2145
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2146
|
+
]
|
|
2147
|
+
] = None,
|
|
2148
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2149
|
+
_content_type: Optional[StrictStr] = None,
|
|
2150
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2151
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2152
|
+
) -> ApiResponse[ResponseModel]:
|
|
2153
|
+
"""Delete Multiple Cluster Nodes
|
|
2154
|
+
|
|
2155
|
+
|
|
2156
|
+
:param cluster_id: (required)
|
|
2157
|
+
:type cluster_id: int
|
|
2158
|
+
:param payload: (required)
|
|
2159
|
+
:type payload: DeleteClusterNodesFields
|
|
2160
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2161
|
+
number provided, it will be total request
|
|
2162
|
+
timeout. It can also be a pair (tuple) of
|
|
2163
|
+
(connection, read) timeouts.
|
|
2164
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2165
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2166
|
+
request; this effectively ignores the
|
|
2167
|
+
authentication in the spec for a single request.
|
|
2168
|
+
:type _request_auth: dict, optional
|
|
2169
|
+
:param _content_type: force content-type for the request.
|
|
2170
|
+
:type _content_type: str, Optional
|
|
2171
|
+
:param _headers: set to override the headers for a single
|
|
2172
|
+
request; this effectively ignores the headers
|
|
2173
|
+
in the spec for a single request.
|
|
2174
|
+
:type _headers: dict, optional
|
|
2175
|
+
:param _host_index: set to override the host_index for a single
|
|
2176
|
+
request; this effectively ignores the host_index
|
|
2177
|
+
in the spec for a single request.
|
|
2178
|
+
:type _host_index: int, optional
|
|
2179
|
+
:return: Returns the result object.
|
|
2180
|
+
""" # noqa: E501
|
|
2181
|
+
|
|
2182
|
+
_param = self._delete_cluster_nodes_serialize(
|
|
2183
|
+
cluster_id=cluster_id,
|
|
2184
|
+
payload=payload,
|
|
2185
|
+
_request_auth=_request_auth,
|
|
2186
|
+
_content_type=_content_type,
|
|
2187
|
+
_headers=_headers,
|
|
2188
|
+
_host_index=_host_index
|
|
2189
|
+
)
|
|
2190
|
+
|
|
2191
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2192
|
+
'200': "ResponseModel",
|
|
2193
|
+
'400': "ErrorResponseModel",
|
|
2194
|
+
'401': "ErrorResponseModel",
|
|
2195
|
+
'404': "ErrorResponseModel",
|
|
2196
|
+
'500': None,
|
|
2197
|
+
}
|
|
2198
|
+
response_data = self.api_client.call_api(
|
|
2199
|
+
*_param,
|
|
2200
|
+
_request_timeout=_request_timeout
|
|
2201
|
+
)
|
|
2202
|
+
response_data.read()
|
|
2203
|
+
return self.api_client.response_deserialize(
|
|
2204
|
+
response_data=response_data,
|
|
2205
|
+
response_types_map=_response_types_map,
|
|
2206
|
+
)
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
@validate_call
|
|
2210
|
+
def delete_cluster_nodes_without_preload_content(
|
|
2211
|
+
self,
|
|
2212
|
+
cluster_id: StrictInt,
|
|
2213
|
+
payload: DeleteClusterNodesFields,
|
|
2214
|
+
_request_timeout: Union[
|
|
2215
|
+
None,
|
|
2216
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2217
|
+
Tuple[
|
|
2218
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2219
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2220
|
+
]
|
|
2221
|
+
] = None,
|
|
2222
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2223
|
+
_content_type: Optional[StrictStr] = None,
|
|
2224
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2225
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2226
|
+
) -> RESTResponseType:
|
|
2227
|
+
"""Delete Multiple Cluster Nodes
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
:param cluster_id: (required)
|
|
2231
|
+
:type cluster_id: int
|
|
2232
|
+
:param payload: (required)
|
|
2233
|
+
:type payload: DeleteClusterNodesFields
|
|
2234
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2235
|
+
number provided, it will be total request
|
|
2236
|
+
timeout. It can also be a pair (tuple) of
|
|
2237
|
+
(connection, read) timeouts.
|
|
2238
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2239
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2240
|
+
request; this effectively ignores the
|
|
2241
|
+
authentication in the spec for a single request.
|
|
2242
|
+
:type _request_auth: dict, optional
|
|
2243
|
+
:param _content_type: force content-type for the request.
|
|
2244
|
+
:type _content_type: str, Optional
|
|
2245
|
+
:param _headers: set to override the headers for a single
|
|
2246
|
+
request; this effectively ignores the headers
|
|
2247
|
+
in the spec for a single request.
|
|
2248
|
+
:type _headers: dict, optional
|
|
2249
|
+
:param _host_index: set to override the host_index for a single
|
|
2250
|
+
request; this effectively ignores the host_index
|
|
2251
|
+
in the spec for a single request.
|
|
2252
|
+
:type _host_index: int, optional
|
|
2253
|
+
:return: Returns the result object.
|
|
2254
|
+
""" # noqa: E501
|
|
2255
|
+
|
|
2256
|
+
_param = self._delete_cluster_nodes_serialize(
|
|
2257
|
+
cluster_id=cluster_id,
|
|
2258
|
+
payload=payload,
|
|
2259
|
+
_request_auth=_request_auth,
|
|
2260
|
+
_content_type=_content_type,
|
|
2261
|
+
_headers=_headers,
|
|
2262
|
+
_host_index=_host_index
|
|
2263
|
+
)
|
|
2264
|
+
|
|
2265
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2266
|
+
'200': "ResponseModel",
|
|
2267
|
+
'400': "ErrorResponseModel",
|
|
2268
|
+
'401': "ErrorResponseModel",
|
|
2269
|
+
'404': "ErrorResponseModel",
|
|
2270
|
+
'500': None,
|
|
2271
|
+
}
|
|
2272
|
+
response_data = self.api_client.call_api(
|
|
2273
|
+
*_param,
|
|
2274
|
+
_request_timeout=_request_timeout
|
|
2275
|
+
)
|
|
2276
|
+
return response_data.response
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
def _delete_cluster_nodes_serialize(
|
|
2280
|
+
self,
|
|
2281
|
+
cluster_id,
|
|
2282
|
+
payload,
|
|
2283
|
+
_request_auth,
|
|
2284
|
+
_content_type,
|
|
2285
|
+
_headers,
|
|
2286
|
+
_host_index,
|
|
2287
|
+
) -> RequestSerialized:
|
|
2288
|
+
|
|
2289
|
+
_host = None
|
|
2290
|
+
|
|
2291
|
+
_collection_formats: Dict[str, str] = {
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
_path_params: Dict[str, str] = {}
|
|
2295
|
+
_query_params: List[Tuple[str, str]] = []
|
|
2296
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2297
|
+
_form_params: List[Tuple[str, str]] = []
|
|
2298
|
+
_files: Dict[
|
|
2299
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2300
|
+
] = {}
|
|
2301
|
+
_body_params: Optional[bytes] = None
|
|
2302
|
+
|
|
2303
|
+
# process the path parameters
|
|
2304
|
+
if cluster_id is not None:
|
|
2305
|
+
_path_params['cluster_id'] = cluster_id
|
|
2306
|
+
# process the query parameters
|
|
2307
|
+
# process the header parameters
|
|
2308
|
+
# process the form parameters
|
|
2309
|
+
# process the body parameter
|
|
2310
|
+
if payload is not None:
|
|
2311
|
+
_body_params = payload
|
|
2312
|
+
|
|
2313
|
+
|
|
2314
|
+
# set the HTTP header `Accept`
|
|
2315
|
+
if 'Accept' not in _header_params:
|
|
2316
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2317
|
+
[
|
|
2318
|
+
'application/json'
|
|
2319
|
+
]
|
|
2320
|
+
)
|
|
2321
|
+
|
|
2322
|
+
# set the HTTP header `Content-Type`
|
|
2323
|
+
if _content_type:
|
|
2324
|
+
_header_params['Content-Type'] = _content_type
|
|
2325
|
+
else:
|
|
2326
|
+
_default_content_type = (
|
|
2327
|
+
self.api_client.select_header_content_type(
|
|
2328
|
+
[
|
|
2329
|
+
'application/json'
|
|
2330
|
+
]
|
|
2331
|
+
)
|
|
2332
|
+
)
|
|
2333
|
+
if _default_content_type is not None:
|
|
2334
|
+
_header_params['Content-Type'] = _default_content_type
|
|
2335
|
+
|
|
2336
|
+
# authentication setting
|
|
2337
|
+
_auth_settings: List[str] = [
|
|
2338
|
+
'apiKey'
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
return self.api_client.param_serialize(
|
|
2342
|
+
method='POST',
|
|
2343
|
+
resource_path='/core/clusters/{cluster_id}/nodes/delete',
|
|
2344
|
+
path_params=_path_params,
|
|
2345
|
+
query_params=_query_params,
|
|
2346
|
+
header_params=_header_params,
|
|
2347
|
+
body=_body_params,
|
|
2348
|
+
post_params=_form_params,
|
|
2349
|
+
files=_files,
|
|
2350
|
+
auth_settings=_auth_settings,
|
|
2351
|
+
collection_formats=_collection_formats,
|
|
2352
|
+
_host=_host,
|
|
2353
|
+
_request_auth=_request_auth
|
|
2354
|
+
)
|
|
2355
|
+
|
|
2356
|
+
|
|
2357
|
+
|
|
2358
|
+
|
|
2060
2359
|
@validate_call
|
|
2061
2360
|
def fetch_cluster_name_availability(
|
|
2062
2361
|
self,
|
hyperstack-1.43.0a0/hyperstack/api/admin_api.py → hyperstack-1.45.2a0/hyperstack/api/vouchers_api.py
RENAMED
|
@@ -16,14 +16,15 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
|
16
16
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
17
|
from typing_extensions import Annotated
|
|
18
18
|
|
|
19
|
-
from ..models.
|
|
19
|
+
from ..models.redeem_voucher_payload import RedeemVoucherPayload
|
|
20
|
+
from ..models.voucher_redeem_response_schema import VoucherRedeemResponseSchema
|
|
20
21
|
|
|
21
22
|
from ..api_client import ApiClient, RequestSerialized
|
|
22
23
|
from ..api_response import ApiResponse
|
|
23
24
|
from ..rest import RESTResponseType
|
|
24
25
|
|
|
25
26
|
|
|
26
|
-
class
|
|
27
|
+
class VouchersApi:
|
|
27
28
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
28
29
|
Ref: https://openapi-generator.tech
|
|
29
30
|
|
|
@@ -37,8 +38,9 @@ class AdminApi:
|
|
|
37
38
|
|
|
38
39
|
|
|
39
40
|
@validate_call
|
|
40
|
-
def
|
|
41
|
+
def redeem_a_voucher(
|
|
41
42
|
self,
|
|
43
|
+
payload: RedeemVoucherPayload,
|
|
42
44
|
_request_timeout: Union[
|
|
43
45
|
None,
|
|
44
46
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -51,11 +53,13 @@ class AdminApi:
|
|
|
51
53
|
_content_type: Optional[StrictStr] = None,
|
|
52
54
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
53
55
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
54
|
-
) ->
|
|
55
|
-
"""
|
|
56
|
+
) -> VoucherRedeemResponseSchema:
|
|
57
|
+
"""Redeem a voucher with a voucher_code
|
|
56
58
|
|
|
57
|
-
|
|
59
|
+
Request to redeem a voucher with a voucher code.
|
|
58
60
|
|
|
61
|
+
:param payload: (required)
|
|
62
|
+
:type payload: RedeemVoucherPayload
|
|
59
63
|
:param _request_timeout: timeout setting for this request. If one
|
|
60
64
|
number provided, it will be total request
|
|
61
65
|
timeout. It can also be a pair (tuple) of
|
|
@@ -78,7 +82,8 @@ class AdminApi:
|
|
|
78
82
|
:return: Returns the result object.
|
|
79
83
|
""" # noqa: E501
|
|
80
84
|
|
|
81
|
-
_param = self.
|
|
85
|
+
_param = self._redeem_a_voucher_serialize(
|
|
86
|
+
payload=payload,
|
|
82
87
|
_request_auth=_request_auth,
|
|
83
88
|
_content_type=_content_type,
|
|
84
89
|
_headers=_headers,
|
|
@@ -86,12 +91,12 @@ class AdminApi:
|
|
|
86
91
|
)
|
|
87
92
|
|
|
88
93
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
89
|
-
'200': "
|
|
94
|
+
'200': "VoucherRedeemResponseSchema",
|
|
90
95
|
'400': "ErrorResponseModel",
|
|
91
96
|
'401': "ErrorResponseModel",
|
|
97
|
+
'403': "ErrorResponseModel",
|
|
92
98
|
'404': "ErrorResponseModel",
|
|
93
|
-
'
|
|
94
|
-
'500': "ErrorResponseModel",
|
|
99
|
+
'500': None,
|
|
95
100
|
}
|
|
96
101
|
response_data = self.api_client.call_api(
|
|
97
102
|
*_param,
|
|
@@ -105,8 +110,9 @@ class AdminApi:
|
|
|
105
110
|
|
|
106
111
|
|
|
107
112
|
@validate_call
|
|
108
|
-
def
|
|
113
|
+
def redeem_a_voucher_with_http_info(
|
|
109
114
|
self,
|
|
115
|
+
payload: RedeemVoucherPayload,
|
|
110
116
|
_request_timeout: Union[
|
|
111
117
|
None,
|
|
112
118
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -119,11 +125,13 @@ class AdminApi:
|
|
|
119
125
|
_content_type: Optional[StrictStr] = None,
|
|
120
126
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
121
127
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
122
|
-
) -> ApiResponse[
|
|
123
|
-
"""
|
|
128
|
+
) -> ApiResponse[VoucherRedeemResponseSchema]:
|
|
129
|
+
"""Redeem a voucher with a voucher_code
|
|
124
130
|
|
|
125
|
-
|
|
131
|
+
Request to redeem a voucher with a voucher code.
|
|
126
132
|
|
|
133
|
+
:param payload: (required)
|
|
134
|
+
:type payload: RedeemVoucherPayload
|
|
127
135
|
:param _request_timeout: timeout setting for this request. If one
|
|
128
136
|
number provided, it will be total request
|
|
129
137
|
timeout. It can also be a pair (tuple) of
|
|
@@ -146,7 +154,8 @@ class AdminApi:
|
|
|
146
154
|
:return: Returns the result object.
|
|
147
155
|
""" # noqa: E501
|
|
148
156
|
|
|
149
|
-
_param = self.
|
|
157
|
+
_param = self._redeem_a_voucher_serialize(
|
|
158
|
+
payload=payload,
|
|
150
159
|
_request_auth=_request_auth,
|
|
151
160
|
_content_type=_content_type,
|
|
152
161
|
_headers=_headers,
|
|
@@ -154,12 +163,12 @@ class AdminApi:
|
|
|
154
163
|
)
|
|
155
164
|
|
|
156
165
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
157
|
-
'200': "
|
|
166
|
+
'200': "VoucherRedeemResponseSchema",
|
|
158
167
|
'400': "ErrorResponseModel",
|
|
159
168
|
'401': "ErrorResponseModel",
|
|
169
|
+
'403': "ErrorResponseModel",
|
|
160
170
|
'404': "ErrorResponseModel",
|
|
161
|
-
'
|
|
162
|
-
'500': "ErrorResponseModel",
|
|
171
|
+
'500': None,
|
|
163
172
|
}
|
|
164
173
|
response_data = self.api_client.call_api(
|
|
165
174
|
*_param,
|
|
@@ -173,8 +182,9 @@ class AdminApi:
|
|
|
173
182
|
|
|
174
183
|
|
|
175
184
|
@validate_call
|
|
176
|
-
def
|
|
185
|
+
def redeem_a_voucher_without_preload_content(
|
|
177
186
|
self,
|
|
187
|
+
payload: RedeemVoucherPayload,
|
|
178
188
|
_request_timeout: Union[
|
|
179
189
|
None,
|
|
180
190
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -188,10 +198,12 @@ class AdminApi:
|
|
|
188
198
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
189
199
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
190
200
|
) -> RESTResponseType:
|
|
191
|
-
"""
|
|
201
|
+
"""Redeem a voucher with a voucher_code
|
|
192
202
|
|
|
193
|
-
|
|
203
|
+
Request to redeem a voucher with a voucher code.
|
|
194
204
|
|
|
205
|
+
:param payload: (required)
|
|
206
|
+
:type payload: RedeemVoucherPayload
|
|
195
207
|
:param _request_timeout: timeout setting for this request. If one
|
|
196
208
|
number provided, it will be total request
|
|
197
209
|
timeout. It can also be a pair (tuple) of
|
|
@@ -214,7 +226,8 @@ class AdminApi:
|
|
|
214
226
|
:return: Returns the result object.
|
|
215
227
|
""" # noqa: E501
|
|
216
228
|
|
|
217
|
-
_param = self.
|
|
229
|
+
_param = self._redeem_a_voucher_serialize(
|
|
230
|
+
payload=payload,
|
|
218
231
|
_request_auth=_request_auth,
|
|
219
232
|
_content_type=_content_type,
|
|
220
233
|
_headers=_headers,
|
|
@@ -222,12 +235,12 @@ class AdminApi:
|
|
|
222
235
|
)
|
|
223
236
|
|
|
224
237
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
225
|
-
'200': "
|
|
238
|
+
'200': "VoucherRedeemResponseSchema",
|
|
226
239
|
'400': "ErrorResponseModel",
|
|
227
240
|
'401': "ErrorResponseModel",
|
|
241
|
+
'403': "ErrorResponseModel",
|
|
228
242
|
'404': "ErrorResponseModel",
|
|
229
|
-
'
|
|
230
|
-
'500': "ErrorResponseModel",
|
|
243
|
+
'500': None,
|
|
231
244
|
}
|
|
232
245
|
response_data = self.api_client.call_api(
|
|
233
246
|
*_param,
|
|
@@ -236,8 +249,9 @@ class AdminApi:
|
|
|
236
249
|
return response_data.response
|
|
237
250
|
|
|
238
251
|
|
|
239
|
-
def
|
|
252
|
+
def _redeem_a_voucher_serialize(
|
|
240
253
|
self,
|
|
254
|
+
payload,
|
|
241
255
|
_request_auth,
|
|
242
256
|
_content_type,
|
|
243
257
|
_headers,
|
|
@@ -263,6 +277,8 @@ class AdminApi:
|
|
|
263
277
|
# process the header parameters
|
|
264
278
|
# process the form parameters
|
|
265
279
|
# process the body parameter
|
|
280
|
+
if payload is not None:
|
|
281
|
+
_body_params = payload
|
|
266
282
|
|
|
267
283
|
|
|
268
284
|
# set the HTTP header `Accept`
|
|
@@ -273,6 +289,19 @@ class AdminApi:
|
|
|
273
289
|
]
|
|
274
290
|
)
|
|
275
291
|
|
|
292
|
+
# set the HTTP header `Content-Type`
|
|
293
|
+
if _content_type:
|
|
294
|
+
_header_params['Content-Type'] = _content_type
|
|
295
|
+
else:
|
|
296
|
+
_default_content_type = (
|
|
297
|
+
self.api_client.select_header_content_type(
|
|
298
|
+
[
|
|
299
|
+
'application/json'
|
|
300
|
+
]
|
|
301
|
+
)
|
|
302
|
+
)
|
|
303
|
+
if _default_content_type is not None:
|
|
304
|
+
_header_params['Content-Type'] = _default_content_type
|
|
276
305
|
|
|
277
306
|
# authentication setting
|
|
278
307
|
_auth_settings: List[str] = [
|
|
@@ -281,7 +310,7 @@ class AdminApi:
|
|
|
281
310
|
|
|
282
311
|
return self.api_client.param_serialize(
|
|
283
312
|
method='POST',
|
|
284
|
-
resource_path='/
|
|
313
|
+
resource_path='/billing/billing/vouchers/redeem',
|
|
285
314
|
path_params=_path_params,
|
|
286
315
|
query_params=_query_params,
|
|
287
316
|
header_params=_header_params,
|
|
@@ -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.45.2-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.45.2-alpha".\
|
|
528
528
|
format(env=sys.platform, pyversion=sys.version)
|
|
529
529
|
|
|
530
530
|
def get_host_settings(self) -> List[HostSetting]:
|