hyperstack-async 1.55.1a0__py3-none-any.whl
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_async/__init__.py +434 -0
- hyperstack_async/api/__init__.py +60 -0
- hyperstack_async/api/access_keys_api.py +885 -0
- hyperstack_async/api/alive_api.py +510 -0
- hyperstack_async/api/api_key_api.py +1158 -0
- hyperstack_async/api/assigning_member_role_api.py +613 -0
- hyperstack_async/api/auth_api.py +1340 -0
- hyperstack_async/api/auto_topup_api.py +1376 -0
- hyperstack_async/api/beta_access_api.py +856 -0
- hyperstack_async/api/billing_api.py +12701 -0
- hyperstack_async/api/buckets_api.py +865 -0
- hyperstack_async/api/calculate_api.py +325 -0
- hyperstack_async/api/callbacks_api.py +1789 -0
- hyperstack_async/api/cluster_events_api.py +307 -0
- hyperstack_async/api/clusters_api.py +4884 -0
- hyperstack_async/api/compliance_api.py +1165 -0
- hyperstack_async/api/credit_api.py +297 -0
- hyperstack_async/api/customer_contract_api.py +919 -0
- hyperstack_async/api/dashboard_api.py +291 -0
- hyperstack_async/api/deployment_api.py +1118 -0
- hyperstack_async/api/email_opt_in_out_api.py +875 -0
- hyperstack_async/api/environment_api.py +2033 -0
- hyperstack_async/api/fip_exclusions_api.py +313 -0
- hyperstack_async/api/firewall_attachment_api.py +345 -0
- hyperstack_async/api/firewalls_api.py +1813 -0
- hyperstack_async/api/flavor_api.py +314 -0
- hyperstack_async/api/floating_ip_api.py +586 -0
- hyperstack_async/api/gpu_api.py +291 -0
- hyperstack_async/api/health_api.py +282 -0
- hyperstack_async/api/image_api.py +1224 -0
- hyperstack_async/api/invite_api.py +1127 -0
- hyperstack_async/api/keypair_api.py +1463 -0
- hyperstack_async/api/organization_api.py +861 -0
- hyperstack_async/api/partner_config_api.py +566 -0
- hyperstack_async/api/payment_api.py +865 -0
- hyperstack_async/api/permission_api.py +291 -0
- hyperstack_async/api/policy_api.py +291 -0
- hyperstack_async/api/pricebook_api.py +295 -0
- hyperstack_async/api/profile_api.py +1127 -0
- hyperstack_async/api/rbac_role_api.py +1429 -0
- hyperstack_async/api/region_api.py +291 -0
- hyperstack_async/api/regions_api.py +282 -0
- hyperstack_async/api/security_rules_api.py +291 -0
- hyperstack_async/api/snapshot_events_api.py +290 -0
- hyperstack_async/api/snapshots_api.py +1773 -0
- hyperstack_async/api/stock_api.py +291 -0
- hyperstack_async/api/template_api.py +1492 -0
- hyperstack_async/api/user_api.py +1130 -0
- hyperstack_async/api/user_consent_api.py +1416 -0
- hyperstack_async/api/user_consent_events_api.py +307 -0
- hyperstack_async/api/user_detail_choice_api.py +294 -0
- hyperstack_async/api/user_permission_api.py +565 -0
- hyperstack_async/api/virtual_machine_api.py +6246 -0
- hyperstack_async/api/virtual_machine_events_api.py +310 -0
- hyperstack_async/api/vnc_url_api.py +599 -0
- hyperstack_async/api/volume_api.py +2042 -0
- hyperstack_async/api/volume_attachment_api.py +950 -0
- hyperstack_async/api/vouchers_api.py +326 -0
- hyperstack_async/api_client.py +800 -0
- hyperstack_async/api_response.py +21 -0
- hyperstack_async/configuration.py +591 -0
- hyperstack_async/exceptions.py +199 -0
- hyperstack_async/models/__init__.py +362 -0
- hyperstack_async/models/access_token_field.py +100 -0
- hyperstack_async/models/add_user_info_success_response_model.py +108 -0
- hyperstack_async/models/allocated_gpu_count_graph.py +102 -0
- hyperstack_async/models/allowed_countries_response.py +102 -0
- hyperstack_async/models/api_key_fields.py +109 -0
- hyperstack_async/models/assign_rbac_role_payload.py +100 -0
- hyperstack_async/models/attach_callback_payload.py +100 -0
- hyperstack_async/models/attach_callback_response.py +104 -0
- hyperstack_async/models/attach_firewall_with_vm.py +100 -0
- hyperstack_async/models/attach_firewalls_to_vm_payload.py +100 -0
- hyperstack_async/models/attach_volume_fields.py +113 -0
- hyperstack_async/models/attach_volumes.py +112 -0
- hyperstack_async/models/attach_volumes_payload.py +102 -0
- hyperstack_async/models/attachments_fields_for_volume.py +108 -0
- hyperstack_async/models/attributes.py +110 -0
- hyperstack_async/models/auth_get_token_response_model.py +108 -0
- hyperstack_async/models/auth_user_fields.py +107 -0
- hyperstack_async/models/auth_user_info_response_model.py +108 -0
- hyperstack_async/models/auto_topup.py +108 -0
- hyperstack_async/models/auto_topup_error_response.py +104 -0
- hyperstack_async/models/auto_topup_status_schema.py +104 -0
- hyperstack_async/models/beta_access_request_fields.py +121 -0
- hyperstack_async/models/beta_access_request_payload.py +102 -0
- hyperstack_async/models/beta_access_request_response_model.py +108 -0
- hyperstack_async/models/beta_access_status_item.py +115 -0
- hyperstack_async/models/beta_access_status_response_model.py +112 -0
- hyperstack_async/models/billing_history.py +110 -0
- hyperstack_async/models/billing_history_data_synthesis_details.py +118 -0
- hyperstack_async/models/billing_history_fine_tuning.py +118 -0
- hyperstack_async/models/billing_history_image_generation_details.py +118 -0
- hyperstack_async/models/billing_history_model_evalutation_details.py +118 -0
- hyperstack_async/models/billing_history_serverless_inference.py +118 -0
- hyperstack_async/models/billing_history_serverless_inference_details.py +118 -0
- hyperstack_async/models/billing_metrices_fields.py +121 -0
- hyperstack_async/models/billing_metrices_response.py +112 -0
- hyperstack_async/models/cluster_events.py +112 -0
- hyperstack_async/models/cluster_events_fields.py +117 -0
- hyperstack_async/models/cluster_fields.py +147 -0
- hyperstack_async/models/cluster_flavor_fields.py +126 -0
- hyperstack_async/models/cluster_list_response.py +112 -0
- hyperstack_async/models/cluster_node_fields.py +125 -0
- hyperstack_async/models/cluster_node_group_fields.py +133 -0
- hyperstack_async/models/cluster_node_group_firewall_fields.py +104 -0
- hyperstack_async/models/cluster_node_groups_create_response.py +118 -0
- hyperstack_async/models/cluster_node_groups_get_response.py +108 -0
- hyperstack_async/models/cluster_node_groups_list_response.py +112 -0
- hyperstack_async/models/cluster_node_instance_fields.py +114 -0
- hyperstack_async/models/cluster_nodes_list_response.py +112 -0
- hyperstack_async/models/cluster_response.py +108 -0
- hyperstack_async/models/cluster_version.py +111 -0
- hyperstack_async/models/cluster_versions.py +112 -0
- hyperstack_async/models/colors.py +110 -0
- hyperstack_async/models/common_response_model.py +102 -0
- hyperstack_async/models/compatible_flavor.py +108 -0
- hyperstack_async/models/compliance_fields.py +106 -0
- hyperstack_async/models/compliance_model_fields.py +112 -0
- hyperstack_async/models/compliance_payload.py +110 -0
- hyperstack_async/models/compliance_response.py +108 -0
- hyperstack_async/models/consent_action_response.py +106 -0
- hyperstack_async/models/consent_block.py +112 -0
- hyperstack_async/models/consent_events_response.py +114 -0
- hyperstack_async/models/consent_template.py +110 -0
- hyperstack_async/models/consent_templates_response.py +100 -0
- hyperstack_async/models/container_overview_fields.py +108 -0
- hyperstack_async/models/contract.py +118 -0
- hyperstack_async/models/contract_discount_plan_fields.py +118 -0
- hyperstack_async/models/contract_gpu_allocation_graph_response.py +108 -0
- hyperstack_async/models/contract_instance_fields.py +121 -0
- hyperstack_async/models/contract_instances_response.py +112 -0
- hyperstack_async/models/create_auto_topup_payload.py +102 -0
- hyperstack_async/models/create_auto_topup_response.py +108 -0
- hyperstack_async/models/create_cluster_node_fields.py +115 -0
- hyperstack_async/models/create_cluster_node_group_payload.py +120 -0
- hyperstack_async/models/create_cluster_payload.py +137 -0
- hyperstack_async/models/create_environment.py +103 -0
- hyperstack_async/models/create_firewall_payload.py +104 -0
- hyperstack_async/models/create_firewall_rule_payload.py +117 -0
- hyperstack_async/models/create_image.py +104 -0
- hyperstack_async/models/create_image_payload.py +102 -0
- hyperstack_async/models/create_instances_payload.py +149 -0
- hyperstack_async/models/create_instances_response.py +112 -0
- hyperstack_async/models/create_profile_payload.py +105 -0
- hyperstack_async/models/create_profile_response.py +108 -0
- hyperstack_async/models/create_security_rule_payload.py +117 -0
- hyperstack_async/models/create_snapshot_payload.py +104 -0
- hyperstack_async/models/create_snapshot_response.py +108 -0
- hyperstack_async/models/create_update_compliance_response.py +108 -0
- hyperstack_async/models/create_update_rbac_role_payload.py +107 -0
- hyperstack_async/models/create_volume_payload.py +113 -0
- hyperstack_async/models/customer_contract_detail_response_model.py +108 -0
- hyperstack_async/models/customer_contract_fields.py +125 -0
- hyperstack_async/models/dashboard_info_response.py +108 -0
- hyperstack_async/models/data_synthesis_billing_history_details_response_schema.py +108 -0
- hyperstack_async/models/delete_cluster_nodes_fields.py +100 -0
- hyperstack_async/models/deployment_fields.py +111 -0
- hyperstack_async/models/deployment_fields_for_start_deployments.py +113 -0
- hyperstack_async/models/deployments.py +112 -0
- hyperstack_async/models/detach_volumes.py +112 -0
- hyperstack_async/models/detach_volumes_payload.py +100 -0
- hyperstack_async/models/disable_auto_topup_response.py +108 -0
- hyperstack_async/models/edit_label_of_an_existing_vm_payload.py +100 -0
- hyperstack_async/models/email_category.py +122 -0
- hyperstack_async/models/email_category_child.py +114 -0
- hyperstack_async/models/email_preferences_response.py +108 -0
- hyperstack_async/models/environment.py +108 -0
- hyperstack_async/models/environment_features.py +112 -0
- hyperstack_async/models/environment_fields.py +113 -0
- hyperstack_async/models/environment_fields_for_volume.py +104 -0
- hyperstack_async/models/environments.py +118 -0
- hyperstack_async/models/error_response_model.py +104 -0
- hyperstack_async/models/firewall_attachment_model.py +111 -0
- hyperstack_async/models/firewall_attachment_vm_model.py +111 -0
- hyperstack_async/models/firewall_detail_fields.py +135 -0
- hyperstack_async/models/firewall_detail_response.py +108 -0
- hyperstack_async/models/firewall_environment_fields.py +104 -0
- hyperstack_async/models/firewall_fields.py +115 -0
- hyperstack_async/models/firewall_response.py +108 -0
- hyperstack_async/models/firewall_rule.py +108 -0
- hyperstack_async/models/firewalls_list_response.py +118 -0
- hyperstack_async/models/flavor_fields.py +135 -0
- hyperstack_async/models/flavor_item_get_response.py +112 -0
- hyperstack_async/models/flavor_label_fields.py +102 -0
- hyperstack_async/models/flavor_list_response.py +112 -0
- hyperstack_async/models/flavor_object_fields.py +108 -0
- hyperstack_async/models/flavor_restrictions.py +112 -0
- hyperstack_async/models/generate_update_api_key_payload.py +103 -0
- hyperstack_async/models/generate_update_api_key_response_model.py +108 -0
- hyperstack_async/models/get_api_keys_response_model.py +112 -0
- hyperstack_async/models/get_auto_topup_response.py +108 -0
- hyperstack_async/models/get_credit_and_threshold_info.py +104 -0
- hyperstack_async/models/get_credit_and_threshold_info_in_response.py +108 -0
- hyperstack_async/models/get_customer_contracts_list_response_model.py +114 -0
- hyperstack_async/models/get_instance_logs_response.py +100 -0
- hyperstack_async/models/get_invites_response_model.py +112 -0
- hyperstack_async/models/get_organization_response_model.py +108 -0
- hyperstack_async/models/get_permissions_response_model.py +112 -0
- hyperstack_async/models/get_policies_response_model.py +112 -0
- hyperstack_async/models/get_rbac_roles_response_model.py +112 -0
- hyperstack_async/models/get_user_permissions_response_model.py +112 -0
- hyperstack_async/models/gpu_fields.py +119 -0
- hyperstack_async/models/gpu_list.py +112 -0
- hyperstack_async/models/gpu_region_fields.py +102 -0
- hyperstack_async/models/graph_datetime_value_model.py +102 -0
- hyperstack_async/models/image.py +104 -0
- hyperstack_async/models/image_fields.py +132 -0
- hyperstack_async/models/image_generation_billing_history_details_response_schema.py +108 -0
- hyperstack_async/models/image_get_response.py +114 -0
- hyperstack_async/models/images.py +112 -0
- hyperstack_async/models/import_keypair_payload.py +105 -0
- hyperstack_async/models/import_keypair_response.py +108 -0
- hyperstack_async/models/infrahub_resource_object_response_for_customer.py +122 -0
- hyperstack_async/models/instance.py +108 -0
- hyperstack_async/models/instance_enhanced_metrics_fields.py +100 -0
- hyperstack_async/models/instance_environment_fields.py +112 -0
- hyperstack_async/models/instance_events.py +112 -0
- hyperstack_async/models/instance_events_fields.py +115 -0
- hyperstack_async/models/instance_fields.py +185 -0
- hyperstack_async/models/instance_flavor_fields.py +126 -0
- hyperstack_async/models/instance_image_fields.py +100 -0
- hyperstack_async/models/instance_keypair_fields.py +100 -0
- hyperstack_async/models/instance_overview_fields.py +108 -0
- hyperstack_async/models/instance_resize_payload.py +106 -0
- hyperstack_async/models/instances.py +118 -0
- hyperstack_async/models/invite_fields.py +107 -0
- hyperstack_async/models/invite_user_payload.py +108 -0
- hyperstack_async/models/invite_user_response_model.py +108 -0
- hyperstack_async/models/keypair_environment_features.py +112 -0
- hyperstack_async/models/keypair_environment_fields.py +113 -0
- hyperstack_async/models/keypair_fields.py +115 -0
- hyperstack_async/models/keypairs.py +118 -0
- hyperstack_async/models/lable_resonse.py +102 -0
- hyperstack_async/models/last_day_cost_fields.py +106 -0
- hyperstack_async/models/last_day_cost_response.py +108 -0
- hyperstack_async/models/logos.py +106 -0
- hyperstack_async/models/manual_reconciliation_model.py +108 -0
- hyperstack_async/models/master_flavors_response.py +112 -0
- hyperstack_async/models/metric_item_fields.py +104 -0
- hyperstack_async/models/metrics.py +114 -0
- hyperstack_async/models/metrics_fields.py +129 -0
- hyperstack_async/models/mfa_status_fields.py +100 -0
- hyperstack_async/models/mfa_status_response.py +108 -0
- hyperstack_async/models/model_evaluation_billing_history_details_response_schema.py +108 -0
- hyperstack_async/models/name_available_model.py +104 -0
- hyperstack_async/models/new_configurations_response.py +108 -0
- hyperstack_async/models/new_model_response.py +114 -0
- hyperstack_async/models/new_stock_response.py +112 -0
- hyperstack_async/models/new_stock_retrive_response.py +108 -0
- hyperstack_async/models/object_storage_access_key_create_request.py +103 -0
- hyperstack_async/models/object_storage_access_key_create_response.py +114 -0
- hyperstack_async/models/object_storage_access_key_list_response.py +114 -0
- hyperstack_async/models/object_storage_access_key_response.py +112 -0
- hyperstack_async/models/object_storage_bucket_list_response.py +110 -0
- hyperstack_async/models/object_storage_bucket_response.py +114 -0
- hyperstack_async/models/object_storage_delete_response.py +100 -0
- hyperstack_async/models/object_storage_error_response.py +104 -0
- hyperstack_async/models/object_storage_health_response.py +100 -0
- hyperstack_async/models/object_storage_pagination_meta.py +104 -0
- hyperstack_async/models/object_storage_region_list_response.py +108 -0
- hyperstack_async/models/object_storage_region_response.py +100 -0
- hyperstack_async/models/object_storage_regions_enum.py +36 -0
- hyperstack_async/models/organization_fields.py +127 -0
- hyperstack_async/models/organization_level_billing_history.py +112 -0
- hyperstack_async/models/organization_level_billing_history_resources.py +110 -0
- hyperstack_async/models/organization_level_billing_history_response_attributes.py +100 -0
- hyperstack_async/models/organization_level_billing_history_response_metrics.py +110 -0
- hyperstack_async/models/organization_level_billing_history_response_model.py +108 -0
- hyperstack_async/models/organization_threshold_fields.py +108 -0
- hyperstack_async/models/organization_threshold_update_response.py +108 -0
- hyperstack_async/models/organization_thresholds_response.py +112 -0
- hyperstack_async/models/organization_user_response_model.py +125 -0
- hyperstack_async/models/overview_info.py +116 -0
- hyperstack_async/models/pagination.py +104 -0
- hyperstack_async/models/pagination_data.py +104 -0
- hyperstack_async/models/partner_config.py +124 -0
- hyperstack_async/models/payment_details_fields.py +131 -0
- hyperstack_async/models/payment_details_response.py +112 -0
- hyperstack_async/models/payment_initiate_fields.py +100 -0
- hyperstack_async/models/payment_initiate_payload.py +100 -0
- hyperstack_async/models/payment_initiate_response.py +108 -0
- hyperstack_async/models/permission_fields.py +111 -0
- hyperstack_async/models/policy_fields.py +117 -0
- hyperstack_async/models/policy_permission_fields.py +104 -0
- hyperstack_async/models/pricebook_model.py +113 -0
- hyperstack_async/models/pricebook_resource_object_response_for_customer.py +112 -0
- hyperstack_async/models/primary_color.py +102 -0
- hyperstack_async/models/profile_fields.py +109 -0
- hyperstack_async/models/profile_list_response.py +112 -0
- hyperstack_async/models/profile_object_fields.py +102 -0
- hyperstack_async/models/rbac_role_detail_response_model.py +108 -0
- hyperstack_async/models/rbac_role_detail_response_model_fixed.py +108 -0
- hyperstack_async/models/rbac_role_field.py +100 -0
- hyperstack_async/models/rbac_role_fields.py +127 -0
- hyperstack_async/models/record_consent_request.py +132 -0
- hyperstack_async/models/redeem_voucher_payload.py +100 -0
- hyperstack_async/models/region_fields.py +120 -0
- hyperstack_async/models/regions.py +112 -0
- hyperstack_async/models/remove_member_from_organization_response_model.py +102 -0
- hyperstack_async/models/remove_member_payload.py +101 -0
- hyperstack_async/models/request_console.py +104 -0
- hyperstack_async/models/request_instance_logs_payload.py +100 -0
- hyperstack_async/models/request_instance_logs_response.py +100 -0
- hyperstack_async/models/resource_billing_events_history_metrics.py +108 -0
- hyperstack_async/models/resource_billing_events_history_response.py +112 -0
- hyperstack_async/models/resource_billing_response_for_customer.py +108 -0
- hyperstack_async/models/resource_level_billing_bucket_details_resources.py +110 -0
- hyperstack_async/models/resource_level_billing_details_attributes.py +104 -0
- hyperstack_async/models/resource_level_billing_details_metrics.py +114 -0
- hyperstack_async/models/resource_level_billing_details_vm.py +112 -0
- hyperstack_async/models/resource_level_billing_details_volume.py +112 -0
- hyperstack_async/models/resource_level_billing_details_volume_attributes.py +108 -0
- hyperstack_async/models/resource_level_billing_details_volume_metrics.py +108 -0
- hyperstack_async/models/resource_level_billing_history.py +118 -0
- hyperstack_async/models/resource_level_billing_history_resources.py +110 -0
- hyperstack_async/models/resource_level_billing_history_resources_cluster.py +120 -0
- hyperstack_async/models/resource_level_billing_history_response_attributes.py +108 -0
- hyperstack_async/models/resource_level_billing_history_response_metrics.py +104 -0
- hyperstack_async/models/resource_level_billing_vm_details_resources.py +110 -0
- hyperstack_async/models/resource_level_billing_volume_details_resources.py +110 -0
- hyperstack_async/models/resource_level_bucket_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_level_bucket_billing_history_response_model.py +108 -0
- hyperstack_async/models/resource_level_cluster_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_level_cluster_billing_history_response_model.py +108 -0
- hyperstack_async/models/resource_level_cluster_graph_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_level_graph_billing_detail_volume.py +114 -0
- hyperstack_async/models/resource_level_graph_billing_details_attributes.py +104 -0
- hyperstack_async/models/resource_level_graph_billing_details_bucket.py +114 -0
- hyperstack_async/models/resource_level_graph_billing_details_metrics.py +110 -0
- hyperstack_async/models/resource_level_graph_billing_details_vm.py +114 -0
- hyperstack_async/models/resource_level_graph_billing_vm_details_resources.py +110 -0
- hyperstack_async/models/resource_level_graph_billing_volume_details_resources.py +110 -0
- hyperstack_async/models/resource_level_vm_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_level_vm_billing_history_response_model.py +108 -0
- hyperstack_async/models/resource_level_vm_graph_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_level_volume_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_level_volume_billing_history_response_model.py +108 -0
- hyperstack_async/models/resource_level_volume_graph_billing_details_response_model.py +108 -0
- hyperstack_async/models/resource_object_response_for_customer.py +106 -0
- hyperstack_async/models/response_model.py +102 -0
- hyperstack_async/models/role_permission_fields.py +104 -0
- hyperstack_async/models/role_policy_fields.py +104 -0
- hyperstack_async/models/secondary_color.py +102 -0
- hyperstack_async/models/security_group_rule.py +108 -0
- hyperstack_async/models/security_group_rule_fields.py +117 -0
- hyperstack_async/models/security_rules_fields_for_instance.py +117 -0
- hyperstack_async/models/security_rules_protocol_fields.py +104 -0
- hyperstack_async/models/serverless_inferenced_billing_history_details_response_schema.py +108 -0
- hyperstack_async/models/snapshot_fields.py +123 -0
- hyperstack_async/models/snapshot_restore_request.py +102 -0
- hyperstack_async/models/snapshot_retrieve.py +108 -0
- hyperstack_async/models/snapshot_retrieve_fields.py +143 -0
- hyperstack_async/models/snapshots.py +118 -0
- hyperstack_async/models/start_deployment.py +108 -0
- hyperstack_async/models/start_deployment_payload.py +106 -0
- hyperstack_async/models/sub_resource_graph_billing_details_metrics.py +165 -0
- hyperstack_async/models/sub_resources_costs_response_model.py +114 -0
- hyperstack_async/models/sub_resources_graph_billing_history_fields.py +110 -0
- hyperstack_async/models/sub_resources_graph_response_model.py +108 -0
- hyperstack_async/models/subscribe_or_unsubscribe_update_payload.py +100 -0
- hyperstack_async/models/supported_keypair_public_key_types_response.py +104 -0
- hyperstack_async/models/template.py +108 -0
- hyperstack_async/models/template_fields.py +111 -0
- hyperstack_async/models/templates.py +112 -0
- hyperstack_async/models/token_based_billing_history_response.py +108 -0
- hyperstack_async/models/update_auto_topup_payload.py +102 -0
- hyperstack_async/models/update_auto_topup_response.py +108 -0
- hyperstack_async/models/update_cluster_node_group_payload.py +105 -0
- hyperstack_async/models/update_consent_request.py +123 -0
- hyperstack_async/models/update_email_preference_input.py +100 -0
- hyperstack_async/models/update_email_preference_response.py +100 -0
- hyperstack_async/models/update_environment.py +101 -0
- hyperstack_async/models/update_keypair_name.py +101 -0
- hyperstack_async/models/update_keypair_name_response.py +108 -0
- hyperstack_async/models/update_organization_payload.py +101 -0
- hyperstack_async/models/update_organization_response_model.py +102 -0
- hyperstack_async/models/update_template.py +104 -0
- hyperstack_async/models/update_volume_attachment_payload.py +100 -0
- hyperstack_async/models/update_volume_payload.py +100 -0
- hyperstack_async/models/update_volume_response.py +110 -0
- hyperstack_async/models/uris.py +112 -0
- hyperstack_async/models/user_consent.py +116 -0
- hyperstack_async/models/user_consent_event.py +112 -0
- hyperstack_async/models/user_consents_response.py +108 -0
- hyperstack_async/models/user_default_choice_for_user_fields.py +104 -0
- hyperstack_async/models/user_default_choices_for_user_response.py +112 -0
- hyperstack_async/models/user_enhanced_metrics_payload.py +100 -0
- hyperstack_async/models/user_enhanced_metrics_response.py +110 -0
- hyperstack_async/models/user_enhanced_metrics_response_fields.py +100 -0
- hyperstack_async/models/user_info_post_payload.py +120 -0
- hyperstack_async/models/user_organizations_response.py +108 -0
- hyperstack_async/models/user_permission_fields.py +104 -0
- hyperstack_async/models/users_info_fields.py +129 -0
- hyperstack_async/models/users_info_list_response.py +108 -0
- hyperstack_async/models/vm_quota.py +112 -0
- hyperstack_async/models/vncurl.py +108 -0
- hyperstack_async/models/vncurl_fields.py +102 -0
- hyperstack_async/models/volume.py +108 -0
- hyperstack_async/models/volume_attachment_fields.py +115 -0
- hyperstack_async/models/volume_fields.py +139 -0
- hyperstack_async/models/volume_fields_for_instance.py +110 -0
- hyperstack_async/models/volume_overview_fields.py +104 -0
- hyperstack_async/models/volume_types.py +104 -0
- hyperstack_async/models/volumes.py +118 -0
- hyperstack_async/models/volumes_fields.py +137 -0
- hyperstack_async/models/voucher.py +110 -0
- hyperstack_async/models/voucher_redeem_response_schema.py +108 -0
- hyperstack_async/models/workload_billing_history_response.py +108 -0
- hyperstack_async/py.typed +0 -0
- hyperstack_async/rest.py +215 -0
- hyperstack_async-1.55.1a0.dist-info/METADATA +25 -0
- hyperstack_async-1.55.1a0.dist-info/RECORD +415 -0
- hyperstack_async-1.55.1a0.dist-info/WHEEL +5 -0
- hyperstack_async-1.55.1a0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1340 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Infrahub-API
|
|
5
|
+
|
|
6
|
+
Leverage the Infrahub API and Hyperstack platform to easily create, manage, and scale powerful GPU virtual machines and their associated resources. Access this SDK to automate the deployment of your workloads and streamline your infrastructure management. To contribute, please raise an issue with a bug report, feature request, feedback, or general inquiry.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
import warnings
|
|
15
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
|
+
from typing_extensions import Annotated
|
|
18
|
+
|
|
19
|
+
from pydantic import StrictInt
|
|
20
|
+
from ..models.auth_get_token_response_model import AuthGetTokenResponseModel
|
|
21
|
+
from ..models.auth_user_info_response_model import AuthUserInfoResponseModel
|
|
22
|
+
from ..models.common_response_model import CommonResponseModel
|
|
23
|
+
from ..models.mfa_status_response import MFAStatusResponse
|
|
24
|
+
from ..models.user_organizations_response import UserOrganizationsResponse
|
|
25
|
+
|
|
26
|
+
from ..api_client import ApiClient, RequestSerialized
|
|
27
|
+
from ..api_response import ApiResponse
|
|
28
|
+
from ..rest import RESTResponseType
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class AuthApi:
|
|
32
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
33
|
+
Ref: https://openapi-generator.tech
|
|
34
|
+
|
|
35
|
+
Do not edit the class manually.
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
def __init__(self, api_client=None) -> None:
|
|
39
|
+
if api_client is None:
|
|
40
|
+
api_client = ApiClient.get_default()
|
|
41
|
+
self.api_client = api_client
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
@validate_call
|
|
45
|
+
async def change_organization_for_token(
|
|
46
|
+
self,
|
|
47
|
+
org_id: StrictInt,
|
|
48
|
+
_request_timeout: Union[
|
|
49
|
+
None,
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
51
|
+
Tuple[
|
|
52
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
53
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
54
|
+
]
|
|
55
|
+
] = None,
|
|
56
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_content_type: Optional[StrictStr] = None,
|
|
58
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
59
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
60
|
+
) -> AuthGetTokenResponseModel:
|
|
61
|
+
"""change_organization_for_token
|
|
62
|
+
|
|
63
|
+
Change the organization associated with the current token. This is useful for users who have access to multiple organizations.
|
|
64
|
+
|
|
65
|
+
:param org_id: (required)
|
|
66
|
+
:type org_id: int
|
|
67
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
68
|
+
number provided, it will be total request
|
|
69
|
+
timeout. It can also be a pair (tuple) of
|
|
70
|
+
(connection, read) timeouts.
|
|
71
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
72
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
73
|
+
request; this effectively ignores the
|
|
74
|
+
authentication in the spec for a single request.
|
|
75
|
+
:type _request_auth: dict, optional
|
|
76
|
+
:param _content_type: force content-type for the request.
|
|
77
|
+
:type _content_type: str, Optional
|
|
78
|
+
:param _headers: set to override the headers for a single
|
|
79
|
+
request; this effectively ignores the headers
|
|
80
|
+
in the spec for a single request.
|
|
81
|
+
:type _headers: dict, optional
|
|
82
|
+
:param _host_index: set to override the host_index for a single
|
|
83
|
+
request; this effectively ignores the host_index
|
|
84
|
+
in the spec for a single request.
|
|
85
|
+
:type _host_index: int, optional
|
|
86
|
+
:return: Returns the result object.
|
|
87
|
+
""" # noqa: E501
|
|
88
|
+
|
|
89
|
+
_param = self._change_organization_for_token_serialize(
|
|
90
|
+
org_id=org_id,
|
|
91
|
+
_request_auth=_request_auth,
|
|
92
|
+
_content_type=_content_type,
|
|
93
|
+
_headers=_headers,
|
|
94
|
+
_host_index=_host_index
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
98
|
+
'200': "AuthGetTokenResponseModel",
|
|
99
|
+
'400': "ErrorResponseModel",
|
|
100
|
+
'401': "ErrorResponseModel",
|
|
101
|
+
'404': "ErrorResponseModel",
|
|
102
|
+
'500': None,
|
|
103
|
+
}
|
|
104
|
+
response_data = await self.api_client.call_api(
|
|
105
|
+
*_param,
|
|
106
|
+
_request_timeout=_request_timeout
|
|
107
|
+
)
|
|
108
|
+
await response_data.read()
|
|
109
|
+
return self.api_client.response_deserialize(
|
|
110
|
+
response_data=response_data,
|
|
111
|
+
response_types_map=_response_types_map,
|
|
112
|
+
).data
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
@validate_call
|
|
116
|
+
async def change_organization_for_token_with_http_info(
|
|
117
|
+
self,
|
|
118
|
+
org_id: StrictInt,
|
|
119
|
+
_request_timeout: Union[
|
|
120
|
+
None,
|
|
121
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
122
|
+
Tuple[
|
|
123
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
124
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
125
|
+
]
|
|
126
|
+
] = None,
|
|
127
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
128
|
+
_content_type: Optional[StrictStr] = None,
|
|
129
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
130
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
131
|
+
) -> ApiResponse[AuthGetTokenResponseModel]:
|
|
132
|
+
"""change_organization_for_token
|
|
133
|
+
|
|
134
|
+
Change the organization associated with the current token. This is useful for users who have access to multiple organizations.
|
|
135
|
+
|
|
136
|
+
:param org_id: (required)
|
|
137
|
+
:type org_id: int
|
|
138
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
139
|
+
number provided, it will be total request
|
|
140
|
+
timeout. It can also be a pair (tuple) of
|
|
141
|
+
(connection, read) timeouts.
|
|
142
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
143
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
144
|
+
request; this effectively ignores the
|
|
145
|
+
authentication in the spec for a single request.
|
|
146
|
+
:type _request_auth: dict, optional
|
|
147
|
+
:param _content_type: force content-type for the request.
|
|
148
|
+
:type _content_type: str, Optional
|
|
149
|
+
:param _headers: set to override the headers for a single
|
|
150
|
+
request; this effectively ignores the headers
|
|
151
|
+
in the spec for a single request.
|
|
152
|
+
:type _headers: dict, optional
|
|
153
|
+
:param _host_index: set to override the host_index for a single
|
|
154
|
+
request; this effectively ignores the host_index
|
|
155
|
+
in the spec for a single request.
|
|
156
|
+
:type _host_index: int, optional
|
|
157
|
+
:return: Returns the result object.
|
|
158
|
+
""" # noqa: E501
|
|
159
|
+
|
|
160
|
+
_param = self._change_organization_for_token_serialize(
|
|
161
|
+
org_id=org_id,
|
|
162
|
+
_request_auth=_request_auth,
|
|
163
|
+
_content_type=_content_type,
|
|
164
|
+
_headers=_headers,
|
|
165
|
+
_host_index=_host_index
|
|
166
|
+
)
|
|
167
|
+
|
|
168
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
169
|
+
'200': "AuthGetTokenResponseModel",
|
|
170
|
+
'400': "ErrorResponseModel",
|
|
171
|
+
'401': "ErrorResponseModel",
|
|
172
|
+
'404': "ErrorResponseModel",
|
|
173
|
+
'500': None,
|
|
174
|
+
}
|
|
175
|
+
response_data = await self.api_client.call_api(
|
|
176
|
+
*_param,
|
|
177
|
+
_request_timeout=_request_timeout
|
|
178
|
+
)
|
|
179
|
+
await response_data.read()
|
|
180
|
+
return self.api_client.response_deserialize(
|
|
181
|
+
response_data=response_data,
|
|
182
|
+
response_types_map=_response_types_map,
|
|
183
|
+
)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
@validate_call
|
|
187
|
+
async def change_organization_for_token_without_preload_content(
|
|
188
|
+
self,
|
|
189
|
+
org_id: StrictInt,
|
|
190
|
+
_request_timeout: Union[
|
|
191
|
+
None,
|
|
192
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
193
|
+
Tuple[
|
|
194
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
195
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
196
|
+
]
|
|
197
|
+
] = None,
|
|
198
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
199
|
+
_content_type: Optional[StrictStr] = None,
|
|
200
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
201
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
202
|
+
) -> RESTResponseType:
|
|
203
|
+
"""change_organization_for_token
|
|
204
|
+
|
|
205
|
+
Change the organization associated with the current token. This is useful for users who have access to multiple organizations.
|
|
206
|
+
|
|
207
|
+
:param org_id: (required)
|
|
208
|
+
:type org_id: int
|
|
209
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
210
|
+
number provided, it will be total request
|
|
211
|
+
timeout. It can also be a pair (tuple) of
|
|
212
|
+
(connection, read) timeouts.
|
|
213
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
214
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
215
|
+
request; this effectively ignores the
|
|
216
|
+
authentication in the spec for a single request.
|
|
217
|
+
:type _request_auth: dict, optional
|
|
218
|
+
:param _content_type: force content-type for the request.
|
|
219
|
+
:type _content_type: str, Optional
|
|
220
|
+
:param _headers: set to override the headers for a single
|
|
221
|
+
request; this effectively ignores the headers
|
|
222
|
+
in the spec for a single request.
|
|
223
|
+
:type _headers: dict, optional
|
|
224
|
+
:param _host_index: set to override the host_index for a single
|
|
225
|
+
request; this effectively ignores the host_index
|
|
226
|
+
in the spec for a single request.
|
|
227
|
+
:type _host_index: int, optional
|
|
228
|
+
:return: Returns the result object.
|
|
229
|
+
""" # noqa: E501
|
|
230
|
+
|
|
231
|
+
_param = self._change_organization_for_token_serialize(
|
|
232
|
+
org_id=org_id,
|
|
233
|
+
_request_auth=_request_auth,
|
|
234
|
+
_content_type=_content_type,
|
|
235
|
+
_headers=_headers,
|
|
236
|
+
_host_index=_host_index
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
240
|
+
'200': "AuthGetTokenResponseModel",
|
|
241
|
+
'400': "ErrorResponseModel",
|
|
242
|
+
'401': "ErrorResponseModel",
|
|
243
|
+
'404': "ErrorResponseModel",
|
|
244
|
+
'500': None,
|
|
245
|
+
}
|
|
246
|
+
response_data = await self.api_client.call_api(
|
|
247
|
+
*_param,
|
|
248
|
+
_request_timeout=_request_timeout
|
|
249
|
+
)
|
|
250
|
+
return response_data.response
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
def _change_organization_for_token_serialize(
|
|
254
|
+
self,
|
|
255
|
+
org_id,
|
|
256
|
+
_request_auth,
|
|
257
|
+
_content_type,
|
|
258
|
+
_headers,
|
|
259
|
+
_host_index,
|
|
260
|
+
) -> RequestSerialized:
|
|
261
|
+
|
|
262
|
+
_host = None
|
|
263
|
+
|
|
264
|
+
_collection_formats: Dict[str, str] = {
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
_path_params: Dict[str, str] = {}
|
|
268
|
+
_query_params: List[Tuple[str, str]] = []
|
|
269
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
270
|
+
_form_params: List[Tuple[str, str]] = []
|
|
271
|
+
_files: Dict[
|
|
272
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
273
|
+
] = {}
|
|
274
|
+
_body_params: Optional[bytes] = None
|
|
275
|
+
|
|
276
|
+
# process the path parameters
|
|
277
|
+
if org_id is not None:
|
|
278
|
+
_path_params['org_id'] = org_id
|
|
279
|
+
# process the query parameters
|
|
280
|
+
# process the header parameters
|
|
281
|
+
# process the form parameters
|
|
282
|
+
# process the body parameter
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
# set the HTTP header `Accept`
|
|
286
|
+
if 'Accept' not in _header_params:
|
|
287
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
288
|
+
[
|
|
289
|
+
'application/json'
|
|
290
|
+
]
|
|
291
|
+
)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
# authentication setting
|
|
295
|
+
_auth_settings: List[str] = [
|
|
296
|
+
'apiKey'
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
return self.api_client.param_serialize(
|
|
300
|
+
method='GET',
|
|
301
|
+
resource_path='/auth/token/change-org/{org_id}',
|
|
302
|
+
path_params=_path_params,
|
|
303
|
+
query_params=_query_params,
|
|
304
|
+
header_params=_header_params,
|
|
305
|
+
body=_body_params,
|
|
306
|
+
post_params=_form_params,
|
|
307
|
+
files=_files,
|
|
308
|
+
auth_settings=_auth_settings,
|
|
309
|
+
collection_formats=_collection_formats,
|
|
310
|
+
_host=_host,
|
|
311
|
+
_request_auth=_request_auth
|
|
312
|
+
)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
@validate_call
|
|
318
|
+
async def disable_mfa(
|
|
319
|
+
self,
|
|
320
|
+
_request_timeout: Union[
|
|
321
|
+
None,
|
|
322
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
323
|
+
Tuple[
|
|
324
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
325
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
326
|
+
]
|
|
327
|
+
] = None,
|
|
328
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
329
|
+
_content_type: Optional[StrictStr] = None,
|
|
330
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
331
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
332
|
+
) -> CommonResponseModel:
|
|
333
|
+
"""disable_mfa
|
|
334
|
+
|
|
335
|
+
Disable Multi-Factor Authentication (MFA) for the currently authenticated user. This endpoint is used to turn off MFA.
|
|
336
|
+
|
|
337
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
338
|
+
number provided, it will be total request
|
|
339
|
+
timeout. It can also be a pair (tuple) of
|
|
340
|
+
(connection, read) timeouts.
|
|
341
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
342
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
343
|
+
request; this effectively ignores the
|
|
344
|
+
authentication in the spec for a single request.
|
|
345
|
+
:type _request_auth: dict, optional
|
|
346
|
+
:param _content_type: force content-type for the request.
|
|
347
|
+
:type _content_type: str, Optional
|
|
348
|
+
:param _headers: set to override the headers for a single
|
|
349
|
+
request; this effectively ignores the headers
|
|
350
|
+
in the spec for a single request.
|
|
351
|
+
:type _headers: dict, optional
|
|
352
|
+
:param _host_index: set to override the host_index for a single
|
|
353
|
+
request; this effectively ignores the host_index
|
|
354
|
+
in the spec for a single request.
|
|
355
|
+
:type _host_index: int, optional
|
|
356
|
+
:return: Returns the result object.
|
|
357
|
+
""" # noqa: E501
|
|
358
|
+
|
|
359
|
+
_param = self._disable_mfa_serialize(
|
|
360
|
+
_request_auth=_request_auth,
|
|
361
|
+
_content_type=_content_type,
|
|
362
|
+
_headers=_headers,
|
|
363
|
+
_host_index=_host_index
|
|
364
|
+
)
|
|
365
|
+
|
|
366
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
367
|
+
'200': "CommonResponseModel",
|
|
368
|
+
'401': "ErrorResponseModel",
|
|
369
|
+
'403': "ErrorResponseModel",
|
|
370
|
+
'404': "ErrorResponseModel",
|
|
371
|
+
'500': "ErrorResponseModel",
|
|
372
|
+
}
|
|
373
|
+
response_data = await self.api_client.call_api(
|
|
374
|
+
*_param,
|
|
375
|
+
_request_timeout=_request_timeout
|
|
376
|
+
)
|
|
377
|
+
await response_data.read()
|
|
378
|
+
return self.api_client.response_deserialize(
|
|
379
|
+
response_data=response_data,
|
|
380
|
+
response_types_map=_response_types_map,
|
|
381
|
+
).data
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
@validate_call
|
|
385
|
+
async def disable_mfa_with_http_info(
|
|
386
|
+
self,
|
|
387
|
+
_request_timeout: Union[
|
|
388
|
+
None,
|
|
389
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
390
|
+
Tuple[
|
|
391
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
392
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
393
|
+
]
|
|
394
|
+
] = None,
|
|
395
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
396
|
+
_content_type: Optional[StrictStr] = None,
|
|
397
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
398
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
399
|
+
) -> ApiResponse[CommonResponseModel]:
|
|
400
|
+
"""disable_mfa
|
|
401
|
+
|
|
402
|
+
Disable Multi-Factor Authentication (MFA) for the currently authenticated user. This endpoint is used to turn off MFA.
|
|
403
|
+
|
|
404
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
405
|
+
number provided, it will be total request
|
|
406
|
+
timeout. It can also be a pair (tuple) of
|
|
407
|
+
(connection, read) timeouts.
|
|
408
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
409
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
410
|
+
request; this effectively ignores the
|
|
411
|
+
authentication in the spec for a single request.
|
|
412
|
+
:type _request_auth: dict, optional
|
|
413
|
+
:param _content_type: force content-type for the request.
|
|
414
|
+
:type _content_type: str, Optional
|
|
415
|
+
:param _headers: set to override the headers for a single
|
|
416
|
+
request; this effectively ignores the headers
|
|
417
|
+
in the spec for a single request.
|
|
418
|
+
:type _headers: dict, optional
|
|
419
|
+
:param _host_index: set to override the host_index for a single
|
|
420
|
+
request; this effectively ignores the host_index
|
|
421
|
+
in the spec for a single request.
|
|
422
|
+
:type _host_index: int, optional
|
|
423
|
+
:return: Returns the result object.
|
|
424
|
+
""" # noqa: E501
|
|
425
|
+
|
|
426
|
+
_param = self._disable_mfa_serialize(
|
|
427
|
+
_request_auth=_request_auth,
|
|
428
|
+
_content_type=_content_type,
|
|
429
|
+
_headers=_headers,
|
|
430
|
+
_host_index=_host_index
|
|
431
|
+
)
|
|
432
|
+
|
|
433
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
434
|
+
'200': "CommonResponseModel",
|
|
435
|
+
'401': "ErrorResponseModel",
|
|
436
|
+
'403': "ErrorResponseModel",
|
|
437
|
+
'404': "ErrorResponseModel",
|
|
438
|
+
'500': "ErrorResponseModel",
|
|
439
|
+
}
|
|
440
|
+
response_data = await self.api_client.call_api(
|
|
441
|
+
*_param,
|
|
442
|
+
_request_timeout=_request_timeout
|
|
443
|
+
)
|
|
444
|
+
await response_data.read()
|
|
445
|
+
return self.api_client.response_deserialize(
|
|
446
|
+
response_data=response_data,
|
|
447
|
+
response_types_map=_response_types_map,
|
|
448
|
+
)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
@validate_call
|
|
452
|
+
async def disable_mfa_without_preload_content(
|
|
453
|
+
self,
|
|
454
|
+
_request_timeout: Union[
|
|
455
|
+
None,
|
|
456
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
457
|
+
Tuple[
|
|
458
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
459
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
460
|
+
]
|
|
461
|
+
] = None,
|
|
462
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
463
|
+
_content_type: Optional[StrictStr] = None,
|
|
464
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
465
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
466
|
+
) -> RESTResponseType:
|
|
467
|
+
"""disable_mfa
|
|
468
|
+
|
|
469
|
+
Disable Multi-Factor Authentication (MFA) for the currently authenticated user. This endpoint is used to turn off MFA.
|
|
470
|
+
|
|
471
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
472
|
+
number provided, it will be total request
|
|
473
|
+
timeout. It can also be a pair (tuple) of
|
|
474
|
+
(connection, read) timeouts.
|
|
475
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
476
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
477
|
+
request; this effectively ignores the
|
|
478
|
+
authentication in the spec for a single request.
|
|
479
|
+
:type _request_auth: dict, optional
|
|
480
|
+
:param _content_type: force content-type for the request.
|
|
481
|
+
:type _content_type: str, Optional
|
|
482
|
+
:param _headers: set to override the headers for a single
|
|
483
|
+
request; this effectively ignores the headers
|
|
484
|
+
in the spec for a single request.
|
|
485
|
+
:type _headers: dict, optional
|
|
486
|
+
:param _host_index: set to override the host_index for a single
|
|
487
|
+
request; this effectively ignores the host_index
|
|
488
|
+
in the spec for a single request.
|
|
489
|
+
:type _host_index: int, optional
|
|
490
|
+
:return: Returns the result object.
|
|
491
|
+
""" # noqa: E501
|
|
492
|
+
|
|
493
|
+
_param = self._disable_mfa_serialize(
|
|
494
|
+
_request_auth=_request_auth,
|
|
495
|
+
_content_type=_content_type,
|
|
496
|
+
_headers=_headers,
|
|
497
|
+
_host_index=_host_index
|
|
498
|
+
)
|
|
499
|
+
|
|
500
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
501
|
+
'200': "CommonResponseModel",
|
|
502
|
+
'401': "ErrorResponseModel",
|
|
503
|
+
'403': "ErrorResponseModel",
|
|
504
|
+
'404': "ErrorResponseModel",
|
|
505
|
+
'500': "ErrorResponseModel",
|
|
506
|
+
}
|
|
507
|
+
response_data = await self.api_client.call_api(
|
|
508
|
+
*_param,
|
|
509
|
+
_request_timeout=_request_timeout
|
|
510
|
+
)
|
|
511
|
+
return response_data.response
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
def _disable_mfa_serialize(
|
|
515
|
+
self,
|
|
516
|
+
_request_auth,
|
|
517
|
+
_content_type,
|
|
518
|
+
_headers,
|
|
519
|
+
_host_index,
|
|
520
|
+
) -> RequestSerialized:
|
|
521
|
+
|
|
522
|
+
_host = None
|
|
523
|
+
|
|
524
|
+
_collection_formats: Dict[str, str] = {
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
_path_params: Dict[str, str] = {}
|
|
528
|
+
_query_params: List[Tuple[str, str]] = []
|
|
529
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
530
|
+
_form_params: List[Tuple[str, str]] = []
|
|
531
|
+
_files: Dict[
|
|
532
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
533
|
+
] = {}
|
|
534
|
+
_body_params: Optional[bytes] = None
|
|
535
|
+
|
|
536
|
+
# process the path parameters
|
|
537
|
+
# process the query parameters
|
|
538
|
+
# process the header parameters
|
|
539
|
+
# process the form parameters
|
|
540
|
+
# process the body parameter
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
# set the HTTP header `Accept`
|
|
544
|
+
if 'Accept' not in _header_params:
|
|
545
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
546
|
+
[
|
|
547
|
+
'application/json'
|
|
548
|
+
]
|
|
549
|
+
)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
# authentication setting
|
|
553
|
+
_auth_settings: List[str] = [
|
|
554
|
+
'apiKey'
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
return self.api_client.param_serialize(
|
|
558
|
+
method='POST',
|
|
559
|
+
resource_path='/auth/me/mfa/disable',
|
|
560
|
+
path_params=_path_params,
|
|
561
|
+
query_params=_query_params,
|
|
562
|
+
header_params=_header_params,
|
|
563
|
+
body=_body_params,
|
|
564
|
+
post_params=_form_params,
|
|
565
|
+
files=_files,
|
|
566
|
+
auth_settings=_auth_settings,
|
|
567
|
+
collection_formats=_collection_formats,
|
|
568
|
+
_host=_host,
|
|
569
|
+
_request_auth=_request_auth
|
|
570
|
+
)
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
@validate_call
|
|
576
|
+
async def get_user_mfa_status(
|
|
577
|
+
self,
|
|
578
|
+
_request_timeout: Union[
|
|
579
|
+
None,
|
|
580
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
581
|
+
Tuple[
|
|
582
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
583
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
584
|
+
]
|
|
585
|
+
] = None,
|
|
586
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
587
|
+
_content_type: Optional[StrictStr] = None,
|
|
588
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
589
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
590
|
+
) -> MFAStatusResponse:
|
|
591
|
+
"""Get MFA status for authenticated user
|
|
592
|
+
|
|
593
|
+
Retrieve the Multi-Factor Authentication (MFA) status for the currentlyauthenticated user. Includes whether MFA is enabled.
|
|
594
|
+
|
|
595
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
596
|
+
number provided, it will be total request
|
|
597
|
+
timeout. It can also be a pair (tuple) of
|
|
598
|
+
(connection, read) timeouts.
|
|
599
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
600
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
601
|
+
request; this effectively ignores the
|
|
602
|
+
authentication in the spec for a single request.
|
|
603
|
+
:type _request_auth: dict, optional
|
|
604
|
+
:param _content_type: force content-type for the request.
|
|
605
|
+
:type _content_type: str, Optional
|
|
606
|
+
:param _headers: set to override the headers for a single
|
|
607
|
+
request; this effectively ignores the headers
|
|
608
|
+
in the spec for a single request.
|
|
609
|
+
:type _headers: dict, optional
|
|
610
|
+
:param _host_index: set to override the host_index for a single
|
|
611
|
+
request; this effectively ignores the host_index
|
|
612
|
+
in the spec for a single request.
|
|
613
|
+
:type _host_index: int, optional
|
|
614
|
+
:return: Returns the result object.
|
|
615
|
+
""" # noqa: E501
|
|
616
|
+
|
|
617
|
+
_param = self._get_user_mfa_status_serialize(
|
|
618
|
+
_request_auth=_request_auth,
|
|
619
|
+
_content_type=_content_type,
|
|
620
|
+
_headers=_headers,
|
|
621
|
+
_host_index=_host_index
|
|
622
|
+
)
|
|
623
|
+
|
|
624
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
625
|
+
'200': "MFAStatusResponse",
|
|
626
|
+
'401': "ErrorResponseModel",
|
|
627
|
+
'404': "ErrorResponseModel",
|
|
628
|
+
'500': "ErrorResponseModel",
|
|
629
|
+
}
|
|
630
|
+
response_data = await self.api_client.call_api(
|
|
631
|
+
*_param,
|
|
632
|
+
_request_timeout=_request_timeout
|
|
633
|
+
)
|
|
634
|
+
await response_data.read()
|
|
635
|
+
return self.api_client.response_deserialize(
|
|
636
|
+
response_data=response_data,
|
|
637
|
+
response_types_map=_response_types_map,
|
|
638
|
+
).data
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
@validate_call
|
|
642
|
+
async def get_user_mfa_status_with_http_info(
|
|
643
|
+
self,
|
|
644
|
+
_request_timeout: Union[
|
|
645
|
+
None,
|
|
646
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
647
|
+
Tuple[
|
|
648
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
649
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
650
|
+
]
|
|
651
|
+
] = None,
|
|
652
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
653
|
+
_content_type: Optional[StrictStr] = None,
|
|
654
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
655
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
656
|
+
) -> ApiResponse[MFAStatusResponse]:
|
|
657
|
+
"""Get MFA status for authenticated user
|
|
658
|
+
|
|
659
|
+
Retrieve the Multi-Factor Authentication (MFA) status for the currentlyauthenticated user. Includes whether MFA is enabled.
|
|
660
|
+
|
|
661
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
662
|
+
number provided, it will be total request
|
|
663
|
+
timeout. It can also be a pair (tuple) of
|
|
664
|
+
(connection, read) timeouts.
|
|
665
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
666
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
667
|
+
request; this effectively ignores the
|
|
668
|
+
authentication in the spec for a single request.
|
|
669
|
+
:type _request_auth: dict, optional
|
|
670
|
+
:param _content_type: force content-type for the request.
|
|
671
|
+
:type _content_type: str, Optional
|
|
672
|
+
:param _headers: set to override the headers for a single
|
|
673
|
+
request; this effectively ignores the headers
|
|
674
|
+
in the spec for a single request.
|
|
675
|
+
:type _headers: dict, optional
|
|
676
|
+
:param _host_index: set to override the host_index for a single
|
|
677
|
+
request; this effectively ignores the host_index
|
|
678
|
+
in the spec for a single request.
|
|
679
|
+
:type _host_index: int, optional
|
|
680
|
+
:return: Returns the result object.
|
|
681
|
+
""" # noqa: E501
|
|
682
|
+
|
|
683
|
+
_param = self._get_user_mfa_status_serialize(
|
|
684
|
+
_request_auth=_request_auth,
|
|
685
|
+
_content_type=_content_type,
|
|
686
|
+
_headers=_headers,
|
|
687
|
+
_host_index=_host_index
|
|
688
|
+
)
|
|
689
|
+
|
|
690
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
691
|
+
'200': "MFAStatusResponse",
|
|
692
|
+
'401': "ErrorResponseModel",
|
|
693
|
+
'404': "ErrorResponseModel",
|
|
694
|
+
'500': "ErrorResponseModel",
|
|
695
|
+
}
|
|
696
|
+
response_data = await self.api_client.call_api(
|
|
697
|
+
*_param,
|
|
698
|
+
_request_timeout=_request_timeout
|
|
699
|
+
)
|
|
700
|
+
await response_data.read()
|
|
701
|
+
return self.api_client.response_deserialize(
|
|
702
|
+
response_data=response_data,
|
|
703
|
+
response_types_map=_response_types_map,
|
|
704
|
+
)
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
@validate_call
|
|
708
|
+
async def get_user_mfa_status_without_preload_content(
|
|
709
|
+
self,
|
|
710
|
+
_request_timeout: Union[
|
|
711
|
+
None,
|
|
712
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
713
|
+
Tuple[
|
|
714
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
715
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
716
|
+
]
|
|
717
|
+
] = None,
|
|
718
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
719
|
+
_content_type: Optional[StrictStr] = None,
|
|
720
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
721
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
722
|
+
) -> RESTResponseType:
|
|
723
|
+
"""Get MFA status for authenticated user
|
|
724
|
+
|
|
725
|
+
Retrieve the Multi-Factor Authentication (MFA) status for the currentlyauthenticated user. Includes whether MFA is enabled.
|
|
726
|
+
|
|
727
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
728
|
+
number provided, it will be total request
|
|
729
|
+
timeout. It can also be a pair (tuple) of
|
|
730
|
+
(connection, read) timeouts.
|
|
731
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
732
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
733
|
+
request; this effectively ignores the
|
|
734
|
+
authentication in the spec for a single request.
|
|
735
|
+
:type _request_auth: dict, optional
|
|
736
|
+
:param _content_type: force content-type for the request.
|
|
737
|
+
:type _content_type: str, Optional
|
|
738
|
+
:param _headers: set to override the headers for a single
|
|
739
|
+
request; this effectively ignores the headers
|
|
740
|
+
in the spec for a single request.
|
|
741
|
+
:type _headers: dict, optional
|
|
742
|
+
:param _host_index: set to override the host_index for a single
|
|
743
|
+
request; this effectively ignores the host_index
|
|
744
|
+
in the spec for a single request.
|
|
745
|
+
:type _host_index: int, optional
|
|
746
|
+
:return: Returns the result object.
|
|
747
|
+
""" # noqa: E501
|
|
748
|
+
|
|
749
|
+
_param = self._get_user_mfa_status_serialize(
|
|
750
|
+
_request_auth=_request_auth,
|
|
751
|
+
_content_type=_content_type,
|
|
752
|
+
_headers=_headers,
|
|
753
|
+
_host_index=_host_index
|
|
754
|
+
)
|
|
755
|
+
|
|
756
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
757
|
+
'200': "MFAStatusResponse",
|
|
758
|
+
'401': "ErrorResponseModel",
|
|
759
|
+
'404': "ErrorResponseModel",
|
|
760
|
+
'500': "ErrorResponseModel",
|
|
761
|
+
}
|
|
762
|
+
response_data = await self.api_client.call_api(
|
|
763
|
+
*_param,
|
|
764
|
+
_request_timeout=_request_timeout
|
|
765
|
+
)
|
|
766
|
+
return response_data.response
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
def _get_user_mfa_status_serialize(
|
|
770
|
+
self,
|
|
771
|
+
_request_auth,
|
|
772
|
+
_content_type,
|
|
773
|
+
_headers,
|
|
774
|
+
_host_index,
|
|
775
|
+
) -> RequestSerialized:
|
|
776
|
+
|
|
777
|
+
_host = None
|
|
778
|
+
|
|
779
|
+
_collection_formats: Dict[str, str] = {
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
_path_params: Dict[str, str] = {}
|
|
783
|
+
_query_params: List[Tuple[str, str]] = []
|
|
784
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
785
|
+
_form_params: List[Tuple[str, str]] = []
|
|
786
|
+
_files: Dict[
|
|
787
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
788
|
+
] = {}
|
|
789
|
+
_body_params: Optional[bytes] = None
|
|
790
|
+
|
|
791
|
+
# process the path parameters
|
|
792
|
+
# process the query parameters
|
|
793
|
+
# process the header parameters
|
|
794
|
+
# process the form parameters
|
|
795
|
+
# process the body parameter
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
# set the HTTP header `Accept`
|
|
799
|
+
if 'Accept' not in _header_params:
|
|
800
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
801
|
+
[
|
|
802
|
+
'application/json'
|
|
803
|
+
]
|
|
804
|
+
)
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
# authentication setting
|
|
808
|
+
_auth_settings: List[str] = [
|
|
809
|
+
'apiKey'
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
return self.api_client.param_serialize(
|
|
813
|
+
method='GET',
|
|
814
|
+
resource_path='/auth/me/mfa',
|
|
815
|
+
path_params=_path_params,
|
|
816
|
+
query_params=_query_params,
|
|
817
|
+
header_params=_header_params,
|
|
818
|
+
body=_body_params,
|
|
819
|
+
post_params=_form_params,
|
|
820
|
+
files=_files,
|
|
821
|
+
auth_settings=_auth_settings,
|
|
822
|
+
collection_formats=_collection_formats,
|
|
823
|
+
_host=_host,
|
|
824
|
+
_request_auth=_request_auth
|
|
825
|
+
)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
@validate_call
|
|
831
|
+
async def get_user_organizations(
|
|
832
|
+
self,
|
|
833
|
+
_request_timeout: Union[
|
|
834
|
+
None,
|
|
835
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
836
|
+
Tuple[
|
|
837
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
838
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
839
|
+
]
|
|
840
|
+
] = None,
|
|
841
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
842
|
+
_content_type: Optional[StrictStr] = None,
|
|
843
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
844
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
845
|
+
) -> UserOrganizationsResponse:
|
|
846
|
+
"""Get User Organizations
|
|
847
|
+
|
|
848
|
+
Retrieve the organizations associated with a user by their user ID. This endpoint is useful for understanding the user's organizational affiliations.
|
|
849
|
+
|
|
850
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
851
|
+
number provided, it will be total request
|
|
852
|
+
timeout. It can also be a pair (tuple) of
|
|
853
|
+
(connection, read) timeouts.
|
|
854
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
855
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
856
|
+
request; this effectively ignores the
|
|
857
|
+
authentication in the spec for a single request.
|
|
858
|
+
:type _request_auth: dict, optional
|
|
859
|
+
:param _content_type: force content-type for the request.
|
|
860
|
+
:type _content_type: str, Optional
|
|
861
|
+
:param _headers: set to override the headers for a single
|
|
862
|
+
request; this effectively ignores the headers
|
|
863
|
+
in the spec for a single request.
|
|
864
|
+
:type _headers: dict, optional
|
|
865
|
+
:param _host_index: set to override the host_index for a single
|
|
866
|
+
request; this effectively ignores the host_index
|
|
867
|
+
in the spec for a single request.
|
|
868
|
+
:type _host_index: int, optional
|
|
869
|
+
:return: Returns the result object.
|
|
870
|
+
""" # noqa: E501
|
|
871
|
+
|
|
872
|
+
_param = self._get_user_organizations_serialize(
|
|
873
|
+
_request_auth=_request_auth,
|
|
874
|
+
_content_type=_content_type,
|
|
875
|
+
_headers=_headers,
|
|
876
|
+
_host_index=_host_index
|
|
877
|
+
)
|
|
878
|
+
|
|
879
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
880
|
+
'200': "UserOrganizationsResponse",
|
|
881
|
+
'400': "ErrorResponseModel",
|
|
882
|
+
'401': "ErrorResponseModel",
|
|
883
|
+
'404': "ErrorResponseModel",
|
|
884
|
+
'500': None,
|
|
885
|
+
}
|
|
886
|
+
response_data = await self.api_client.call_api(
|
|
887
|
+
*_param,
|
|
888
|
+
_request_timeout=_request_timeout
|
|
889
|
+
)
|
|
890
|
+
await response_data.read()
|
|
891
|
+
return self.api_client.response_deserialize(
|
|
892
|
+
response_data=response_data,
|
|
893
|
+
response_types_map=_response_types_map,
|
|
894
|
+
).data
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
@validate_call
|
|
898
|
+
async def get_user_organizations_with_http_info(
|
|
899
|
+
self,
|
|
900
|
+
_request_timeout: Union[
|
|
901
|
+
None,
|
|
902
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
903
|
+
Tuple[
|
|
904
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
905
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
906
|
+
]
|
|
907
|
+
] = None,
|
|
908
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
909
|
+
_content_type: Optional[StrictStr] = None,
|
|
910
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
911
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
912
|
+
) -> ApiResponse[UserOrganizationsResponse]:
|
|
913
|
+
"""Get User Organizations
|
|
914
|
+
|
|
915
|
+
Retrieve the organizations associated with a user by their user ID. This endpoint is useful for understanding the user's organizational affiliations.
|
|
916
|
+
|
|
917
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
918
|
+
number provided, it will be total request
|
|
919
|
+
timeout. It can also be a pair (tuple) of
|
|
920
|
+
(connection, read) timeouts.
|
|
921
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
922
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
923
|
+
request; this effectively ignores the
|
|
924
|
+
authentication in the spec for a single request.
|
|
925
|
+
:type _request_auth: dict, optional
|
|
926
|
+
:param _content_type: force content-type for the request.
|
|
927
|
+
:type _content_type: str, Optional
|
|
928
|
+
:param _headers: set to override the headers for a single
|
|
929
|
+
request; this effectively ignores the headers
|
|
930
|
+
in the spec for a single request.
|
|
931
|
+
:type _headers: dict, optional
|
|
932
|
+
:param _host_index: set to override the host_index for a single
|
|
933
|
+
request; this effectively ignores the host_index
|
|
934
|
+
in the spec for a single request.
|
|
935
|
+
:type _host_index: int, optional
|
|
936
|
+
:return: Returns the result object.
|
|
937
|
+
""" # noqa: E501
|
|
938
|
+
|
|
939
|
+
_param = self._get_user_organizations_serialize(
|
|
940
|
+
_request_auth=_request_auth,
|
|
941
|
+
_content_type=_content_type,
|
|
942
|
+
_headers=_headers,
|
|
943
|
+
_host_index=_host_index
|
|
944
|
+
)
|
|
945
|
+
|
|
946
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
947
|
+
'200': "UserOrganizationsResponse",
|
|
948
|
+
'400': "ErrorResponseModel",
|
|
949
|
+
'401': "ErrorResponseModel",
|
|
950
|
+
'404': "ErrorResponseModel",
|
|
951
|
+
'500': None,
|
|
952
|
+
}
|
|
953
|
+
response_data = await self.api_client.call_api(
|
|
954
|
+
*_param,
|
|
955
|
+
_request_timeout=_request_timeout
|
|
956
|
+
)
|
|
957
|
+
await response_data.read()
|
|
958
|
+
return self.api_client.response_deserialize(
|
|
959
|
+
response_data=response_data,
|
|
960
|
+
response_types_map=_response_types_map,
|
|
961
|
+
)
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
@validate_call
|
|
965
|
+
async def get_user_organizations_without_preload_content(
|
|
966
|
+
self,
|
|
967
|
+
_request_timeout: Union[
|
|
968
|
+
None,
|
|
969
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
970
|
+
Tuple[
|
|
971
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
972
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
973
|
+
]
|
|
974
|
+
] = None,
|
|
975
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
976
|
+
_content_type: Optional[StrictStr] = None,
|
|
977
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
978
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
979
|
+
) -> RESTResponseType:
|
|
980
|
+
"""Get User Organizations
|
|
981
|
+
|
|
982
|
+
Retrieve the organizations associated with a user by their user ID. This endpoint is useful for understanding the user's organizational affiliations.
|
|
983
|
+
|
|
984
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
985
|
+
number provided, it will be total request
|
|
986
|
+
timeout. It can also be a pair (tuple) of
|
|
987
|
+
(connection, read) timeouts.
|
|
988
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
989
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
990
|
+
request; this effectively ignores the
|
|
991
|
+
authentication in the spec for a single request.
|
|
992
|
+
:type _request_auth: dict, optional
|
|
993
|
+
:param _content_type: force content-type for the request.
|
|
994
|
+
:type _content_type: str, Optional
|
|
995
|
+
:param _headers: set to override the headers for a single
|
|
996
|
+
request; this effectively ignores the headers
|
|
997
|
+
in the spec for a single request.
|
|
998
|
+
:type _headers: dict, optional
|
|
999
|
+
:param _host_index: set to override the host_index for a single
|
|
1000
|
+
request; this effectively ignores the host_index
|
|
1001
|
+
in the spec for a single request.
|
|
1002
|
+
:type _host_index: int, optional
|
|
1003
|
+
:return: Returns the result object.
|
|
1004
|
+
""" # noqa: E501
|
|
1005
|
+
|
|
1006
|
+
_param = self._get_user_organizations_serialize(
|
|
1007
|
+
_request_auth=_request_auth,
|
|
1008
|
+
_content_type=_content_type,
|
|
1009
|
+
_headers=_headers,
|
|
1010
|
+
_host_index=_host_index
|
|
1011
|
+
)
|
|
1012
|
+
|
|
1013
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1014
|
+
'200': "UserOrganizationsResponse",
|
|
1015
|
+
'400': "ErrorResponseModel",
|
|
1016
|
+
'401': "ErrorResponseModel",
|
|
1017
|
+
'404': "ErrorResponseModel",
|
|
1018
|
+
'500': None,
|
|
1019
|
+
}
|
|
1020
|
+
response_data = await self.api_client.call_api(
|
|
1021
|
+
*_param,
|
|
1022
|
+
_request_timeout=_request_timeout
|
|
1023
|
+
)
|
|
1024
|
+
return response_data.response
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
def _get_user_organizations_serialize(
|
|
1028
|
+
self,
|
|
1029
|
+
_request_auth,
|
|
1030
|
+
_content_type,
|
|
1031
|
+
_headers,
|
|
1032
|
+
_host_index,
|
|
1033
|
+
) -> RequestSerialized:
|
|
1034
|
+
|
|
1035
|
+
_host = None
|
|
1036
|
+
|
|
1037
|
+
_collection_formats: Dict[str, str] = {
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
_path_params: Dict[str, str] = {}
|
|
1041
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1042
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1043
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1044
|
+
_files: Dict[
|
|
1045
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1046
|
+
] = {}
|
|
1047
|
+
_body_params: Optional[bytes] = None
|
|
1048
|
+
|
|
1049
|
+
# process the path parameters
|
|
1050
|
+
# process the query parameters
|
|
1051
|
+
# process the header parameters
|
|
1052
|
+
# process the form parameters
|
|
1053
|
+
# process the body parameter
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
# set the HTTP header `Accept`
|
|
1057
|
+
if 'Accept' not in _header_params:
|
|
1058
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1059
|
+
[
|
|
1060
|
+
'application/json'
|
|
1061
|
+
]
|
|
1062
|
+
)
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
# authentication setting
|
|
1066
|
+
_auth_settings: List[str] = [
|
|
1067
|
+
'apiKey'
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
return self.api_client.param_serialize(
|
|
1071
|
+
method='GET',
|
|
1072
|
+
resource_path='/auth/me/organizations',
|
|
1073
|
+
path_params=_path_params,
|
|
1074
|
+
query_params=_query_params,
|
|
1075
|
+
header_params=_header_params,
|
|
1076
|
+
body=_body_params,
|
|
1077
|
+
post_params=_form_params,
|
|
1078
|
+
files=_files,
|
|
1079
|
+
auth_settings=_auth_settings,
|
|
1080
|
+
collection_formats=_collection_formats,
|
|
1081
|
+
_host=_host,
|
|
1082
|
+
_request_auth=_request_auth
|
|
1083
|
+
)
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
|
|
1088
|
+
@validate_call
|
|
1089
|
+
async def retrieve_authenticated_user_details(
|
|
1090
|
+
self,
|
|
1091
|
+
_request_timeout: Union[
|
|
1092
|
+
None,
|
|
1093
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1094
|
+
Tuple[
|
|
1095
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1096
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1097
|
+
]
|
|
1098
|
+
] = None,
|
|
1099
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1100
|
+
_content_type: Optional[StrictStr] = None,
|
|
1101
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1102
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1103
|
+
) -> AuthUserInfoResponseModel:
|
|
1104
|
+
"""Retrieve Authenticated User Details
|
|
1105
|
+
|
|
1106
|
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
|
|
1107
|
+
|
|
1108
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1109
|
+
number provided, it will be total request
|
|
1110
|
+
timeout. It can also be a pair (tuple) of
|
|
1111
|
+
(connection, read) timeouts.
|
|
1112
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1113
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1114
|
+
request; this effectively ignores the
|
|
1115
|
+
authentication in the spec for a single request.
|
|
1116
|
+
:type _request_auth: dict, optional
|
|
1117
|
+
:param _content_type: force content-type for the request.
|
|
1118
|
+
:type _content_type: str, Optional
|
|
1119
|
+
:param _headers: set to override the headers for a single
|
|
1120
|
+
request; this effectively ignores the headers
|
|
1121
|
+
in the spec for a single request.
|
|
1122
|
+
:type _headers: dict, optional
|
|
1123
|
+
:param _host_index: set to override the host_index for a single
|
|
1124
|
+
request; this effectively ignores the host_index
|
|
1125
|
+
in the spec for a single request.
|
|
1126
|
+
:type _host_index: int, optional
|
|
1127
|
+
:return: Returns the result object.
|
|
1128
|
+
""" # noqa: E501
|
|
1129
|
+
|
|
1130
|
+
_param = self._retrieve_authenticated_user_details_serialize(
|
|
1131
|
+
_request_auth=_request_auth,
|
|
1132
|
+
_content_type=_content_type,
|
|
1133
|
+
_headers=_headers,
|
|
1134
|
+
_host_index=_host_index
|
|
1135
|
+
)
|
|
1136
|
+
|
|
1137
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1138
|
+
'200': "AuthUserInfoResponseModel",
|
|
1139
|
+
'400': "ErrorResponseModel",
|
|
1140
|
+
'401': "ErrorResponseModel",
|
|
1141
|
+
'500': None,
|
|
1142
|
+
}
|
|
1143
|
+
response_data = await self.api_client.call_api(
|
|
1144
|
+
*_param,
|
|
1145
|
+
_request_timeout=_request_timeout
|
|
1146
|
+
)
|
|
1147
|
+
await response_data.read()
|
|
1148
|
+
return self.api_client.response_deserialize(
|
|
1149
|
+
response_data=response_data,
|
|
1150
|
+
response_types_map=_response_types_map,
|
|
1151
|
+
).data
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
@validate_call
|
|
1155
|
+
async def retrieve_authenticated_user_details_with_http_info(
|
|
1156
|
+
self,
|
|
1157
|
+
_request_timeout: Union[
|
|
1158
|
+
None,
|
|
1159
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1160
|
+
Tuple[
|
|
1161
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1162
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1163
|
+
]
|
|
1164
|
+
] = None,
|
|
1165
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1166
|
+
_content_type: Optional[StrictStr] = None,
|
|
1167
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1168
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1169
|
+
) -> ApiResponse[AuthUserInfoResponseModel]:
|
|
1170
|
+
"""Retrieve Authenticated User Details
|
|
1171
|
+
|
|
1172
|
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
|
|
1173
|
+
|
|
1174
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1175
|
+
number provided, it will be total request
|
|
1176
|
+
timeout. It can also be a pair (tuple) of
|
|
1177
|
+
(connection, read) timeouts.
|
|
1178
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1179
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1180
|
+
request; this effectively ignores the
|
|
1181
|
+
authentication in the spec for a single request.
|
|
1182
|
+
:type _request_auth: dict, optional
|
|
1183
|
+
:param _content_type: force content-type for the request.
|
|
1184
|
+
:type _content_type: str, Optional
|
|
1185
|
+
:param _headers: set to override the headers for a single
|
|
1186
|
+
request; this effectively ignores the headers
|
|
1187
|
+
in the spec for a single request.
|
|
1188
|
+
:type _headers: dict, optional
|
|
1189
|
+
:param _host_index: set to override the host_index for a single
|
|
1190
|
+
request; this effectively ignores the host_index
|
|
1191
|
+
in the spec for a single request.
|
|
1192
|
+
:type _host_index: int, optional
|
|
1193
|
+
:return: Returns the result object.
|
|
1194
|
+
""" # noqa: E501
|
|
1195
|
+
|
|
1196
|
+
_param = self._retrieve_authenticated_user_details_serialize(
|
|
1197
|
+
_request_auth=_request_auth,
|
|
1198
|
+
_content_type=_content_type,
|
|
1199
|
+
_headers=_headers,
|
|
1200
|
+
_host_index=_host_index
|
|
1201
|
+
)
|
|
1202
|
+
|
|
1203
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1204
|
+
'200': "AuthUserInfoResponseModel",
|
|
1205
|
+
'400': "ErrorResponseModel",
|
|
1206
|
+
'401': "ErrorResponseModel",
|
|
1207
|
+
'500': None,
|
|
1208
|
+
}
|
|
1209
|
+
response_data = await self.api_client.call_api(
|
|
1210
|
+
*_param,
|
|
1211
|
+
_request_timeout=_request_timeout
|
|
1212
|
+
)
|
|
1213
|
+
await response_data.read()
|
|
1214
|
+
return self.api_client.response_deserialize(
|
|
1215
|
+
response_data=response_data,
|
|
1216
|
+
response_types_map=_response_types_map,
|
|
1217
|
+
)
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
@validate_call
|
|
1221
|
+
async def retrieve_authenticated_user_details_without_preload_content(
|
|
1222
|
+
self,
|
|
1223
|
+
_request_timeout: Union[
|
|
1224
|
+
None,
|
|
1225
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1226
|
+
Tuple[
|
|
1227
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1228
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1229
|
+
]
|
|
1230
|
+
] = None,
|
|
1231
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1232
|
+
_content_type: Optional[StrictStr] = None,
|
|
1233
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1234
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1235
|
+
) -> RESTResponseType:
|
|
1236
|
+
"""Retrieve Authenticated User Details
|
|
1237
|
+
|
|
1238
|
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
|
|
1239
|
+
|
|
1240
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1241
|
+
number provided, it will be total request
|
|
1242
|
+
timeout. It can also be a pair (tuple) of
|
|
1243
|
+
(connection, read) timeouts.
|
|
1244
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1245
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1246
|
+
request; this effectively ignores the
|
|
1247
|
+
authentication in the spec for a single request.
|
|
1248
|
+
:type _request_auth: dict, optional
|
|
1249
|
+
:param _content_type: force content-type for the request.
|
|
1250
|
+
:type _content_type: str, Optional
|
|
1251
|
+
:param _headers: set to override the headers for a single
|
|
1252
|
+
request; this effectively ignores the headers
|
|
1253
|
+
in the spec for a single request.
|
|
1254
|
+
:type _headers: dict, optional
|
|
1255
|
+
:param _host_index: set to override the host_index for a single
|
|
1256
|
+
request; this effectively ignores the host_index
|
|
1257
|
+
in the spec for a single request.
|
|
1258
|
+
:type _host_index: int, optional
|
|
1259
|
+
:return: Returns the result object.
|
|
1260
|
+
""" # noqa: E501
|
|
1261
|
+
|
|
1262
|
+
_param = self._retrieve_authenticated_user_details_serialize(
|
|
1263
|
+
_request_auth=_request_auth,
|
|
1264
|
+
_content_type=_content_type,
|
|
1265
|
+
_headers=_headers,
|
|
1266
|
+
_host_index=_host_index
|
|
1267
|
+
)
|
|
1268
|
+
|
|
1269
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1270
|
+
'200': "AuthUserInfoResponseModel",
|
|
1271
|
+
'400': "ErrorResponseModel",
|
|
1272
|
+
'401': "ErrorResponseModel",
|
|
1273
|
+
'500': None,
|
|
1274
|
+
}
|
|
1275
|
+
response_data = await self.api_client.call_api(
|
|
1276
|
+
*_param,
|
|
1277
|
+
_request_timeout=_request_timeout
|
|
1278
|
+
)
|
|
1279
|
+
return response_data.response
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
def _retrieve_authenticated_user_details_serialize(
|
|
1283
|
+
self,
|
|
1284
|
+
_request_auth,
|
|
1285
|
+
_content_type,
|
|
1286
|
+
_headers,
|
|
1287
|
+
_host_index,
|
|
1288
|
+
) -> RequestSerialized:
|
|
1289
|
+
|
|
1290
|
+
_host = None
|
|
1291
|
+
|
|
1292
|
+
_collection_formats: Dict[str, str] = {
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
_path_params: Dict[str, str] = {}
|
|
1296
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1297
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1298
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1299
|
+
_files: Dict[
|
|
1300
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1301
|
+
] = {}
|
|
1302
|
+
_body_params: Optional[bytes] = None
|
|
1303
|
+
|
|
1304
|
+
# process the path parameters
|
|
1305
|
+
# process the query parameters
|
|
1306
|
+
# process the header parameters
|
|
1307
|
+
# process the form parameters
|
|
1308
|
+
# process the body parameter
|
|
1309
|
+
|
|
1310
|
+
|
|
1311
|
+
# set the HTTP header `Accept`
|
|
1312
|
+
if 'Accept' not in _header_params:
|
|
1313
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1314
|
+
[
|
|
1315
|
+
'application/json'
|
|
1316
|
+
]
|
|
1317
|
+
)
|
|
1318
|
+
|
|
1319
|
+
|
|
1320
|
+
# authentication setting
|
|
1321
|
+
_auth_settings: List[str] = [
|
|
1322
|
+
'apiKey'
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
return self.api_client.param_serialize(
|
|
1326
|
+
method='GET',
|
|
1327
|
+
resource_path='/auth/me',
|
|
1328
|
+
path_params=_path_params,
|
|
1329
|
+
query_params=_query_params,
|
|
1330
|
+
header_params=_header_params,
|
|
1331
|
+
body=_body_params,
|
|
1332
|
+
post_params=_form_params,
|
|
1333
|
+
files=_files,
|
|
1334
|
+
auth_settings=_auth_settings,
|
|
1335
|
+
collection_formats=_collection_formats,
|
|
1336
|
+
_host=_host,
|
|
1337
|
+
_request_auth=_request_auth
|
|
1338
|
+
)
|
|
1339
|
+
|
|
1340
|
+
|