hyperstack 1.45.2a0__tar.gz → 1.46.1a0__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.45.2a0 → hyperstack-1.46.1a0}/PKG-INFO +1 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/README.md +117 -116
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/__init__.py +2 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/__init__.py +1 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/alive_api.py +10 -10
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/api_key_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/auth_api.py +69 -69
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/beta_access_api.py +50 -50
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/billing_api.py +1659 -1659
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/calculate_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/callbacks_api.py +21 -21
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/cluster_events_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/clusters_api.py +445 -445
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/compliance_api.py +21 -21
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/credit_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/customer_contract_api.py +139 -139
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/dashboard_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/deployment_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/environment_api.py +107 -107
- hyperstack-1.46.1a0/hyperstack/api/fip_exclusions_api.py +313 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/firewall_attachment_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/firewalls_api.py +145 -145
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/floating_ip_api.py +14 -14
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/image_api.py +14 -14
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/payment_api.py +102 -102
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/profile_api.py +56 -56
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/snapshot_events_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/snapshots_api.py +167 -167
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/stock_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/template_api.py +76 -76
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/user_api.py +76 -76
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/user_detail_choice_api.py +10 -10
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/virtual_machine_api.py +799 -782
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/virtual_machine_events_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/vnc_url_api.py +53 -53
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/volume_api.py +77 -77
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/volume_attachment_api.py +21 -21
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api_client.py +1 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/configuration.py +1 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack.egg-info/PKG-INFO +1 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack.egg-info/SOURCES.txt +2 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/pyproject.toml +1 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/setup.py +1 -1
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_alive_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_api_key_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_auth_api.py +7 -7
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_beta_access_api.py +8 -8
- hyperstack-1.46.1a0/test/test_billing_api.py +287 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_calculate_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_callbacks_api.py +6 -6
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_events_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_clusters_api.py +21 -21
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_compliance_api.py +6 -6
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_credit_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_customer_contract_api.py +9 -9
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_dashboard_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_deployment_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_environment_api.py +6 -6
- hyperstack-1.46.1a0/test/test_fip_exclusions_api.py +37 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_attachment_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewalls_api.py +12 -12
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_floating_ip_api.py +4 -4
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_image_api.py +4 -4
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_payment_api.py +9 -9
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_profile_api.py +6 -6
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshot_events_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshots_api.py +13 -13
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_stock_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_template_api.py +6 -6
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_api.py +8 -8
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_detail_choice_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_virtual_machine_api.py +60 -60
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_virtual_machine_events_api.py +2 -2
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_vnc_url_api.py +6 -6
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_api.py +6 -6
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_attachment_api.py +6 -6
- hyperstack-1.45.2a0/test/test_billing_api.py +0 -287
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/assigning_member_role_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/flavor_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/gpu_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/invite_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/keypair_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/organization_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/partner_config_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/permission_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/policy_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/pricebook_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/rbac_role_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/region_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/security_rules_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/user_permission_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api/vouchers_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/api_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/exceptions.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/__init__.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/access_token_field.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/add_user_info_success_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/api_key_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/assign_rbac_role_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_callback_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_callback_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_firewall_with_vm.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_volume_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_volumes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attach_volumes_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attachments_fields_for_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/auth_get_token_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/auth_user_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/auth_user_info_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/beta_access_request_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/beta_access_request_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/beta_access_request_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/beta_access_status_item.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/beta_access_status_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_history.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_history_fine_tuning.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_history_serverless_inference.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_metrices_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/billing_metrices_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_events.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_events_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_flavor_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_node_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_node_group_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_node_instance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_nodes_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_version.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/cluster_versions.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/colors.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/common_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/compliance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/compliance_model_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/compliance_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/compliance_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/container_overview_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/contract.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/contract_discount_plan_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/contract_instance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/contract_instances_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_cluster_node_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_cluster_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_environment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_firewall_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_firewall_rule_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_image.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_image_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_instances_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_instances_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_profile_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_profile_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_security_rule_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_snapshot_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_snapshot_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_update_compliance_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/create_volume_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/customer_contract_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/dashboard_info_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/delete_cluster_nodes_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/deployment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/deployments.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/detach_volumes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/detach_volumes_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/environment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/environment_features.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/environment_fields_for_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/environments.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/error_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_attachment_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_detail_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_detail_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewall_rule.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/firewalls_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/flavor_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/flavor_item_get_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/flavor_label_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/flavor_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/flavor_object_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/generate_update_api_key_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_api_keys_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_instance_logs_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_invites_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_organization_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_permissions_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_policies_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/get_user_permissions_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/gpu_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/gpu_list.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/gpu_region_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/graph_datetime_value_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/image.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/image_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/image_get_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/images.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/import_keypair_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/import_keypair_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_events.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_events_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_flavor_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_image_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_keypair_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_overview_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instance_resize_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/instances.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/invite_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/invite_user_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/invite_user_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/keypair_environment_features.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/keypair_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/keypair_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/keypairs.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/lable_resonse.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/last_day_cost_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/last_day_cost_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/logos.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/manual_reconciliation_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/master_flavors_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/metric_item_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/metrics_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/mfa_status_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/mfa_status_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/name_available_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/new_configurations_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/new_model_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/new_stock_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/new_stock_retrive_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_level_billing_history.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_threshold_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_threshold_update_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_thresholds_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/organization_user_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/overview_info.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/pagination.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/pagination_data.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/partner_config.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/payment_details_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/payment_details_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/payment_initiate_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/payment_initiate_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/payment_initiate_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/policy_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/policy_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/pricebook_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/primary_color.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/profile_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/profile_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/profile_object_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/rbac_role_field.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/rbac_role_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/redeem_voucher_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/region_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/regions.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/remove_member_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/request_console.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/request_instance_logs_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/request_instance_logs_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_billing_events_history_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_history.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/resource_object_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/role_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/role_policy_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/secondary_color.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/security_group_rule.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/security_group_rule_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/security_rules_protocol_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/snapshot_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/snapshot_restore_request.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/snapshot_retrieve.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/snapshots.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/start_deployment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/start_deployment_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/template.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/template_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/templates.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/token_based_billing_history_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_environment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_keypair_name.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_keypair_name_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_organization_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_organization_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_template.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_volume_attachment_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_volume_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/update_volume_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/uris.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/user_info_post_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/user_organizations_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/user_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/users_info_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/users_info_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/vncurl.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/vncurl_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volume_attachment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volume_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volume_fields_for_instance.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volume_overview_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volume_types.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volumes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/volumes_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/voucher.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/voucher_redeem_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/models/workload_billing_history_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/py.typed +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack/rest.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack.egg-info/dependency_links.txt +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack.egg-info/requires.txt +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/hyperstack.egg-info/top_level.txt +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/setup.cfg +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_access_token_field.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_add_user_info_success_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_allocated_gpu_count_graph.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_api_key_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_assign_rbac_role_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_assigning_member_role_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_callback_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_callback_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_firewall_with_vm.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_firewalls_to_vm_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_volume_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_volumes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attach_volumes_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attachments_fields_for_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_auth_get_token_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_auth_user_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_auth_user_info_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_beta_access_request_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_beta_access_request_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_beta_access_request_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_beta_access_status_item.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_beta_access_status_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_history.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_history_data_synthesis_details.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_history_fine_tuning.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_history_model_evalutation_details.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_history_serverless_inference.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_history_serverless_inference_details.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_metrices_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_billing_metrices_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_events.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_events_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_flavor_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_node_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_node_group_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_node_groups_create_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_node_groups_get_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_node_groups_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_node_instance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_nodes_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_version.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_cluster_versions.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_colors.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_common_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_compliance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_compliance_model_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_compliance_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_compliance_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_container_overview_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_contract.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_contract_discount_plan_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_contract_gpu_allocation_graph_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_contract_instance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_contract_instances_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_cluster_node_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_cluster_node_group_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_cluster_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_environment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_firewall_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_firewall_rule_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_image.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_image_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_instances_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_instances_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_profile_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_profile_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_security_rule_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_snapshot_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_snapshot_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_update_compliance_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_update_rbac_role_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_create_volume_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_customer_contract_detail_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_customer_contract_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_dashboard_info_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_data_synthesis_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_delete_cluster_nodes_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_deployment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_deployment_fields_for_start_deployments.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_deployments.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_detach_volumes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_detach_volumes_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_edit_label_of_an_existing_vm_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_environment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_environment_features.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_environment_fields_for_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_environments.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_error_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_attachment_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_attachment_vm_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_detail_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_detail_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewall_rule.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_firewalls_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_flavor_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_flavor_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_flavor_item_get_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_flavor_label_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_flavor_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_flavor_object_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_generate_update_api_key_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_generate_update_api_key_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_api_keys_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_credit_and_threshold_info.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_credit_and_threshold_info_in_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_customer_contracts_list_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_instance_logs_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_invites_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_organization_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_permissions_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_policies_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_rbac_roles_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_get_user_permissions_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_gpu_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_gpu_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_gpu_list.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_gpu_region_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_graph_datetime_value_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_image.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_image_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_image_get_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_images.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_import_keypair_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_import_keypair_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_infrahub_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_events.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_events_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_flavor_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_image_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_keypair_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_overview_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instance_resize_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_instances.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_invite_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_invite_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_invite_user_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_invite_user_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_keypair_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_keypair_environment_features.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_keypair_environment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_keypair_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_keypairs.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_lable_resonse.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_last_day_cost_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_last_day_cost_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_logos.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_manual_reconciliation_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_master_flavors_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_metric_item_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_metrics_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_mfa_status_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_mfa_status_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_model_evaluation_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_name_available_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_new_configurations_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_new_model_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_new_stock_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_new_stock_retrive_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_level_billing_history.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_level_billing_history_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_level_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_threshold_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_threshold_update_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_thresholds_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_organization_user_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_overview_info.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_pagination.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_pagination_data.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_partner_config.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_partner_config_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_payment_details_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_payment_details_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_payment_initiate_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_payment_initiate_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_payment_initiate_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_permission_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_policy_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_policy_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_policy_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_pricebook_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_pricebook_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_pricebook_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_primary_color.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_profile_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_profile_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_profile_object_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_rbac_role_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_rbac_role_detail_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_rbac_role_detail_response_model_fixed.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_rbac_role_field.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_rbac_role_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_redeem_voucher_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_region_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_region_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_regions.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_remove_member_from_organization_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_remove_member_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_request_console.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_request_instance_logs_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_request_instance_logs_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_billing_events_history_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_billing_events_history_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_billing_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_bucket_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_details_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_details_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_details_vm.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_details_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_details_volume_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_details_volume_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_history.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_history_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_history_resources_cluster.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_history_response_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_history_response_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_vm_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_billing_volume_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_bucket_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_bucket_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_cluster_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_cluster_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_cluster_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_detail_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_details_attributes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_details_bucket.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_details_vm.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_vm_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_graph_billing_volume_details_resources.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_vm_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_vm_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_vm_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_volume_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_volume_billing_history_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_level_volume_graph_billing_details_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_resource_object_response_for_customer.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_role_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_role_policy_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_secondary_color.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_security_group_rule.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_security_group_rule_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_security_rules_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_security_rules_fields_for_instance.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_security_rules_protocol_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_serverless_inferenced_billing_history_details_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshot_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshot_restore_request.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshot_retrieve.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshot_retrieve_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_snapshots.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_start_deployment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_start_deployment_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_sub_resource_graph_billing_details_metrics.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_sub_resources_costs_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_sub_resources_graph_billing_history_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_sub_resources_graph_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_subscribe_or_unsubscribe_update_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_template.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_template_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_templates.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_token_based_billing_history_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_cluster_node_group_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_environment.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_keypair_name.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_keypair_name_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_organization_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_organization_response_model.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_template.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_volume_attachment_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_volume_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_update_volume_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_uris.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_default_choice_for_user_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_default_choices_for_user_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_info_post_payload.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_organizations_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_permission_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_user_permission_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_users_info_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_users_info_list_response.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_vncurl.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_vncurl_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_attachment_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_fields_for_instance.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_overview_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volume_types.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volumes.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_volumes_fields.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_voucher.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_voucher_redeem_response_schema.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/test/test_vouchers_api.py +0 -0
- {hyperstack-1.45.2a0 → hyperstack-1.46.1a0}/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.46.1-alpha
|
|
12
12
|
- Generator version: 7.10.0
|
|
13
13
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
14
14
|
|
|
@@ -86,11 +86,11 @@ with hyperstack.ApiClient(configuration) as api_client:
|
|
|
86
86
|
|
|
87
87
|
try:
|
|
88
88
|
# Retrieve Billing Rate for Resource
|
|
89
|
-
api_response = api_instance.
|
|
90
|
-
print("The response of CalculateApi->
|
|
89
|
+
api_response = api_instance.calculate_resource_billing_rate(resource_type, id)
|
|
90
|
+
print("The response of CalculateApi->calculate_resource_billing_rate:\n")
|
|
91
91
|
pprint(api_response)
|
|
92
92
|
except ApiException as e:
|
|
93
|
-
print("Exception when calling CalculateApi->
|
|
93
|
+
print("Exception when calling CalculateApi->calculate_resource_billing_rate: %s\n" % e)
|
|
94
94
|
|
|
95
95
|
```
|
|
96
96
|
|
|
@@ -100,125 +100,126 @@ All URIs are relative to *https://infrahub-api.nexgencloud.com/v1*
|
|
|
100
100
|
|
|
101
101
|
Class | Method | HTTP request | Description
|
|
102
102
|
------------ | ------------- | ------------- | -------------
|
|
103
|
-
*CalculateApi* | [**
|
|
104
|
-
*CustomerContractApi* | [**
|
|
105
|
-
*CustomerContractApi* | [**
|
|
106
|
-
*CustomerContractApi* | [**
|
|
103
|
+
*CalculateApi* | [**calculate_resource_billing_rate**](docs/CalculateApi.md#calculate_resource_billing_rate) | **GET** /pricebook/calculate/resource/{resource_type}/{id} | Retrieve Billing Rate for Resource
|
|
104
|
+
*CustomerContractApi* | [**get_contract_gpu_allocation_graph**](docs/CustomerContractApi.md#get_contract_gpu_allocation_graph) | **GET** /pricebook/contracts/{contract_id}/gpu_allocation_graph | Retrieve GPU Allocation Graph for Contract
|
|
105
|
+
*CustomerContractApi* | [**list_customer_contracts**](docs/CustomerContractApi.md#list_customer_contracts) | **GET** /pricebook/contracts | List Contracts
|
|
106
|
+
*CustomerContractApi* | [**retrieve_contract**](docs/CustomerContractApi.md#retrieve_contract) | **GET** /pricebook/contracts/{contract_id} | Retrieve Contract Details
|
|
107
|
+
*FIPExclusionsApi* | [**check_if_org_is_excluded_from_floating_ip_detachment**](docs/FIPExclusionsApi.md#check_if_org_is_excluded_from_floating_ip_detachment) | **GET** /core/fip-detachment-exclusions/org/{org_id} |
|
|
107
108
|
*PricebookApi* | [**get_pricebook**](docs/PricebookApi.md#get_pricebook) | **GET** /pricebook |
|
|
108
|
-
*SnapshotsApi* | [**
|
|
109
|
-
*SnapshotsApi* | [**
|
|
109
|
+
*SnapshotsApi* | [**create_custom_image**](docs/SnapshotsApi.md#create_custom_image) | **POST** /core/snapshots/{snapshot_id}/image | Create an image from a snapshot
|
|
110
|
+
*SnapshotsApi* | [**delete_snapshot**](docs/SnapshotsApi.md#delete_snapshot) | **DELETE** /core/snapshots/{id} | Delete snapshot
|
|
110
111
|
*SnapshotsApi* | [**fetch_snapshot_name_availability**](docs/SnapshotsApi.md#fetch_snapshot_name_availability) | **GET** /core/snapshots/name-availability/{name} | Fetch snapshot name availability
|
|
111
|
-
*SnapshotsApi* | [**
|
|
112
|
-
*SnapshotsApi* | [**
|
|
113
|
-
*SnapshotsApi* | [**
|
|
112
|
+
*SnapshotsApi* | [**get_snapshot**](docs/SnapshotsApi.md#get_snapshot) | **GET** /core/snapshots/{id} | Retrieve a snapshot
|
|
113
|
+
*SnapshotsApi* | [**list_snapshots**](docs/SnapshotsApi.md#list_snapshots) | **GET** /core/snapshots | Retrieve list of snapshots with pagination
|
|
114
|
+
*SnapshotsApi* | [**restore_snapshot**](docs/SnapshotsApi.md#restore_snapshot) | **POST** /core/snapshots/{id}/restore | Restore a snapshot
|
|
114
115
|
*AliveApi* | [**get_alive**](docs/AliveApi.md#get_alive) | **GET** /billing/alive | GET: Alive
|
|
115
|
-
*AliveApi* | [**
|
|
116
|
+
*AliveApi* | [**get_alive_doc**](docs/AliveApi.md#get_alive_doc) | **GET** /billing/alive/doc |
|
|
116
117
|
*ApiKeyApi* | [**delete_api_key**](docs/ApiKeyApi.md#delete_api_key) | **DELETE** /api-key/{api_key_id} | Delete API Key
|
|
117
118
|
*ApiKeyApi* | [**generate_api_key**](docs/ApiKeyApi.md#generate_api_key) | **POST** /api-key/generate | Generate API Key
|
|
118
|
-
*ApiKeyApi* | [**
|
|
119
|
+
*ApiKeyApi* | [**get_api_key**](docs/ApiKeyApi.md#get_api_key) | **GET** /api-key | Retrieve API Keys
|
|
119
120
|
*ApiKeyApi* | [**update_api_key**](docs/ApiKeyApi.md#update_api_key) | **PUT** /api-key/{api_key_id} | Update API Key
|
|
120
121
|
*AssigningMemberRoleApi* | [**assign_rbac_role_to_user**](docs/AssigningMemberRoleApi.md#assign_rbac_role_to_user) | **PUT** /auth/users/{user_id}/assign-roles | Assign RBAC Role
|
|
121
122
|
*AssigningMemberRoleApi* | [**remove_rbac_role_from_user**](docs/AssigningMemberRoleApi.md#remove_rbac_role_from_user) | **DELETE** /auth/users/{user_id}/roles | Remove RBAC Role From User
|
|
122
123
|
*AuthApi* | [**change_organization_for_token**](docs/AuthApi.md#change_organization_for_token) | **GET** /auth/token/change-org/{org_id} |
|
|
123
124
|
*AuthApi* | [**disable_mfa**](docs/AuthApi.md#disable_mfa) | **GET** /auth/me/mfa/disable |
|
|
125
|
+
*AuthApi* | [**get_authenticated_user**](docs/AuthApi.md#get_authenticated_user) | **GET** /auth/me | Retrieve Authenticated User Details
|
|
124
126
|
*AuthApi* | [**get_user_mfa_status**](docs/AuthApi.md#get_user_mfa_status) | **GET** /auth/me/mfa | Get MFA status for authenticated user
|
|
125
127
|
*AuthApi* | [**get_user_organizations**](docs/AuthApi.md#get_user_organizations) | **GET** /auth/me/organizations | Get User Organizations
|
|
126
|
-
*
|
|
127
|
-
*BetaAccessApi* | [**
|
|
128
|
+
*BetaAccessApi* | [**create_beta_access_request**](docs/BetaAccessApi.md#create_beta_access_request) | **POST** /auth/beta-access/requests | Create a new beta access request
|
|
129
|
+
*BetaAccessApi* | [**get_beta_access_requests**](docs/BetaAccessApi.md#get_beta_access_requests) | **GET** /auth/beta-access/requests/{program} | Check the status of beta access requests
|
|
128
130
|
*BetaAccessApi* | [**get_beta_access_status**](docs/BetaAccessApi.md#get_beta_access_status) | **GET** /auth/beta-access/requests | Check the status of all beta access requests
|
|
129
|
-
*
|
|
131
|
+
*BillingApi* | [**buckets_billing_history_hourly_chart**](docs/BillingApi.md#buckets_billing_history_hourly_chart) | **GET** /billing/billing/history/bucket/{bucket_id}/graph | Retrieve hourly cost datapoints of a Specific Bucket for a specific billing cycle
|
|
132
|
+
*BillingApi* | [**get_bucket_billing_history**](docs/BillingApi.md#get_bucket_billing_history) | **GET** /billing/billing/history/bucket/{bucket_id} | Retrieve Billing History of a Specific Snapshot for a specific Billing Cycle
|
|
133
|
+
*BillingApi* | [**get_cluster_billing_history**](docs/BillingApi.md#get_cluster_billing_history) | **GET** /billing/billing/history/cluster/{cluster_id} | Retrieve Billing History of a Specific Cluster for a specific Billing Cycle
|
|
134
|
+
*BillingApi* | [**get_cluster_billing_history_graph**](docs/BillingApi.md#get_cluster_billing_history_graph) | **GET** /billing/billing/history/cluster/{cluster_id}/graph | Retrieve hourly cost datapoints of a specific Cluster for a specific billing cycle
|
|
135
|
+
*BillingApi* | [**get_data_synthesis_billing_history**](docs/BillingApi.md#get_data_synthesis_billing_history) | **GET** /billing/billing/history/data_synthesis | Retrieve Billing History of data synthesis for a specific Billing Cycle
|
|
136
|
+
*BillingApi* | [**get_data_synthesis_billing_history_graph**](docs/BillingApi.md#get_data_synthesis_billing_history_graph) | **GET** /billing/billing/history/data_synthesis/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Data Synthesis for a specific
|
|
137
|
+
*BillingApi* | [**get_data_synthesis_history_for_resource**](docs/BillingApi.md#get_data_synthesis_history_for_resource) | **GET** /billing/billing/history/data_synthesis/{resource_id} |
|
|
138
|
+
*BillingApi* | [**get_fine_tuning_billing_history**](docs/BillingApi.md#get_fine_tuning_billing_history) | **GET** /billing/billing/history/fine_tuning | Retrieve Billing History of model evaluation for a specific Billing Cycle
|
|
139
|
+
*BillingApi* | [**get_fine_tuning_billing_history_graph**](docs/BillingApi.md#get_fine_tuning_billing_history_graph) | **GET** /billing/billing/history/fine_tuning/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Fine Tuning for a specific billing cycle
|
|
130
140
|
*BillingApi* | [**get_last_day_cost**](docs/BillingApi.md#get_last_day_cost) | **GET** /billing/billing/last-day-cost | GET: Last Day Cost
|
|
131
|
-
*BillingApi* | [**
|
|
132
|
-
*BillingApi* | [**
|
|
133
|
-
*BillingApi* | [**
|
|
134
|
-
*BillingApi* | [**
|
|
135
|
-
*BillingApi* | [**
|
|
136
|
-
*BillingApi* | [**
|
|
137
|
-
*BillingApi* | [**
|
|
138
|
-
*BillingApi* | [**
|
|
139
|
-
*BillingApi* | [**
|
|
140
|
-
*BillingApi* | [**
|
|
141
|
-
*BillingApi* | [**
|
|
142
|
-
*BillingApi* | [**
|
|
143
|
-
*BillingApi* | [**
|
|
144
|
-
*BillingApi* | [**
|
|
145
|
-
*BillingApi* | [**
|
|
146
|
-
*BillingApi* | [**
|
|
147
|
-
*BillingApi* | [**
|
|
148
|
-
*BillingApi* | [**
|
|
149
|
-
*BillingApi* | [**
|
|
150
|
-
*BillingApi* | [**
|
|
151
|
-
*BillingApi* | [**
|
|
152
|
-
*BillingApi* | [**
|
|
153
|
-
*BillingApi* | [**
|
|
154
|
-
*BillingApi* | [**
|
|
155
|
-
*BillingApi* | [**
|
|
156
|
-
*BillingApi* | [**
|
|
157
|
-
*BillingApi* | [**
|
|
158
|
-
*
|
|
159
|
-
*BillingApi* | [**get_user_billing_model_evaluation_details_graph**](docs/BillingApi.md#get_user_billing_model_evaluation_details_graph) | **GET** /billing/billing/history/model_evaluation/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Model Evaluation for a specific
|
|
160
|
-
*BillingApi* | [**get_user_billing_serverless_inference_details_graph**](docs/BillingApi.md#get_user_billing_serverless_inference_details_graph) | **GET** /billing/billing/history/serverless_inference/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Serverless Inference for a specific
|
|
161
|
-
*BillingApi* | [**get_user_billing_snapshot_details_graph**](docs/BillingApi.md#get_user_billing_snapshot_details_graph) | **GET** /billing/billing/history/snapshot/{snapshot_id}/graph | Retrieve hourly cost datapoints of a Specific Snapshot for a specific billing cycle
|
|
162
|
-
*BillingApi* | [**get_user_billing_vm_details_graph2**](docs/BillingApi.md#get_user_billing_vm_details_graph2) | **GET** /billing/billing/history/virtual-machine/{vm_id}/graph | Retrieve hourly cost datapoints of a Specific Virtual Machine for a specific billing cycle
|
|
163
|
-
*BillingApi* | [**get_user_billing_volume_details_graph**](docs/BillingApi.md#get_user_billing_volume_details_graph) | **GET** /billing/billing/history/volume/{volume_id}/graph | Retrieve hourly cost datapoints of a Specific Volume for a specific billing cycle
|
|
164
|
-
*BillingApi* | [**get_user_vm_billing_events**](docs/BillingApi.md#get_user_vm_billing_events) | **GET** /billing/billing/virtual-machine/{vm_id}/billing-events | Retrieve VM billing events history
|
|
165
|
-
*BillingApi* | [**get_user_volume_billing_events**](docs/BillingApi.md#get_user_volume_billing_events) | **GET** /billing/billing/volume/{volume_id}/billing-events | Retrieve Volume billing events history
|
|
166
|
-
*BillingApi* | [**put_organization_threshold**](docs/BillingApi.md#put_organization_threshold) | **PUT** /billing/billing/threshold/{threshold_id} | Update: Subscribe or Unsubscribe Notification Threshold
|
|
167
|
-
*CallbacksApi* | [**attach_callback_to_virtual_machine**](docs/CallbacksApi.md#attach_callback_to_virtual_machine) | **POST** /core/virtual-machines/{vm_id}/attach-callback | Attach callback to virtual machine
|
|
141
|
+
*BillingApi* | [**get_model_evaluation_billing_history**](docs/BillingApi.md#get_model_evaluation_billing_history) | **GET** /billing/billing/history/model_evaluation | Retrieve Billing History of model evaluation for a specific Billing Cycle
|
|
142
|
+
*BillingApi* | [**get_model_evaluation_billing_history_graph**](docs/BillingApi.md#get_model_evaluation_billing_history_graph) | **GET** /billing/billing/history/model_evaluation/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Model Evaluation for a specific
|
|
143
|
+
*BillingApi* | [**get_notification_threshold**](docs/BillingApi.md#get_notification_threshold) | **PUT** /billing/billing/threshold/{threshold_id} | Update: Subscribe or Unsubscribe Notification Threshold
|
|
144
|
+
*BillingApi* | [**get_resource_fine_tuning_billing_history**](docs/BillingApi.md#get_resource_fine_tuning_billing_history) | **GET** /billing/billing/history/fine_tuning/{resource_id} | Retrieve Billing History of a Specific Fine Tuning for a specific Billing Cycle
|
|
145
|
+
*BillingApi* | [**get_resource_model_evaluation_billing_history**](docs/BillingApi.md#get_resource_model_evaluation_billing_history) | **GET** /billing/billing/history/model_evaluation/{resource_id} |
|
|
146
|
+
*BillingApi* | [**get_serverless_inference_billing_history_graph**](docs/BillingApi.md#get_serverless_inference_billing_history_graph) | **GET** /billing/billing/history/serverless_inference/{resource_id}/graph | Retrieve hourly cost datapoints of a Specific Serverless Inference for a specific
|
|
147
|
+
*BillingApi* | [**get_serverless_inferences_billing_history**](docs/BillingApi.md#get_serverless_inferences_billing_history) | **GET** /billing/billing/history/serverless_inference/{resource_id} |
|
|
148
|
+
*BillingApi* | [**get_snapshot_billing_history**](docs/BillingApi.md#get_snapshot_billing_history) | **GET** /billing/billing/history/snapshot/{snapshot_id} | Retrieve Billing History of a Specific Snapshot for a specific Billing Cycle
|
|
149
|
+
*BillingApi* | [**get_snapshot_billing_history_graph**](docs/BillingApi.md#get_snapshot_billing_history_graph) | **GET** /billing/billing/history/snapshot/{snapshot_id}/graph | Retrieve hourly cost datapoints of a Specific Snapshot for a specific billing cycle
|
|
150
|
+
*BillingApi* | [**get_usage**](docs/BillingApi.md#get_usage) | **GET** /billing/billing/usage | GET: Billing usage
|
|
151
|
+
*BillingApi* | [**get_user_billing_history**](docs/BillingApi.md#get_user_billing_history) | **GET** /billing/billing/history | Retrieve Billing History for a specific Billing Cycle
|
|
152
|
+
*BillingApi* | [**get_vm_billing_details**](docs/BillingApi.md#get_vm_billing_details) | **GET** /billing/billing/history/virtual-machine/{vm_id} | Retrieve Billing History of a Specific Virtual Machine for a specific Billing Cycle
|
|
153
|
+
*BillingApi* | [**get_vm_billing_events**](docs/BillingApi.md#get_vm_billing_events) | **GET** /billing/billing/virtual-machine/{vm_id}/billing-events | Retrieve VM billing events history
|
|
154
|
+
*BillingApi* | [**get_vm_billing_graph**](docs/BillingApi.md#get_vm_billing_graph) | **GET** /billing/billing/history/virtual-machine/{vm_id}/graph | Retrieve hourly cost datapoints of a Specific Virtual Machine for a specific billing cycle
|
|
155
|
+
*BillingApi* | [**get_vm_billing_history**](docs/BillingApi.md#get_vm_billing_history) | **GET** /billing/billing/history/virtual-machine | Retrieve Billing History of Virtual Machine for a specific Billing Cycle
|
|
156
|
+
*BillingApi* | [**get_vm_sub_resource_costs**](docs/BillingApi.md#get_vm_sub_resource_costs) | **GET** /billing/billing/virtual-machine/{vm_id}/sub-resource | Retrieve Total Costs and Non Discount Costs for Sub Resources
|
|
157
|
+
*BillingApi* | [**get_vm_sub_resource_graph**](docs/BillingApi.md#get_vm_sub_resource_graph) | **GET** /billing/billing/virtual-machine/{vm_id}/sub-resource/graph | Retrieve Sub-Resources Historical Cost datapoints of a Virtual
|
|
158
|
+
*BillingApi* | [**get_volume_billing_details**](docs/BillingApi.md#get_volume_billing_details) | **GET** /billing/billing/history/volume/{volume_id} | Retrieve Billing History of a Specific Volume for a specific Billing Cycle
|
|
159
|
+
*BillingApi* | [**get_volume_billing_events**](docs/BillingApi.md#get_volume_billing_events) | **GET** /billing/billing/volume/{volume_id}/billing-events | Retrieve Volume billing events history
|
|
160
|
+
*BillingApi* | [**get_volume_billing_history**](docs/BillingApi.md#get_volume_billing_history) | **GET** /billing/billing/history/volume | Retrieve Billing History of Volume for a specific Billing Cycle
|
|
161
|
+
*BillingApi* | [**get_volume_billing_history_graph**](docs/BillingApi.md#get_volume_billing_history_graph) | **GET** /billing/billing/history/volume/{volume_id}/graph | Retrieve hourly cost datapoints of a Specific Volume for a specific billing cycle
|
|
162
|
+
*BillingApi* | [**list_billing_contract_history**](docs/BillingApi.md#list_billing_contract_history) | **GET** /billing/billing/history/contract | Retrieve Billing History of Contract for a specific Billing Cycle
|
|
163
|
+
*BillingApi* | [**list_bucket_billing_history**](docs/BillingApi.md#list_bucket_billing_history) | **GET** /billing/billing/history/bucket | Retrieve Billing History of a Bucket for a specific Billing Cycle
|
|
164
|
+
*BillingApi* | [**list_clusters_billing_history**](docs/BillingApi.md#list_clusters_billing_history) | **GET** /billing/billing/history/cluster | Retrieve Billing History of Clusters for a specific Billing Cycle
|
|
165
|
+
*BillingApi* | [**list_org_notification_thresholds**](docs/BillingApi.md#list_org_notification_thresholds) | **GET** /billing/billing/threshold | GET: All Thresholds for Organization
|
|
166
|
+
*BillingApi* | [**list_serverless_inference_billing_history**](docs/BillingApi.md#list_serverless_inference_billing_history) | **GET** /billing/billing/history/serverless_inference | Retrieve Billing History of serverless inference for a specific Billing Cycle
|
|
167
|
+
*BillingApi* | [**list_snapshot_billing_history**](docs/BillingApi.md#list_snapshot_billing_history) | **GET** /billing/billing/history/snapshot | Retrieve Billing History of Snapshot for a specific Billing Cycle
|
|
168
|
+
*CallbacksApi* | [**attach_callback_to_vm**](docs/CallbacksApi.md#attach_callback_to_vm) | **POST** /core/virtual-machines/{vm_id}/attach-callback | Attach callback to virtual machine
|
|
168
169
|
*CallbacksApi* | [**attach_callback_to_volume**](docs/CallbacksApi.md#attach_callback_to_volume) | **POST** /core/volumes/{volume_id}/attach-callback | Attach callback to volume
|
|
169
|
-
*CallbacksApi* | [**
|
|
170
|
+
*CallbacksApi* | [**delete_vm_callback**](docs/CallbacksApi.md#delete_vm_callback) | **DELETE** /core/virtual-machines/{vm_id}/delete-callback | Delete virtual machine callback
|
|
170
171
|
*CallbacksApi* | [**delete_volume_callback**](docs/CallbacksApi.md#delete_volume_callback) | **DELETE** /core/volumes/{volume_id}/delete-callback | Delete volume callback
|
|
171
|
-
*CallbacksApi* | [**
|
|
172
|
+
*CallbacksApi* | [**update_vm_callback**](docs/CallbacksApi.md#update_vm_callback) | **PUT** /core/virtual-machines/{vm_id}/update-callback | Update virtual machine callback
|
|
172
173
|
*CallbacksApi* | [**update_volume_callback**](docs/CallbacksApi.md#update_volume_callback) | **PUT** /core/volumes/{volume_id}/update-callback | Update volume callback
|
|
173
|
-
*ClusterEventsApi* | [**
|
|
174
|
-
*ClustersApi* | [**attempt_to_manually_reconcile_a_cluster**](docs/ClustersApi.md#attempt_to_manually_reconcile_a_cluster) | **POST** /core/clusters/{cluster_id}/reconcile | Reconcile a cluster
|
|
174
|
+
*ClusterEventsApi* | [**list_cluster_events**](docs/ClusterEventsApi.md#list_cluster_events) | **GET** /core/clusters/{cluster_id}/events | Fetch all of a cluster events
|
|
175
175
|
*ClustersApi* | [**create_cluster**](docs/ClustersApi.md#create_cluster) | **POST** /core/clusters | Create Cluster
|
|
176
176
|
*ClustersApi* | [**create_node**](docs/ClustersApi.md#create_node) | **POST** /core/clusters/{cluster_id}/nodes | Create Node
|
|
177
177
|
*ClustersApi* | [**create_node_group**](docs/ClustersApi.md#create_node_group) | **POST** /core/clusters/{cluster_id}/node-groups | Create a node group in a cluster
|
|
178
|
-
*ClustersApi* | [**
|
|
179
|
-
*ClustersApi* | [**delete_a_node_group**](docs/ClustersApi.md#delete_a_node_group) | **DELETE** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Delete a node group
|
|
178
|
+
*ClustersApi* | [**delete_cluster**](docs/ClustersApi.md#delete_cluster) | **DELETE** /core/clusters/{id} | Delete a cluster
|
|
180
179
|
*ClustersApi* | [**delete_cluster_node**](docs/ClustersApi.md#delete_cluster_node) | **DELETE** /core/clusters/{cluster_id}/nodes/{node_id} | Delete Cluster Node
|
|
181
180
|
*ClustersApi* | [**delete_cluster_nodes**](docs/ClustersApi.md#delete_cluster_nodes) | **POST** /core/clusters/{cluster_id}/nodes/delete | Delete Multiple Cluster Nodes
|
|
181
|
+
*ClustersApi* | [**delete_node_group**](docs/ClustersApi.md#delete_node_group) | **DELETE** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Delete a node group
|
|
182
182
|
*ClustersApi* | [**fetch_cluster_name_availability**](docs/ClustersApi.md#fetch_cluster_name_availability) | **GET** /core/clusters/name-availability/{name} | Fetch cluster name availability
|
|
183
183
|
*ClustersApi* | [**get_cluster_master_flavors**](docs/ClustersApi.md#get_cluster_master_flavors) | **GET** /core/clusters/master-flavors | Get Cluster Master Flavors
|
|
184
184
|
*ClustersApi* | [**get_cluster_nodes**](docs/ClustersApi.md#get_cluster_nodes) | **GET** /core/clusters/{cluster_id}/nodes | Get Cluster Nodes
|
|
185
185
|
*ClustersApi* | [**get_cluster_versions**](docs/ClustersApi.md#get_cluster_versions) | **GET** /core/clusters/versions | List Cluster Versions
|
|
186
|
+
*ClustersApi* | [**get_node_group**](docs/ClustersApi.md#get_node_group) | **GET** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Retrieve a node group in a cluster
|
|
186
187
|
*ClustersApi* | [**getting_cluster_detail**](docs/ClustersApi.md#getting_cluster_detail) | **GET** /core/clusters/{id} | Getting Cluster Detail
|
|
187
188
|
*ClustersApi* | [**list_clusters**](docs/ClustersApi.md#list_clusters) | **GET** /core/clusters | List Clusters
|
|
188
189
|
*ClustersApi* | [**list_node_groups**](docs/ClustersApi.md#list_node_groups) | **GET** /core/clusters/{cluster_id}/node-groups | List node groups for a cluster
|
|
189
|
-
*ClustersApi* | [**
|
|
190
|
-
*ClustersApi* | [**
|
|
190
|
+
*ClustersApi* | [**reconcile_cluster**](docs/ClustersApi.md#reconcile_cluster) | **POST** /core/clusters/{cluster_id}/reconcile | Reconcile a cluster
|
|
191
|
+
*ClustersApi* | [**update_node_group**](docs/ClustersApi.md#update_node_group) | **PATCH** /core/clusters/{cluster_id}/node-groups/{node_group_id} | Update a node group in a cluster
|
|
191
192
|
*ComplianceApi* | [**create_compliance**](docs/ComplianceApi.md#create_compliance) | **POST** /core/compliance | Create compliance
|
|
192
|
-
*ComplianceApi* | [**
|
|
193
|
-
*ComplianceApi* | [**
|
|
194
|
-
*ComplianceApi* | [**
|
|
195
|
-
*CreditApi* | [**
|
|
196
|
-
*DashboardApi* | [**
|
|
193
|
+
*ComplianceApi* | [**delete_compliance**](docs/ComplianceApi.md#delete_compliance) | **DELETE** /core/compliance/{gpu_model} | Delete a compliance
|
|
194
|
+
*ComplianceApi* | [**get_compliance**](docs/ComplianceApi.md#get_compliance) | **GET** /core/compliance | Retrieve GPU compliance
|
|
195
|
+
*ComplianceApi* | [**update_compliance**](docs/ComplianceApi.md#update_compliance) | **PUT** /core/compliance | Update a compliance
|
|
196
|
+
*CreditApi* | [**get_user_credit**](docs/CreditApi.md#get_user_credit) | **GET** /billing/user-credit/credit | GET: View credit and threshold
|
|
197
|
+
*DashboardApi* | [**get_dashboard**](docs/DashboardApi.md#get_dashboard) | **GET** /core/dashboard | Retrieve Dashboard
|
|
197
198
|
*DeploymentApi* | [**delete_deployment**](docs/DeploymentApi.md#delete_deployment) | **DELETE** /core/marketplace/deployments/{id} | Delete Deployment
|
|
198
|
-
*DeploymentApi* | [**
|
|
199
|
+
*DeploymentApi* | [**get_deployment**](docs/DeploymentApi.md#get_deployment) | **GET** /core/marketplace/deployments/{id} | Details of Deployment by ID
|
|
199
200
|
*DeploymentApi* | [**list_deployments**](docs/DeploymentApi.md#list_deployments) | **GET** /core/marketplace/deployments | List Deployments
|
|
200
201
|
*DeploymentApi* | [**start_deployment**](docs/DeploymentApi.md#start_deployment) | **POST** /core/marketplace/deployments | Start Deployment
|
|
201
202
|
*EnvironmentApi* | [**create_environment**](docs/EnvironmentApi.md#create_environment) | **POST** /core/environments | Create environment
|
|
202
203
|
*EnvironmentApi* | [**delete_environment**](docs/EnvironmentApi.md#delete_environment) | **DELETE** /core/environments/{id} | Delete environment
|
|
203
204
|
*EnvironmentApi* | [**fetch_environment_name_availability**](docs/EnvironmentApi.md#fetch_environment_name_availability) | **GET** /core/environments/name-availability/{name} | Fetch environment name availability
|
|
205
|
+
*EnvironmentApi* | [**get_environment**](docs/EnvironmentApi.md#get_environment) | **GET** /core/environments/{id} | Retrieve environment
|
|
204
206
|
*EnvironmentApi* | [**list_environments**](docs/EnvironmentApi.md#list_environments) | **GET** /core/environments | List environments
|
|
205
|
-
*EnvironmentApi* | [**retrieve_environment**](docs/EnvironmentApi.md#retrieve_environment) | **GET** /core/environments/{id} | Retrieve environment
|
|
206
207
|
*EnvironmentApi* | [**update_environment**](docs/EnvironmentApi.md#update_environment) | **PUT** /core/environments/{id} | Update environment
|
|
207
|
-
*FirewallAttachmentApi* | [**
|
|
208
|
-
*FirewallsApi* | [**
|
|
209
|
-
*FirewallsApi* | [**
|
|
208
|
+
*FirewallAttachmentApi* | [**attach_firewall_to_vms**](docs/FirewallAttachmentApi.md#attach_firewall_to_vms) | **POST** /core/firewalls/{firewall_id}/update-attachments | Attach Firewalls to VMs
|
|
209
|
+
*FirewallsApi* | [**add_rule_to_firewall**](docs/FirewallsApi.md#add_rule_to_firewall) | **POST** /core/firewalls/{firewall_id}/firewall-rules | Add firewall rule to firewall
|
|
210
|
+
*FirewallsApi* | [**create_firewall**](docs/FirewallsApi.md#create_firewall) | **POST** /core/firewalls | Create firewall
|
|
210
211
|
*FirewallsApi* | [**delete_existing_firewall**](docs/FirewallsApi.md#delete_existing_firewall) | **DELETE** /core/firewalls/{id} | Delete firewall
|
|
211
|
-
*FirewallsApi* | [**
|
|
212
|
+
*FirewallsApi* | [**delete_rule_from_firewall**](docs/FirewallsApi.md#delete_rule_from_firewall) | **DELETE** /core/firewalls/{firewall_id}/firewall-rules/{firewall_rule_id} | Delete firewall rules from firewall
|
|
213
|
+
*FirewallsApi* | [**get_firewall**](docs/FirewallsApi.md#get_firewall) | **GET** /core/firewalls/{id} | Retrieve firewall details
|
|
212
214
|
*FirewallsApi* | [**list_existing_firewalls**](docs/FirewallsApi.md#list_existing_firewalls) | **GET** /core/firewalls | List firewalls
|
|
213
|
-
*FirewallsApi* | [**retrieve_the_details_of_an_existing_firewall**](docs/FirewallsApi.md#retrieve_the_details_of_an_existing_firewall) | **GET** /core/firewalls/{id} | Retrieve firewall details
|
|
214
215
|
*FlavorApi* | [**list_flavors**](docs/FlavorApi.md#list_flavors) | **GET** /core/flavors | List Flavors
|
|
215
|
-
*FloatingIpApi* | [**
|
|
216
|
-
*FloatingIpApi* | [**
|
|
216
|
+
*FloatingIpApi* | [**attach_public_ipto_vm**](docs/FloatingIpApi.md#attach_public_ipto_vm) | **POST** /core/virtual-machines/{vm_id}/attach-floatingip | Attach public IP to virtual machine
|
|
217
|
+
*FloatingIpApi* | [**detach_public_ip_from_vm**](docs/FloatingIpApi.md#detach_public_ip_from_vm) | **POST** /core/virtual-machines/{vm_id}/detach-floatingip | Detach public IP from virtual machine
|
|
217
218
|
*GpuApi* | [**list_gpus**](docs/GpuApi.md#list_gpus) | **GET** /core/gpus | List GPUs
|
|
218
219
|
*ImageApi* | [**delete_image**](docs/ImageApi.md#delete_image) | **DELETE** /core/images/{id} | Delete an image
|
|
219
220
|
*ImageApi* | [**fetch_image_name_availability**](docs/ImageApi.md#fetch_image_name_availability) | **GET** /core/image/name-availability/{name} | Fetch name availability for Images
|
|
220
|
-
*ImageApi* | [**
|
|
221
|
-
*ImageApi* | [**
|
|
221
|
+
*ImageApi* | [**get_image**](docs/ImageApi.md#get_image) | **GET** /core/images/{id} | Get Private Image Details
|
|
222
|
+
*ImageApi* | [**list_images**](docs/ImageApi.md#list_images) | **GET** /core/images | List Images
|
|
222
223
|
*InviteApi* | [**accept_invite**](docs/InviteApi.md#accept_invite) | **GET** /auth/invites/{id}/accept | Accept Invite
|
|
223
224
|
*InviteApi* | [**delete_invite**](docs/InviteApi.md#delete_invite) | **DELETE** /auth/invites/{id} | Accept Invite
|
|
224
225
|
*InviteApi* | [**invite_user_to_organization**](docs/InviteApi.md#invite_user_to_organization) | **POST** /auth/invites | Invite User to Organization
|
|
@@ -232,15 +233,15 @@ Class | Method | HTTP request | Description
|
|
|
232
233
|
*OrganizationApi* | [**update_organization_information**](docs/OrganizationApi.md#update_organization_information) | **PUT** /auth/organizations/update | Update Organization Information
|
|
233
234
|
*PartnerConfigApi* | [**get_partner_config**](docs/PartnerConfigApi.md#get_partner_config) | **GET** /auth/partner-config | Get partner config
|
|
234
235
|
*PartnerConfigApi* | [**get_partner_config_by_domain**](docs/PartnerConfigApi.md#get_partner_config_by_domain) | **GET** /auth/partner-config/docs |
|
|
235
|
-
*PaymentApi* | [**
|
|
236
|
-
*PaymentApi* | [**
|
|
237
|
-
*PaymentApi* | [**
|
|
236
|
+
*PaymentApi* | [**get_payment_receipt**](docs/PaymentApi.md#get_payment_receipt) | **GET** /billing/payment/receipt/{payment_id} | Retrieve Payment Receipt
|
|
237
|
+
*PaymentApi* | [**initiate_payment**](docs/PaymentApi.md#initiate_payment) | **POST** /billing/payment/payment-initiate | POST: Initiate payment
|
|
238
|
+
*PaymentApi* | [**list_payment_details**](docs/PaymentApi.md#list_payment_details) | **GET** /billing/payment/payment-details | GET: View payment details
|
|
238
239
|
*PermissionApi* | [**list_permissions**](docs/PermissionApi.md#list_permissions) | **GET** /auth/permissions | List Permissions
|
|
239
240
|
*PolicyApi* | [**list_policies**](docs/PolicyApi.md#list_policies) | **GET** /auth/policies | List Policies
|
|
240
241
|
*ProfileApi* | [**create_profile**](docs/ProfileApi.md#create_profile) | **POST** /core/profiles | Create profile
|
|
241
242
|
*ProfileApi* | [**delete_profile**](docs/ProfileApi.md#delete_profile) | **DELETE** /core/profiles/{id} | Delete profile
|
|
243
|
+
*ProfileApi* | [**get_profile**](docs/ProfileApi.md#get_profile) | **GET** /core/profiles/{id} | Retrieve profile details
|
|
242
244
|
*ProfileApi* | [**list_profiles**](docs/ProfileApi.md#list_profiles) | **GET** /core/profiles | List profiles
|
|
243
|
-
*ProfileApi* | [**retrieve_profile_details**](docs/ProfileApi.md#retrieve_profile_details) | **GET** /core/profiles/{id} | Retrieve profile details
|
|
244
245
|
*RbacRoleApi* | [**create_rbac_role**](docs/RbacRoleApi.md#create_rbac_role) | **POST** /auth/roles | Create RBAC Role
|
|
245
246
|
*RbacRoleApi* | [**delete_rbac_role**](docs/RbacRoleApi.md#delete_rbac_role) | **DELETE** /auth/roles/{id} | Delete RBAC Role
|
|
246
247
|
*RbacRoleApi* | [**list_rbac_roles**](docs/RbacRoleApi.md#list_rbac_roles) | **GET** /auth/roles | List RBAC Roles
|
|
@@ -248,52 +249,52 @@ Class | Method | HTTP request | Description
|
|
|
248
249
|
*RbacRoleApi* | [**update_rbac_role**](docs/RbacRoleApi.md#update_rbac_role) | **PUT** /auth/roles/{id} | Update RBAC Role
|
|
249
250
|
*RegionApi* | [**list_regions**](docs/RegionApi.md#list_regions) | **GET** /core/regions | List Regions
|
|
250
251
|
*SecurityRulesApi* | [**list_firewall_rule_protocols**](docs/SecurityRulesApi.md#list_firewall_rule_protocols) | **GET** /core/sg-rules-protocols | List firewall rule protocols
|
|
251
|
-
*SnapshotEventsApi* | [**
|
|
252
|
-
*StockApi* | [**
|
|
252
|
+
*SnapshotEventsApi* | [**list_snapshot_events**](docs/SnapshotEventsApi.md#list_snapshot_events) | **GET** /core/snapshots/{snapshot_id}/events | Fetch all events for a snapshot
|
|
253
|
+
*StockApi* | [**get_gpu_stock**](docs/StockApi.md#get_gpu_stock) | **GET** /core/stocks | Retrieve GPU stocks
|
|
253
254
|
*TemplateApi* | [**create_template**](docs/TemplateApi.md#create_template) | **POST** /core/marketplace/templates | Create template
|
|
254
255
|
*TemplateApi* | [**delete_template**](docs/TemplateApi.md#delete_template) | **DELETE** /core/marketplace/templates/{id} | Delete template
|
|
256
|
+
*TemplateApi* | [**get_template**](docs/TemplateApi.md#get_template) | **GET** /core/marketplace/templates/{id} | Retrieve template details
|
|
255
257
|
*TemplateApi* | [**list_templates**](docs/TemplateApi.md#list_templates) | **GET** /core/marketplace/templates | List templates
|
|
256
|
-
*TemplateApi* | [**retrieve_template_details**](docs/TemplateApi.md#retrieve_template_details) | **GET** /core/marketplace/templates/{id} | Retrieve template details
|
|
257
258
|
*TemplateApi* | [**update_template**](docs/TemplateApi.md#update_template) | **PUT** /core/marketplace/templates/{id} | Update template
|
|
258
|
-
*UserApi* | [**
|
|
259
|
-
*UserApi* | [**
|
|
260
|
-
*UserApi* | [**
|
|
261
|
-
*UserDetailChoiceApi* | [**
|
|
259
|
+
*UserApi* | [**add_user_billing_info**](docs/UserApi.md#add_user_billing_info) | **POST** /billing/user/info | POST: Insert billing info
|
|
260
|
+
*UserApi* | [**get_user_billing_info**](docs/UserApi.md#get_user_billing_info) | **GET** /billing/user/info | GET: Retrieve billing info
|
|
261
|
+
*UserApi* | [**update_user_billing_info**](docs/UserApi.md#update_user_billing_info) | **PUT** /billing/user/info | PUT: Update billing info
|
|
262
|
+
*UserDetailChoiceApi* | [**list_default_flavors_and_images**](docs/UserDetailChoiceApi.md#list_default_flavors_and_images) | **GET** /core/user/resources/defaults | Retrieve Default Flavors and Images
|
|
262
263
|
*UserPermissionApi* | [**list_my_user_permissions**](docs/UserPermissionApi.md#list_my_user_permissions) | **GET** /auth/users/me/permissions | List My User Permissions
|
|
263
264
|
*UserPermissionApi* | [**list_user_permissions**](docs/UserPermissionApi.md#list_user_permissions) | **GET** /auth/users/{id}/permissions | List User Permissions
|
|
264
|
-
*VirtualMachineApi* | [**
|
|
265
|
-
*VirtualMachineApi* | [**
|
|
266
|
-
*VirtualMachineApi* | [**
|
|
267
|
-
*VirtualMachineApi* | [**
|
|
268
|
-
*VirtualMachineApi* | [**
|
|
269
|
-
*VirtualMachineApi* | [**
|
|
270
|
-
*VirtualMachineApi* | [**
|
|
271
|
-
*VirtualMachineApi* | [**
|
|
272
|
-
*VirtualMachineApi* | [**
|
|
273
|
-
*VirtualMachineApi* | [**
|
|
274
|
-
*VirtualMachineApi* | [**
|
|
275
|
-
*VirtualMachineApi* | [**
|
|
276
|
-
*VirtualMachineApi* | [**
|
|
277
|
-
*VirtualMachineApi* | [**
|
|
278
|
-
*VirtualMachineApi* | [**
|
|
279
|
-
*VirtualMachineApi* | [**
|
|
280
|
-
*VirtualMachineApi* | [**
|
|
281
|
-
*VirtualMachineApi* | [**
|
|
282
|
-
*VirtualMachineApi* | [**
|
|
283
|
-
*VirtualMachineApi* | [**
|
|
284
|
-
*VirtualMachineEventsApi* | [**
|
|
285
|
-
*VncUrlApi* | [**get_vnc_url**](docs/VncUrlApi.md#get_vnc_url) | **GET** /core/virtual-machines/{vm_id}/request-console | Request Instance Console
|
|
265
|
+
*VirtualMachineApi* | [**add_vm_label**](docs/VirtualMachineApi.md#add_vm_label) | **PUT** /core/virtual-machines/{vm_id}/label | Edit virtual machine labels
|
|
266
|
+
*VirtualMachineApi* | [**attach_firewalls_to_vm**](docs/VirtualMachineApi.md#attach_firewalls_to_vm) | **POST** /core/virtual-machines/{vm_id}/attach-firewalls | Attach firewalls to a virtual machine
|
|
267
|
+
*VirtualMachineApi* | [**check_vm_name_availability**](docs/VirtualMachineApi.md#check_vm_name_availability) | **GET** /core/virtual-machines/name-availability/{name} | Fetch virtual machine name availability
|
|
268
|
+
*VirtualMachineApi* | [**create_firewall_rule_for_vm**](docs/VirtualMachineApi.md#create_firewall_rule_for_vm) | **POST** /core/virtual-machines/{vm_id}/sg-rules | Add firewall rule to virtual machine
|
|
269
|
+
*VirtualMachineApi* | [**create_snapshot_for_vm**](docs/VirtualMachineApi.md#create_snapshot_for_vm) | **POST** /core/virtual-machines/{vm_id}/snapshots | Create snapshot from a virtual machine
|
|
270
|
+
*VirtualMachineApi* | [**create_vms**](docs/VirtualMachineApi.md#create_vms) | **POST** /core/virtual-machines | Create virtual machines
|
|
271
|
+
*VirtualMachineApi* | [**delete_firewall_rule_for_vm**](docs/VirtualMachineApi.md#delete_firewall_rule_for_vm) | **DELETE** /core/virtual-machines/{vm_id}/sg-rules/{sg_rule_id} | Delete firewall rule from virtual machine
|
|
272
|
+
*VirtualMachineApi* | [**delete_vm**](docs/VirtualMachineApi.md#delete_vm) | **DELETE** /core/virtual-machines/{vm_id} | Delete virtual machine
|
|
273
|
+
*VirtualMachineApi* | [**get_contract_vms**](docs/VirtualMachineApi.md#get_contract_vms) | **GET** /core/virtual-machines/contract/{contract_id}/virtual-machines | Retrieve virtual machines associated with a contract
|
|
274
|
+
*VirtualMachineApi* | [**get_vm**](docs/VirtualMachineApi.md#get_vm) | **GET** /core/virtual-machines/{vm_id} | Retrieve virtual machine details
|
|
275
|
+
*VirtualMachineApi* | [**get_vm_logs**](docs/VirtualMachineApi.md#get_vm_logs) | **GET** /core/virtual-machines/{vm_id}/logs | Get virtual machine logs
|
|
276
|
+
*VirtualMachineApi* | [**get_vm_metrics**](docs/VirtualMachineApi.md#get_vm_metrics) | **GET** /core/virtual-machines/{vm_id}/metrics | Retrieve virtual machine performance metrics
|
|
277
|
+
*VirtualMachineApi* | [**hard_reboot_vm**](docs/VirtualMachineApi.md#hard_reboot_vm) | **GET** /core/virtual-machines/{vm_id}/hard-reboot | Hard reboot virtual machine
|
|
278
|
+
*VirtualMachineApi* | [**hibernate_vm**](docs/VirtualMachineApi.md#hibernate_vm) | **GET** /core/virtual-machines/{vm_id}/hibernate | Hibernate virtual machine
|
|
279
|
+
*VirtualMachineApi* | [**list_vms**](docs/VirtualMachineApi.md#list_vms) | **GET** /core/virtual-machines | List virtual machines
|
|
280
|
+
*VirtualMachineApi* | [**request_vm_logs**](docs/VirtualMachineApi.md#request_vm_logs) | **POST** /core/virtual-machines/{vm_id}/logs | Request virtual machine logs
|
|
281
|
+
*VirtualMachineApi* | [**resize_vm**](docs/VirtualMachineApi.md#resize_vm) | **POST** /core/virtual-machines/{vm_id}/resize | Resize virtual machine
|
|
282
|
+
*VirtualMachineApi* | [**restore_vm_from_hibernation**](docs/VirtualMachineApi.md#restore_vm_from_hibernation) | **GET** /core/virtual-machines/{vm_id}/hibernate-restore | Restore virtual machine from hibernation
|
|
283
|
+
*VirtualMachineApi* | [**start_vm**](docs/VirtualMachineApi.md#start_vm) | **GET** /core/virtual-machines/{vm_id}/start | Start virtual machine
|
|
284
|
+
*VirtualMachineApi* | [**stop_vm**](docs/VirtualMachineApi.md#stop_vm) | **GET** /core/virtual-machines/{vm_id}/stop | Stop virtual machine
|
|
285
|
+
*VirtualMachineEventsApi* | [**list_vm_events**](docs/VirtualMachineEventsApi.md#list_vm_events) | **GET** /core/virtual-machines/{vm_id}/events | List virtual machine events
|
|
286
286
|
*VncUrlApi* | [**get_vncurl**](docs/VncUrlApi.md#get_vncurl) | **GET** /core/virtual-machines/{vm_id}/console/{job_id} | Get VNC Console Link
|
|
287
|
+
*VncUrlApi* | [**request_vm_console**](docs/VncUrlApi.md#request_vm_console) | **GET** /core/virtual-machines/{vm_id}/request-console | Request Instance Console
|
|
287
288
|
*VolumeApi* | [**create_volume**](docs/VolumeApi.md#create_volume) | **POST** /core/volumes | Create volume
|
|
288
289
|
*VolumeApi* | [**delete_volume**](docs/VolumeApi.md#delete_volume) | **DELETE** /core/volumes/{volume_id} | Delete volume
|
|
289
|
-
*VolumeApi* | [**fetch_volume_details**](docs/VolumeApi.md#fetch_volume_details) | **GET** /core/volumes/{volume_id} | Fetch Volume Details
|
|
290
290
|
*VolumeApi* | [**fetch_volume_name_availability**](docs/VolumeApi.md#fetch_volume_name_availability) | **GET** /core/volume/name-availability/{name} | Fetch volume name availability
|
|
291
|
+
*VolumeApi* | [**get_volume**](docs/VolumeApi.md#get_volume) | **GET** /core/volumes/{volume_id} | Fetch Volume Details
|
|
291
292
|
*VolumeApi* | [**list_volume_types**](docs/VolumeApi.md#list_volume_types) | **GET** /core/volume-types | List volume types
|
|
292
293
|
*VolumeApi* | [**list_volumes**](docs/VolumeApi.md#list_volumes) | **GET** /core/volumes | List volumes
|
|
293
294
|
*VolumeApi* | [**update_volume**](docs/VolumeApi.md#update_volume) | **PATCH** /core/volumes/{volume_id} | Update volume fields
|
|
294
|
-
*VolumeAttachmentApi* | [**
|
|
295
|
-
*VolumeAttachmentApi* | [**
|
|
296
|
-
*VolumeAttachmentApi* | [**
|
|
295
|
+
*VolumeAttachmentApi* | [**attach_volumes_to_vm**](docs/VolumeAttachmentApi.md#attach_volumes_to_vm) | **POST** /core/virtual-machines/{vm_id}/attach-volumes | Attach volumes to virtual machine
|
|
296
|
+
*VolumeAttachmentApi* | [**detach_volumes_from_vm**](docs/VolumeAttachmentApi.md#detach_volumes_from_vm) | **POST** /core/virtual-machines/{vm_id}/detach-volumes | Detach volumes from virtual machine
|
|
297
|
+
*VolumeAttachmentApi* | [**update_volume_attachment**](docs/VolumeAttachmentApi.md#update_volume_attachment) | **PATCH** /core/volume-attachments/{volume_attachment_id} | Update a volume attachment
|
|
297
298
|
*VouchersApi* | [**redeem_a_voucher**](docs/VouchersApi.md#redeem_a_voucher) | **POST** /billing/billing/vouchers/redeem | Redeem a voucher with a voucher_code
|
|
298
299
|
|
|
299
300
|
|
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "v1.
|
|
17
|
+
__version__ = "v1.46.1-alpha"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from .api.calculate_api import CalculateApi
|
|
21
21
|
from .api.customer_contract_api import CustomerContractApi
|
|
22
|
+
from .api.fip_exclusions_api import FIPExclusionsApi
|
|
22
23
|
from .api.pricebook_api import PricebookApi
|
|
23
24
|
from .api.snapshots_api import SnapshotsApi
|
|
24
25
|
from .api.alive_api import AliveApi
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
# import apis into api package
|
|
4
4
|
from .calculate_api import CalculateApi
|
|
5
5
|
from .customer_contract_api import CustomerContractApi
|
|
6
|
+
from .fip_exclusions_api import FIPExclusionsApi
|
|
6
7
|
from .pricebook_api import PricebookApi
|
|
7
8
|
from .snapshots_api import SnapshotsApi
|
|
8
9
|
from .alive_api import AliveApi
|
|
@@ -275,7 +275,7 @@ class AliveApi:
|
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
@validate_call
|
|
278
|
-
def
|
|
278
|
+
def get_alive_doc(
|
|
279
279
|
self,
|
|
280
280
|
_request_timeout: Union[
|
|
281
281
|
None,
|
|
@@ -290,7 +290,7 @@ class AliveApi:
|
|
|
290
290
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
291
291
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
292
292
|
) -> None:
|
|
293
|
-
"""
|
|
293
|
+
"""get_alive_doc
|
|
294
294
|
|
|
295
295
|
|
|
296
296
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -315,7 +315,7 @@ class AliveApi:
|
|
|
315
315
|
:return: Returns the result object.
|
|
316
316
|
""" # noqa: E501
|
|
317
317
|
|
|
318
|
-
_param = self.
|
|
318
|
+
_param = self._get_alive_doc_serialize(
|
|
319
319
|
_request_auth=_request_auth,
|
|
320
320
|
_content_type=_content_type,
|
|
321
321
|
_headers=_headers,
|
|
@@ -337,7 +337,7 @@ class AliveApi:
|
|
|
337
337
|
|
|
338
338
|
|
|
339
339
|
@validate_call
|
|
340
|
-
def
|
|
340
|
+
def get_alive_doc_with_http_info(
|
|
341
341
|
self,
|
|
342
342
|
_request_timeout: Union[
|
|
343
343
|
None,
|
|
@@ -352,7 +352,7 @@ class AliveApi:
|
|
|
352
352
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
353
353
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
354
354
|
) -> ApiResponse[None]:
|
|
355
|
-
"""
|
|
355
|
+
"""get_alive_doc
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -377,7 +377,7 @@ class AliveApi:
|
|
|
377
377
|
:return: Returns the result object.
|
|
378
378
|
""" # noqa: E501
|
|
379
379
|
|
|
380
|
-
_param = self.
|
|
380
|
+
_param = self._get_alive_doc_serialize(
|
|
381
381
|
_request_auth=_request_auth,
|
|
382
382
|
_content_type=_content_type,
|
|
383
383
|
_headers=_headers,
|
|
@@ -399,7 +399,7 @@ class AliveApi:
|
|
|
399
399
|
|
|
400
400
|
|
|
401
401
|
@validate_call
|
|
402
|
-
def
|
|
402
|
+
def get_alive_doc_without_preload_content(
|
|
403
403
|
self,
|
|
404
404
|
_request_timeout: Union[
|
|
405
405
|
None,
|
|
@@ -414,7 +414,7 @@ class AliveApi:
|
|
|
414
414
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
415
415
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
416
416
|
) -> RESTResponseType:
|
|
417
|
-
"""
|
|
417
|
+
"""get_alive_doc
|
|
418
418
|
|
|
419
419
|
|
|
420
420
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -439,7 +439,7 @@ class AliveApi:
|
|
|
439
439
|
:return: Returns the result object.
|
|
440
440
|
""" # noqa: E501
|
|
441
441
|
|
|
442
|
-
_param = self.
|
|
442
|
+
_param = self._get_alive_doc_serialize(
|
|
443
443
|
_request_auth=_request_auth,
|
|
444
444
|
_content_type=_content_type,
|
|
445
445
|
_headers=_headers,
|
|
@@ -456,7 +456,7 @@ class AliveApi:
|
|
|
456
456
|
return response_data.response
|
|
457
457
|
|
|
458
458
|
|
|
459
|
-
def
|
|
459
|
+
def _get_alive_doc_serialize(
|
|
460
460
|
self,
|
|
461
461
|
_request_auth,
|
|
462
462
|
_content_type,
|
|
@@ -602,7 +602,7 @@ class ApiKeyApi:
|
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
@validate_call
|
|
605
|
-
def
|
|
605
|
+
def get_api_key(
|
|
606
606
|
self,
|
|
607
607
|
_request_timeout: Union[
|
|
608
608
|
None,
|
|
@@ -643,7 +643,7 @@ class ApiKeyApi:
|
|
|
643
643
|
:return: Returns the result object.
|
|
644
644
|
""" # noqa: E501
|
|
645
645
|
|
|
646
|
-
_param = self.
|
|
646
|
+
_param = self._get_api_key_serialize(
|
|
647
647
|
_request_auth=_request_auth,
|
|
648
648
|
_content_type=_content_type,
|
|
649
649
|
_headers=_headers,
|
|
@@ -668,7 +668,7 @@ class ApiKeyApi:
|
|
|
668
668
|
|
|
669
669
|
|
|
670
670
|
@validate_call
|
|
671
|
-
def
|
|
671
|
+
def get_api_key_with_http_info(
|
|
672
672
|
self,
|
|
673
673
|
_request_timeout: Union[
|
|
674
674
|
None,
|
|
@@ -709,7 +709,7 @@ class ApiKeyApi:
|
|
|
709
709
|
:return: Returns the result object.
|
|
710
710
|
""" # noqa: E501
|
|
711
711
|
|
|
712
|
-
_param = self.
|
|
712
|
+
_param = self._get_api_key_serialize(
|
|
713
713
|
_request_auth=_request_auth,
|
|
714
714
|
_content_type=_content_type,
|
|
715
715
|
_headers=_headers,
|
|
@@ -734,7 +734,7 @@ class ApiKeyApi:
|
|
|
734
734
|
|
|
735
735
|
|
|
736
736
|
@validate_call
|
|
737
|
-
def
|
|
737
|
+
def get_api_key_without_preload_content(
|
|
738
738
|
self,
|
|
739
739
|
_request_timeout: Union[
|
|
740
740
|
None,
|
|
@@ -775,7 +775,7 @@ class ApiKeyApi:
|
|
|
775
775
|
:return: Returns the result object.
|
|
776
776
|
""" # noqa: E501
|
|
777
777
|
|
|
778
|
-
_param = self.
|
|
778
|
+
_param = self._get_api_key_serialize(
|
|
779
779
|
_request_auth=_request_auth,
|
|
780
780
|
_content_type=_content_type,
|
|
781
781
|
_headers=_headers,
|
|
@@ -795,7 +795,7 @@ class ApiKeyApi:
|
|
|
795
795
|
return response_data.response
|
|
796
796
|
|
|
797
797
|
|
|
798
|
-
def
|
|
798
|
+
def _get_api_key_serialize(
|
|
799
799
|
self,
|
|
800
800
|
_request_auth,
|
|
801
801
|
_content_type,
|