anyscale 0.24.86__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.
- anyscale/__init__.py +181 -0
- anyscale/_private/anyscale_client/README.md +16 -0
- anyscale/_private/anyscale_client/__init__.py +8 -0
- anyscale/_private/anyscale_client/anyscale_client.py +1847 -0
- anyscale/_private/anyscale_client/common.py +593 -0
- anyscale/_private/anyscale_client/fake_anyscale_client.py +1080 -0
- anyscale/_private/docgen/README.md +15 -0
- anyscale/_private/docgen/__main__.py +700 -0
- anyscale/_private/docgen/api.md +1106 -0
- anyscale/_private/docgen/generator.py +559 -0
- anyscale/_private/docgen/generator_legacy.py +104 -0
- anyscale/_private/docgen/models.md +2261 -0
- anyscale/_private/models/__init__.py +2 -0
- anyscale/_private/models/image_uri.py +116 -0
- anyscale/_private/models/model_base.py +251 -0
- anyscale/_private/sdk/__init__.py +102 -0
- anyscale/_private/sdk/base_sdk.py +35 -0
- anyscale/_private/sdk/timer.py +46 -0
- anyscale/_private/utils/__init__.py +0 -0
- anyscale/_private/utils/progress_util.py +85 -0
- anyscale/_private/workload/__init__.py +2 -0
- anyscale/_private/workload/workload_config.py +195 -0
- anyscale/_private/workload/workload_sdk.py +324 -0
- anyscale/aggregated_instance_usage/__init__.py +36 -0
- anyscale/aggregated_instance_usage/_private/aggregated_instance_usage_sdk.py +30 -0
- anyscale/aggregated_instance_usage/commands.py +42 -0
- anyscale/aggregated_instance_usage/models.py +85 -0
- anyscale/anyscale-cloud-setup-gcp-oa.yaml +88 -0
- anyscale/anyscale-cloud-setup-gcp.yaml +113 -0
- anyscale/anyscale-cloud-setup-oa.yaml +121 -0
- anyscale/anyscale-cloud-setup.yaml +327 -0
- anyscale/anyscale_pydantic/HISTORY.md +1254 -0
- anyscale/anyscale_pydantic/LICENSE +21 -0
- anyscale/anyscale_pydantic/PKG-INFO +1351 -0
- anyscale/anyscale_pydantic/README.md +7 -0
- anyscale/anyscale_pydantic/__init__.py +131 -0
- anyscale/anyscale_pydantic/_hypothesis_plugin.py +391 -0
- anyscale/anyscale_pydantic/annotated_types.py +72 -0
- anyscale/anyscale_pydantic/class_validators.py +361 -0
- anyscale/anyscale_pydantic/color.py +494 -0
- anyscale/anyscale_pydantic/config.py +191 -0
- anyscale/anyscale_pydantic/dataclasses.py +478 -0
- anyscale/anyscale_pydantic/datetime_parse.py +248 -0
- anyscale/anyscale_pydantic/decorator.py +264 -0
- anyscale/anyscale_pydantic/env_settings.py +350 -0
- anyscale/anyscale_pydantic/error_wrappers.py +162 -0
- anyscale/anyscale_pydantic/errors.py +646 -0
- anyscale/anyscale_pydantic/fields.py +1256 -0
- anyscale/anyscale_pydantic/generics.py +400 -0
- anyscale/anyscale_pydantic/json.py +112 -0
- anyscale/anyscale_pydantic/main.py +1109 -0
- anyscale/anyscale_pydantic/mypy.py +943 -0
- anyscale/anyscale_pydantic/networks.py +739 -0
- anyscale/anyscale_pydantic/parse.py +66 -0
- anyscale/anyscale_pydantic/py.typed +0 -0
- anyscale/anyscale_pydantic/schema.py +1164 -0
- anyscale/anyscale_pydantic/tools.py +92 -0
- anyscale/anyscale_pydantic/types.py +1206 -0
- anyscale/anyscale_pydantic/typing.py +603 -0
- anyscale/anyscale_pydantic/utils.py +803 -0
- anyscale/anyscale_pydantic/validators.py +765 -0
- anyscale/anyscale_pydantic/version.py +38 -0
- anyscale/anyscale_schema.json +9 -0
- anyscale/api.py +215 -0
- anyscale/api_utils/README.md +2 -0
- anyscale/api_utils/__init__.py +0 -0
- anyscale/api_utils/common_utils.py +81 -0
- anyscale/api_utils/exceptions/__init__.py +0 -0
- anyscale/api_utils/exceptions/job_errors.py +2 -0
- anyscale/api_utils/job_logs_util.py +116 -0
- anyscale/api_utils/job_util.py +22 -0
- anyscale/api_utils/logs_util.py +61 -0
- anyscale/authenticate.py +298 -0
- anyscale/aws_iam_policies.py +465 -0
- anyscale/background/__init__.py +0 -0
- anyscale/background/job_runner.py +64 -0
- anyscale/cli_logger.py +378 -0
- anyscale/client/.gitignore +66 -0
- anyscale/client/.openapi-generator/VERSION +1 -0
- anyscale/client/.openapi-generator-ignore +23 -0
- anyscale/client/README.md +1070 -0
- anyscale/client/git_push.sh +58 -0
- anyscale/client/openapi_client/__init__.py +667 -0
- anyscale/client/openapi_client/api/__init__.py +6 -0
- anyscale/client/openapi_client/api/default_api.py +40922 -0
- anyscale/client/openapi_client/api_client.py +647 -0
- anyscale/client/openapi_client/configuration.py +373 -0
- anyscale/client/openapi_client/exceptions.py +120 -0
- anyscale/client/openapi_client/models/__init__.py +652 -0
- anyscale/client/openapi_client/models/access_config.py +122 -0
- anyscale/client/openapi_client/models/aggregated_instance_usage_with_cost_model.py +733 -0
- anyscale/client/openapi_client/models/aggregatedinstanceusagewithcostmodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/aica_endpoint.py +527 -0
- anyscale/client/openapi_client/models/aica_endpoint_event.py +433 -0
- anyscale/client/openapi_client/models/aica_endpoint_event_level.py +103 -0
- anyscale/client/openapi_client/models/aica_endpoint_event_type.py +120 -0
- anyscale/client/openapi_client/models/aica_endpoint_scope.py +102 -0
- anyscale/client/openapi_client/models/aica_model.py +398 -0
- anyscale/client/openapi_client/models/aica_model_accelerator_map.py +123 -0
- anyscale/client/openapi_client/models/aica_model_configuration.py +209 -0
- anyscale/client/openapi_client/models/aica_observability_urls.py +178 -0
- anyscale/client/openapi_client/models/aicaendpoint_list_response.py +147 -0
- anyscale/client/openapi_client/models/aicaendpoint_response.py +121 -0
- anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +147 -0
- anyscale/client/openapi_client/models/aicamodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/aicamodel_response.py +121 -0
- anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +254 -0
- anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +121 -0
- anyscale/client/openapi_client/models/alert_type.py +103 -0
- anyscale/client/openapi_client/models/anyscale_aws_account.py +121 -0
- anyscale/client/openapi_client/models/anyscale_service_account.py +256 -0
- anyscale/client/openapi_client/models/anyscale_version_response.py +121 -0
- anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +121 -0
- anyscale/client/openapi_client/models/anyscaled_credential_response.py +121 -0
- anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +121 -0
- anyscale/client/openapi_client/models/anyscaleserviceaccount_response.py +121 -0
- anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +121 -0
- anyscale/client/openapi_client/models/api_key_parameters.py +147 -0
- anyscale/client/openapi_client/models/app_config.py +436 -0
- anyscale/client/openapi_client/models/app_config_config_schema.py +235 -0
- anyscale/client/openapi_client/models/appconfig_list_response.py +147 -0
- anyscale/client/openapi_client/models/appconfig_response.py +121 -0
- anyscale/client/openapi_client/models/application_type.py +99 -0
- anyscale/client/openapi_client/models/applied_snapshot.py +175 -0
- anyscale/client/openapi_client/models/apply_production_service_v2_model.py +490 -0
- anyscale/client/openapi_client/models/archive_status.py +101 -0
- anyscale/client/openapi_client/models/archived_logs_info.py +164 -0
- anyscale/client/openapi_client/models/archivedlogsinfo_response.py +121 -0
- anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +152 -0
- anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +121 -0
- anyscale/client/openapi_client/models/aviary_model_config_v2.py +358 -0
- anyscale/client/openapi_client/models/aws_credentials.py +181 -0
- anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +148 -0
- anyscale/client/openapi_client/models/aws_region_and_zones.py +123 -0
- anyscale/client/openapi_client/models/aws_region_info.py +152 -0
- anyscale/client/openapi_client/models/awsregionandzones_response.py +121 -0
- anyscale/client/openapi_client/models/bank_account_information.py +239 -0
- anyscale/client/openapi_client/models/base_job_status.py +105 -0
- anyscale/client/openapi_client/models/baseimagesenum.py +2130 -0
- anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +121 -0
- anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +173 -0
- anyscale/client/openapi_client/models/billing_information.py +181 -0
- anyscale/client/openapi_client/models/billing_version_code.py +100 -0
- anyscale/client/openapi_client/models/body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post.py +121 -0
- anyscale/client/openapi_client/models/buffer_registration.py +285 -0
- anyscale/client/openapi_client/models/build.py +607 -0
- anyscale/client/openapi_client/models/build_log_response.py +123 -0
- anyscale/client/openapi_client/models/build_registration.py +285 -0
- anyscale/client/openapi_client/models/build_response.py +121 -0
- anyscale/client/openapi_client/models/build_status.py +104 -0
- anyscale/client/openapi_client/models/buildlogresponse_response.py +121 -0
- anyscale/client/openapi_client/models/card.py +181 -0
- anyscale/client/openapi_client/models/card_id.py +108 -0
- anyscale/client/openapi_client/models/card_list_response.py +147 -0
- anyscale/client/openapi_client/models/change_password_params.py +148 -0
- anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py +208 -0
- anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py +121 -0
- anyscale/client/openapi_client/models/clone_experimental_workspace.py +151 -0
- anyscale/client/openapi_client/models/cloud.py +802 -0
- anyscale/client/openapi_client/models/cloud_analytics_event.py +351 -0
- anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +152 -0
- anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +117 -0
- anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +103 -0
- anyscale/client/openapi_client/models/cloud_analytics_event_error.py +150 -0
- anyscale/client/openapi_client/models/cloud_analytics_event_name.py +109 -0
- anyscale/client/openapi_client/models/cloud_collaborator.py +175 -0
- anyscale/client/openapi_client/models/cloud_collaborator_value.py +177 -0
- anyscale/client/openapi_client/models/cloud_collaborators_query.py +122 -0
- anyscale/client/openapi_client/models/cloud_config.py +206 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_access_mode.py +100 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +102 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +268 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +152 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_scheme.py +100 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py +209 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.py +296 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_scheme.py +100 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_request_scope.py +100 -0
- anyscale/client/openapi_client/models/cloud_hosting_type.py +100 -0
- anyscale/client/openapi_client/models/cloud_list_response.py +147 -0
- anyscale/client/openapi_client/models/cloud_name_options.py +121 -0
- anyscale/client/openapi_client/models/cloud_overview_dashboard.py +175 -0
- anyscale/client/openapi_client/models/cloud_project_collaborator.py +175 -0
- anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +121 -0
- anyscale/client/openapi_client/models/cloud_provider.py +102 -0
- anyscale/client/openapi_client/models/cloud_providers.py +103 -0
- anyscale/client/openapi_client/models/cloud_region_and_zones.py +123 -0
- anyscale/client/openapi_client/models/cloud_region_info.py +152 -0
- anyscale/client/openapi_client/models/cloud_resource.py +740 -0
- anyscale/client/openapi_client/models/cloud_resource_gcp.py +691 -0
- anyscale/client/openapi_client/models/cloud_response.py +121 -0
- anyscale/client/openapi_client/models/cloud_state.py +104 -0
- anyscale/client/openapi_client/models/cloud_status.py +100 -0
- anyscale/client/openapi_client/models/cloud_type.py +100 -0
- anyscale/client/openapi_client/models/cloud_types.py +100 -0
- anyscale/client/openapi_client/models/cloud_version.py +100 -0
- anyscale/client/openapi_client/models/cloud_waitlist_status.py +102 -0
- anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +830 -0
- anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +830 -0
- anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +147 -0
- anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +121 -0
- anyscale/client/openapi_client/models/clouddatabucketpresignedurlresponse_response.py +121 -0
- anyscale/client/openapi_client/models/cloudoverviewdashboard_response.py +121 -0
- anyscale/client/openapi_client/models/cloudregionandzones_response.py +121 -0
- anyscale/client/openapi_client/models/cloudresource_response.py +121 -0
- anyscale/client/openapi_client/models/cloudresourcegcp_response.py +121 -0
- anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +121 -0
- anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +121 -0
- anyscale/client/openapi_client/models/cluster_auth_response.py +148 -0
- anyscale/client/openapi_client/models/cluster_config.py +178 -0
- anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +204 -0
- anyscale/client/openapi_client/models/cluster_environments_query.py +290 -0
- anyscale/client/openapi_client/models/cluster_event.py +174 -0
- anyscale/client/openapi_client/models/cluster_events_output.py +175 -0
- anyscale/client/openapi_client/models/cluster_features.py +152 -0
- anyscale/client/openapi_client/models/cluster_management_stack_versions.py +100 -0
- anyscale/client/openapi_client/models/cluster_startup.py +208 -0
- anyscale/client/openapi_client/models/cluster_status.py +104 -0
- anyscale/client/openapi_client/models/cluster_status_details.py +100 -0
- anyscale/client/openapi_client/models/clusterauthresponse_response.py +121 -0
- anyscale/client/openapi_client/models/clusterconfig_response.py +121 -0
- anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +121 -0
- anyscale/client/openapi_client/models/clustereventsoutput_response.py +121 -0
- anyscale/client/openapi_client/models/clusterfeatures_response.py +121 -0
- anyscale/client/openapi_client/models/company_size.py +103 -0
- anyscale/client/openapi_client/models/compute_node_type.py +292 -0
- anyscale/client/openapi_client/models/compute_stack.py +100 -0
- anyscale/client/openapi_client/models/compute_template.py +415 -0
- anyscale/client/openapi_client/models/compute_template_config.py +461 -0
- anyscale/client/openapi_client/models/compute_template_query.py +316 -0
- anyscale/client/openapi_client/models/computetemplate_response.py +121 -0
- anyscale/client/openapi_client/models/computetemplateconfig_response.py +121 -0
- anyscale/client/openapi_client/models/create_aica_endpoint.py +210 -0
- anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +173 -0
- anyscale/client/openapi_client/models/create_analytics_event.py +122 -0
- anyscale/client/openapi_client/models/create_app_config.py +235 -0
- anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +235 -0
- anyscale/client/openapi_client/models/create_billing_version.py +181 -0
- anyscale/client/openapi_client/models/create_bug_report_response.py +152 -0
- anyscale/client/openapi_client/models/create_build.py +263 -0
- anyscale/client/openapi_client/models/create_byod_app_config.py +180 -0
- anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +206 -0
- anyscale/client/openapi_client/models/create_byod_build.py +152 -0
- anyscale/client/openapi_client/models/create_cloud_collaborator.py +148 -0
- anyscale/client/openapi_client/models/create_cloud_resource.py +682 -0
- anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +633 -0
- anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +546 -0
- anyscale/client/openapi_client/models/create_cluster_compute_config.py +463 -0
- anyscale/client/openapi_client/models/create_compute_template.py +229 -0
- anyscale/client/openapi_client/models/create_compute_template_config.py +464 -0
- anyscale/client/openapi_client/models/create_dataset.py +200 -0
- anyscale/client/openapi_client/models/create_experimental_workspace.py +435 -0
- anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +123 -0
- anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +156 -0
- anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +353 -0
- anyscale/client/openapi_client/models/create_instance_usage_budget.py +253 -0
- anyscale/client/openapi_client/models/create_internal_production_job.py +262 -0
- anyscale/client/openapi_client/models/create_job_queue_config.py +206 -0
- anyscale/client/openapi_client/models/create_job_queue_requests.py +323 -0
- anyscale/client/openapi_client/models/create_machine_pool_request.py +151 -0
- anyscale/client/openapi_client/models/create_machine_pool_response.py +123 -0
- anyscale/client/openapi_client/models/create_machine_request.py +151 -0
- anyscale/client/openapi_client/models/create_machine_response.py +123 -0
- anyscale/client/openapi_client/models/create_metronome_webhook_notification.py +175 -0
- anyscale/client/openapi_client/models/create_notification_channel_record.py +146 -0
- anyscale/client/openapi_client/models/create_organization_configuration.py +199 -0
- anyscale/client/openapi_client/models/create_organization_invitation.py +121 -0
- anyscale/client/openapi_client/models/create_otp_return_api_model.py +148 -0
- anyscale/client/openapi_client/models/create_production_job_config.py +347 -0
- anyscale/client/openapi_client/models/create_resource_quota.py +293 -0
- anyscale/client/openapi_client/models/create_schedule.py +263 -0
- anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +565 -0
- anyscale/client/openapi_client/models/create_session_in_db.py +434 -0
- anyscale/client/openapi_client/models/create_session_response.py +174 -0
- anyscale/client/openapi_client/models/create_user.py +439 -0
- anyscale/client/openapi_client/models/create_user_project_collaborator.py +148 -0
- anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +121 -0
- anyscale/client/openapi_client/models/create_workspace_from_template.py +263 -0
- anyscale/client/openapi_client/models/createbugreportresponse_response.py +121 -0
- anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +121 -0
- anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +121 -0
- anyscale/client/openapi_client/models/createmachineresponse_response.py +121 -0
- anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +121 -0
- anyscale/client/openapi_client/models/createsessionresponse_response.py +121 -0
- anyscale/client/openapi_client/models/credit_card_information.py +268 -0
- anyscale/client/openapi_client/models/customer_alert_status.py +101 -0
- anyscale/client/openapi_client/models/customer_billing_type.py +101 -0
- anyscale/client/openapi_client/models/dataplane_services.py +102 -0
- anyscale/client/openapi_client/models/dataset.py +416 -0
- anyscale/client/openapi_client/models/dataset_list_response.py +150 -0
- anyscale/client/openapi_client/models/dataset_response.py +121 -0
- anyscale/client/openapi_client/models/dataset_upload.py +148 -0
- anyscale/client/openapi_client/models/datasetupload_response.py +121 -0
- anyscale/client/openapi_client/models/decorated_application_template.py +493 -0
- anyscale/client/openapi_client/models/decorated_build.py +664 -0
- anyscale/client/openapi_client/models/decorated_compute_template.py +446 -0
- anyscale/client/openapi_client/models/decorated_compute_template_config.py +490 -0
- anyscale/client/openapi_client/models/decorated_interactive_session.py +793 -0
- anyscale/client/openapi_client/models/decorated_job.py +793 -0
- anyscale/client/openapi_client/models/decorated_job_queue.py +639 -0
- anyscale/client/openapi_client/models/decorated_job_submission.py +575 -0
- anyscale/client/openapi_client/models/decorated_list_service_api_model.py +670 -0
- anyscale/client/openapi_client/models/decorated_production_job.py +805 -0
- anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +319 -0
- anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +641 -0
- anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +437 -0
- anyscale/client/openapi_client/models/decorated_runtime_env.py +488 -0
- anyscale/client/openapi_client/models/decorated_schedule.py +552 -0
- anyscale/client/openapi_client/models/decorated_serve_deployment.py +711 -0
- anyscale/client/openapi_client/models/decorated_service_event_api_model.py +513 -0
- anyscale/client/openapi_client/models/decorated_session.py +1789 -0
- anyscale/client/openapi_client/models/decorated_support_request.py +283 -0
- anyscale/client/openapi_client/models/decorated_unified_job.py +466 -0
- anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedbuild_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedbuild_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedjob_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedjob_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedjobqueue_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedjobqueue_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedproductionjob_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedschedule_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedschedule_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedservedeployment_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedsession_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedsession_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +121 -0
- anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +147 -0
- anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +121 -0
- anyscale/client/openapi_client/models/delete_machine_pool_request.py +123 -0
- anyscale/client/openapi_client/models/delete_machine_request.py +206 -0
- anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py +148 -0
- anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py +121 -0
- anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +121 -0
- anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +152 -0
- anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +121 -0
- anyscale/client/openapi_client/models/dismissal_type.py +100 -0
- anyscale/client/openapi_client/models/editable_cloud_resource.py +206 -0
- anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +178 -0
- anyscale/client/openapi_client/models/error.py +174 -0
- anyscale/client/openapi_client/models/event_level.py +104 -0
- anyscale/client/openapi_client/models/execute_command_response.py +175 -0
- anyscale/client/openapi_client/models/execute_interactive_command_options.py +147 -0
- anyscale/client/openapi_client/models/execute_shell_command_options.py +121 -0
- anyscale/client/openapi_client/models/executecommandresponse_response.py +121 -0
- anyscale/client/openapi_client/models/experimental_workspace.py +748 -0
- anyscale/client/openapi_client/models/experimental_workspaces_sort_field.py +100 -0
- anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +147 -0
- anyscale/client/openapi_client/models/experimentalworkspace_response.py +121 -0
- anyscale/client/openapi_client/models/external_service_status.py +147 -0
- anyscale/client/openapi_client/models/external_service_status_response.py +250 -0
- anyscale/client/openapi_client/models/external_terminal_command.py +280 -0
- anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +121 -0
- anyscale/client/openapi_client/models/feature_compatibility.py +152 -0
- anyscale/client/openapi_client/models/feature_flag_response.py +121 -0
- anyscale/client/openapi_client/models/featureflagresponse_response.py +121 -0
- anyscale/client/openapi_client/models/fine_tune_type.py +100 -0
- anyscale/client/openapi_client/models/fine_tuned_model.py +412 -0
- anyscale/client/openapi_client/models/fine_tuning_job_status.py +103 -0
- anyscale/client/openapi_client/models/finetunedmodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/finetunedmodel_response.py +121 -0
- anyscale/client/openapi_client/models/finish_ft_job_request.py +204 -0
- anyscale/client/openapi_client/models/finish_ft_job_request_v2.py +183 -0
- anyscale/client/openapi_client/models/gcp_file_store_config.py +175 -0
- anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +148 -0
- anyscale/client/openapi_client/models/grafana_dashboard.py +201 -0
- anyscale/client/openapi_client/models/grpc_protocol_config.py +178 -0
- anyscale/client/openapi_client/models/ha_job_error_types.py +103 -0
- anyscale/client/openapi_client/models/ha_job_event_level.py +101 -0
- anyscale/client/openapi_client/models/ha_job_event_origin.py +100 -0
- anyscale/client/openapi_client/models/ha_job_goal_states.py +102 -0
- anyscale/client/openapi_client/models/ha_job_states.py +109 -0
- anyscale/client/openapi_client/models/ha_job_type.py +100 -0
- anyscale/client/openapi_client/models/ha_jobs_sort_field.py +105 -0
- anyscale/client/openapi_client/models/head_ip.py +121 -0
- anyscale/client/openapi_client/models/headip_response.py +121 -0
- anyscale/client/openapi_client/models/http_protocol_config.py +150 -0
- anyscale/client/openapi_client/models/http_validation_error.py +120 -0
- anyscale/client/openapi_client/models/idle_termination_status.py +104 -0
- anyscale/client/openapi_client/models/import_aica_model.py +241 -0
- anyscale/client/openapi_client/models/instance_usage_budget.py +572 -0
- anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py +100 -0
- anyscale/client/openapi_client/models/instanceusagebudget_list_response.py +147 -0
- anyscale/client/openapi_client/models/instanceusagebudget_response.py +121 -0
- anyscale/client/openapi_client/models/integration_details.py +120 -0
- anyscale/client/openapi_client/models/interactive_session_logs.py +152 -0
- anyscale/client/openapi_client/models/interactivesessionlogs_response.py +121 -0
- anyscale/client/openapi_client/models/internal_production_job.py +663 -0
- anyscale/client/openapi_client/models/internalproductionjob_response.py +121 -0
- anyscale/client/openapi_client/models/invoice.py +413 -0
- anyscale/client/openapi_client/models/invoice_list_response.py +147 -0
- anyscale/client/openapi_client/models/invoice_status.py +102 -0
- anyscale/client/openapi_client/models/invoices_query.py +150 -0
- anyscale/client/openapi_client/models/job_access.py +102 -0
- anyscale/client/openapi_client/models/job_queue.py +467 -0
- anyscale/client/openapi_client/models/job_queue_config.py +122 -0
- anyscale/client/openapi_client/models/job_queue_execution_mode.py +101 -0
- anyscale/client/openapi_client/models/job_queue_spec.py +263 -0
- anyscale/client/openapi_client/models/job_queue_state.py +100 -0
- anyscale/client/openapi_client/models/job_queues_query.py +262 -0
- anyscale/client/openapi_client/models/job_run_type.py +101 -0
- anyscale/client/openapi_client/models/job_state_log_level_types.py +100 -0
- anyscale/client/openapi_client/models/job_status.py +105 -0
- anyscale/client/openapi_client/models/job_submissions_sort_field.py +101 -0
- anyscale/client/openapi_client/models/jobqueue_response.py +121 -0
- anyscale/client/openapi_client/models/jobs_logs.py +152 -0
- anyscale/client/openapi_client/models/jobs_logs_query_info.py +181 -0
- anyscale/client/openapi_client/models/jobs_sort_field.py +104 -0
- anyscale/client/openapi_client/models/jobslogs_response.py +121 -0
- anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +121 -0
- anyscale/client/openapi_client/models/json_patch_operation.py +200 -0
- anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py +123 -0
- anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py +123 -0
- anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py +121 -0
- anyscale/client/openapi_client/models/lb_resource.py +123 -0
- anyscale/client/openapi_client/models/lbresource_response.py +121 -0
- anyscale/client/openapi_client/models/list_machine_pools_response.py +123 -0
- anyscale/client/openapi_client/models/list_machines_response.py +121 -0
- anyscale/client/openapi_client/models/list_resource_quotas_query.py +234 -0
- anyscale/client/openapi_client/models/list_response_metadata.py +146 -0
- anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +121 -0
- anyscale/client/openapi_client/models/listmachinesresponse_response.py +121 -0
- anyscale/client/openapi_client/models/log_detail.py +187 -0
- anyscale/client/openapi_client/models/log_details.py +151 -0
- anyscale/client/openapi_client/models/log_download_config.py +206 -0
- anyscale/client/openapi_client/models/log_download_request.py +150 -0
- anyscale/client/openapi_client/models/log_download_result.py +207 -0
- anyscale/client/openapi_client/models/log_file_chunk.py +439 -0
- anyscale/client/openapi_client/models/log_filter.py +430 -0
- anyscale/client/openapi_client/models/log_item.py +181 -0
- anyscale/client/openapi_client/models/log_item_batch.py +151 -0
- anyscale/client/openapi_client/models/log_level_types.py +100 -0
- anyscale/client/openapi_client/models/log_stream.py +151 -0
- anyscale/client/openapi_client/models/logdetails_response.py +121 -0
- anyscale/client/openapi_client/models/logdownloadresult_response.py +121 -0
- anyscale/client/openapi_client/models/login_user_params.py +205 -0
- anyscale/client/openapi_client/models/logitembatch_response.py +121 -0
- anyscale/client/openapi_client/models/logs_output.py +202 -0
- anyscale/client/openapi_client/models/logsoutput_response.py +121 -0
- anyscale/client/openapi_client/models/logstream_response.py +121 -0
- anyscale/client/openapi_client/models/long_running_workload.py +256 -0
- anyscale/client/openapi_client/models/longrunningworkload_list_response.py +147 -0
- anyscale/client/openapi_client/models/machine_allocation_state.py +100 -0
- anyscale/client/openapi_client/models/machine_connection_state.py +100 -0
- anyscale/client/openapi_client/models/machine_info.py +466 -0
- anyscale/client/openapi_client/models/machine_pool.py +266 -0
- anyscale/client/openapi_client/models/metronome_customer_info_model.py +148 -0
- anyscale/client/openapi_client/models/metronome_dashboard_type.py +101 -0
- anyscale/client/openapi_client/models/metronomecustomerinfomodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/metronomecustomerinfomodel_response.py +121 -0
- anyscale/client/openapi_client/models/mini_build.py +267 -0
- anyscale/client/openapi_client/models/mini_cloud.py +321 -0
- anyscale/client/openapi_client/models/mini_cluster.py +148 -0
- anyscale/client/openapi_client/models/mini_compute_template.py +228 -0
- anyscale/client/openapi_client/models/mini_compute_template_config.py +121 -0
- anyscale/client/openapi_client/models/mini_job_run.py +599 -0
- anyscale/client/openapi_client/models/mini_namespace.py +148 -0
- anyscale/client/openapi_client/models/mini_organization.py +148 -0
- anyscale/client/openapi_client/models/mini_production_job.py +202 -0
- anyscale/client/openapi_client/models/mini_project.py +205 -0
- anyscale/client/openapi_client/models/mini_runtime_environment.py +147 -0
- anyscale/client/openapi_client/models/mini_schedule.py +180 -0
- anyscale/client/openapi_client/models/mini_user.py +266 -0
- anyscale/client/openapi_client/models/minibuild_list_response.py +147 -0
- anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +147 -0
- anyscale/client/openapi_client/models/miniproject_list_response.py +147 -0
- anyscale/client/openapi_client/models/monitor_logs_extension.py +100 -0
- anyscale/client/openapi_client/models/named_entity.py +148 -0
- anyscale/client/openapi_client/models/nfs_mount_target.py +151 -0
- anyscale/client/openapi_client/models/node_registration_aws.py +152 -0
- anyscale/client/openapi_client/models/node_registration_gcp.py +123 -0
- anyscale/client/openapi_client/models/node_registration_k8_s.py +178 -0
- anyscale/client/openapi_client/models/node_registration_provisioned.py +150 -0
- anyscale/client/openapi_client/models/node_registration_v2.py +279 -0
- anyscale/client/openapi_client/models/node_type.py +100 -0
- anyscale/client/openapi_client/models/notification_channel_email_config.py +121 -0
- anyscale/client/openapi_client/models/notification_channel_webhook_config.py +121 -0
- anyscale/client/openapi_client/models/onboarding_user_cards_query.py +122 -0
- anyscale/client/openapi_client/models/organization.py +490 -0
- anyscale/client/openapi_client/models/organization_availability.py +148 -0
- anyscale/client/openapi_client/models/organization_collaborator.py +259 -0
- anyscale/client/openapi_client/models/organization_configuration.py +280 -0
- anyscale/client/openapi_client/models/organization_configuration_response.py +227 -0
- anyscale/client/openapi_client/models/organization_invitation.py +255 -0
- anyscale/client/openapi_client/models/organization_invitation_base.py +121 -0
- anyscale/client/openapi_client/models/organization_marketing_questions.py +198 -0
- anyscale/client/openapi_client/models/organization_permission_level.py +100 -0
- anyscale/client/openapi_client/models/organization_project_collaborator.py +175 -0
- anyscale/client/openapi_client/models/organization_project_collaborator_value.py +148 -0
- anyscale/client/openapi_client/models/organization_public_identifier.py +121 -0
- anyscale/client/openapi_client/models/organization_response.py +121 -0
- anyscale/client/openapi_client/models/organization_summary.py +229 -0
- anyscale/client/openapi_client/models/organization_usage_alert.py +210 -0
- anyscale/client/openapi_client/models/organization_usage_alert_severity.py +100 -0
- anyscale/client/openapi_client/models/organizationavailability_response.py +121 -0
- anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +147 -0
- anyscale/client/openapi_client/models/organizationconfiguration_list_response.py +147 -0
- anyscale/client/openapi_client/models/organizationconfigurationresponse_response.py +121 -0
- anyscale/client/openapi_client/models/organizationinvitation_list_response.py +147 -0
- anyscale/client/openapi_client/models/organizationinvitation_response.py +121 -0
- anyscale/client/openapi_client/models/organizationinvitationbase_response.py +121 -0
- anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +147 -0
- anyscale/client/openapi_client/models/organizationpublicidentifier_response.py +121 -0
- anyscale/client/openapi_client/models/organizationusagealert_list_response.py +147 -0
- anyscale/client/openapi_client/models/page_query.py +153 -0
- anyscale/client/openapi_client/models/pause_schedule.py +123 -0
- anyscale/client/openapi_client/models/permission_level.py +101 -0
- anyscale/client/openapi_client/models/platform_fine_tuning_job.py +577 -0
- anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +147 -0
- anyscale/client/openapi_client/models/platformfinetuningjob_response.py +121 -0
- anyscale/client/openapi_client/models/product_autoscaler_flag.py +122 -0
- anyscale/client/openapi_client/models/product_type.py +100 -0
- anyscale/client/openapi_client/models/productautoscalerflag_response.py +121 -0
- anyscale/client/openapi_client/models/production_job.py +437 -0
- anyscale/client/openapi_client/models/production_job_config.py +348 -0
- anyscale/client/openapi_client/models/production_job_event.py +378 -0
- anyscale/client/openapi_client/models/production_job_event_scope_filter.py +101 -0
- anyscale/client/openapi_client/models/production_job_state_transition.py +293 -0
- anyscale/client/openapi_client/models/productionjob_response.py +121 -0
- anyscale/client/openapi_client/models/productionjobevent_list_response.py +147 -0
- anyscale/client/openapi_client/models/project.py +554 -0
- anyscale/client/openapi_client/models/project_base.py +121 -0
- anyscale/client/openapi_client/models/project_collaborator.py +175 -0
- anyscale/client/openapi_client/models/project_collaborator_value.py +175 -0
- anyscale/client/openapi_client/models/project_collaborators_put_message.py +121 -0
- anyscale/client/openapi_client/models/project_create_message.py +148 -0
- anyscale/client/openapi_client/models/project_default_session_name.py +121 -0
- anyscale/client/openapi_client/models/project_delete_message.py +121 -0
- anyscale/client/openapi_client/models/project_list_response.py +147 -0
- anyscale/client/openapi_client/models/project_patch_message.py +121 -0
- anyscale/client/openapi_client/models/project_response.py +121 -0
- anyscale/client/openapi_client/models/projectbase_response.py +121 -0
- anyscale/client/openapi_client/models/projectcollaborator_list_response.py +147 -0
- anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +121 -0
- anyscale/client/openapi_client/models/projects_sort_field.py +101 -0
- anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +121 -0
- anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +121 -0
- anyscale/client/openapi_client/models/protocols.py +150 -0
- anyscale/client/openapi_client/models/provider_metadata.py +205 -0
- anyscale/client/openapi_client/models/providermetadata_response.py +121 -0
- anyscale/client/openapi_client/models/python_modules.py +150 -0
- anyscale/client/openapi_client/models/quota.py +198 -0
- anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +178 -0
- anyscale/client/openapi_client/models/ray_runtime_env_config.py +262 -0
- anyscale/client/openapi_client/models/read_billing_version.py +210 -0
- anyscale/client/openapi_client/models/readbillingversion_list_response.py +147 -0
- anyscale/client/openapi_client/models/replica_details.py +152 -0
- anyscale/client/openapi_client/models/replica_state.py +104 -0
- anyscale/client/openapi_client/models/request_email_magic_link_response.py +147 -0
- anyscale/client/openapi_client/models/request_otp_return_api_model.py +148 -0
- anyscale/client/openapi_client/models/request_password_reset_params.py +147 -0
- anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +121 -0
- anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +121 -0
- anyscale/client/openapi_client/models/reset_password_params.py +148 -0
- anyscale/client/openapi_client/models/resource_quota.py +465 -0
- anyscale/client/openapi_client/models/resource_quota_status.py +123 -0
- anyscale/client/openapi_client/models/resourcequota_list_response.py +147 -0
- anyscale/client/openapi_client/models/resourcequota_response.py +121 -0
- anyscale/client/openapi_client/models/resources.py +234 -0
- anyscale/client/openapi_client/models/resubmit_ft_job_request.py +121 -0
- anyscale/client/openapi_client/models/rollback_service_model.py +122 -0
- anyscale/client/openapi_client/models/rollout_strategy.py +100 -0
- anyscale/client/openapi_client/models/s3_download_location.py +148 -0
- anyscale/client/openapi_client/models/schedule_config.py +151 -0
- anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +101 -0
- anyscale/client/openapi_client/models/serve_deployment_logs.py +152 -0
- anyscale/client/openapi_client/models/serve_deployment_state.py +104 -0
- anyscale/client/openapi_client/models/servedeploymentlogs_response.py +121 -0
- anyscale/client/openapi_client/models/server_session_token.py +121 -0
- anyscale/client/openapi_client/models/serversessiontoken_response.py +121 -0
- anyscale/client/openapi_client/models/service_config.py +178 -0
- anyscale/client/openapi_client/models/service_event_current_state.py +108 -0
- anyscale/client/openapi_client/models/service_event_level.py +102 -0
- anyscale/client/openapi_client/models/service_event_origin.py +103 -0
- anyscale/client/openapi_client/models/service_event_scope.py +103 -0
- anyscale/client/openapi_client/models/service_event_scope_filter.py +104 -0
- anyscale/client/openapi_client/models/service_event_type.py +125 -0
- anyscale/client/openapi_client/models/service_event_verbose_message_model.py +180 -0
- anyscale/client/openapi_client/models/service_goal_states.py +100 -0
- anyscale/client/openapi_client/models/service_observability_urls.py +206 -0
- anyscale/client/openapi_client/models/service_sort_field.py +101 -0
- anyscale/client/openapi_client/models/service_type.py +100 -0
- anyscale/client/openapi_client/models/service_usage.py +353 -0
- anyscale/client/openapi_client/models/service_version_state.py +106 -0
- anyscale/client/openapi_client/models/serviceeventverbosemessagemodel_list_response.py +147 -0
- anyscale/client/openapi_client/models/session.py +834 -0
- anyscale/client/openapi_client/models/session_access.py +102 -0
- anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +121 -0
- anyscale/client/openapi_client/models/session_command.py +413 -0
- anyscale/client/openapi_client/models/session_command_finish_options.py +226 -0
- anyscale/client/openapi_client/models/session_command_id.py +121 -0
- anyscale/client/openapi_client/models/session_command_types.py +100 -0
- anyscale/client/openapi_client/models/session_create_message.py +148 -0
- anyscale/client/openapi_client/models/session_delete_message.py +121 -0
- anyscale/client/openapi_client/models/session_describe.py +175 -0
- anyscale/client/openapi_client/models/session_details.py +148 -0
- anyscale/client/openapi_client/models/session_event.py +267 -0
- anyscale/client/openapi_client/models/session_event_cause.py +150 -0
- anyscale/client/openapi_client/models/session_event_types.py +111 -0
- anyscale/client/openapi_client/models/session_execute_message.py +121 -0
- anyscale/client/openapi_client/models/session_finish_command_message.py +175 -0
- anyscale/client/openapi_client/models/session_history_item.py +146 -0
- anyscale/client/openapi_client/models/session_kill_command_message.py +121 -0
- anyscale/client/openapi_client/models/session_list_response.py +147 -0
- anyscale/client/openapi_client/models/session_patch_message.py +121 -0
- anyscale/client/openapi_client/models/session_response.py +121 -0
- anyscale/client/openapi_client/models/session_ssh_key.py +148 -0
- anyscale/client/openapi_client/models/session_starting_up_data.py +146 -0
- anyscale/client/openapi_client/models/session_state.py +111 -0
- anyscale/client/openapi_client/models/session_state_change_message.py +121 -0
- anyscale/client/openapi_client/models/session_state_data.py +146 -0
- anyscale/client/openapi_client/models/session_stopping_data.py +146 -0
- anyscale/client/openapi_client/models/sessioncommand_list_response.py +147 -0
- anyscale/client/openapi_client/models/sessioncommandid_response.py +121 -0
- anyscale/client/openapi_client/models/sessiondescribe_response.py +121 -0
- anyscale/client/openapi_client/models/sessiondetails_response.py +121 -0
- anyscale/client/openapi_client/models/sessionevent_list_response.py +147 -0
- anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +147 -0
- anyscale/client/openapi_client/models/sessions_sort_field.py +104 -0
- anyscale/client/openapi_client/models/sessionsshkey_response.py +121 -0
- anyscale/client/openapi_client/models/setup_initialize_session_options.py +225 -0
- anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +121 -0
- anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +121 -0
- anyscale/client/openapi_client/models/snapshot_create_message.py +148 -0
- anyscale/client/openapi_client/models/snapshot_delete_message.py +148 -0
- anyscale/client/openapi_client/models/snapshot_patch_message.py +148 -0
- anyscale/client/openapi_client/models/socket_message_schemas.py +499 -0
- anyscale/client/openapi_client/models/socket_message_types.py +113 -0
- anyscale/client/openapi_client/models/socketmessageschemas_response.py +121 -0
- anyscale/client/openapi_client/models/socketmessagetypes_response.py +121 -0
- anyscale/client/openapi_client/models/sort_order.py +100 -0
- anyscale/client/openapi_client/models/sso_login_info.py +151 -0
- anyscale/client/openapi_client/models/ssologininfo_response.py +121 -0
- anyscale/client/openapi_client/models/start_session_options.py +146 -0
- anyscale/client/openapi_client/models/stop_session_options.py +227 -0
- anyscale/client/openapi_client/models/stream_publish_request.py +239 -0
- anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +148 -0
- anyscale/client/openapi_client/models/support_requests_query.py +178 -0
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +1570 -0
- anyscale/client/openapi_client/models/templatized_compute_configs.py +202 -0
- anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +202 -0
- anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +121 -0
- anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +121 -0
- anyscale/client/openapi_client/models/text_query.py +178 -0
- anyscale/client/openapi_client/models/timestamped_logs_output.py +148 -0
- anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +121 -0
- anyscale/client/openapi_client/models/tool.py +100 -0
- anyscale/client/openapi_client/models/tracing_config.py +178 -0
- anyscale/client/openapi_client/models/try_login_email_response.py +208 -0
- anyscale/client/openapi_client/models/tryloginemailresponse_response.py +121 -0
- anyscale/client/openapi_client/models/unified_job_sort_field.py +103 -0
- anyscale/client/openapi_client/models/unified_job_status.py +114 -0
- anyscale/client/openapi_client/models/unified_job_type.py +100 -0
- anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +178 -0
- anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +178 -0
- anyscale/client/openapi_client/models/update_cluster_dns.py +152 -0
- anyscale/client/openapi_client/models/update_compute_template.py +146 -0
- anyscale/client/openapi_client/models/update_compute_template_config.py +464 -0
- anyscale/client/openapi_client/models/update_endpoint.py +152 -0
- anyscale/client/openapi_client/models/update_machine_pool_request.py +151 -0
- anyscale/client/openapi_client/models/update_model_deployment.py +152 -0
- anyscale/client/openapi_client/models/update_organization_collaborator.py +121 -0
- anyscale/client/openapi_client/models/update_project_collaborator.py +121 -0
- anyscale/client/openapi_client/models/update_resource_quota.py +122 -0
- anyscale/client/openapi_client/models/updatemachinepoolresponse_response.py +121 -0
- anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +148 -0
- anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +121 -0
- anyscale/client/openapi_client/models/user_info.py +569 -0
- anyscale/client/openapi_client/models/user_resend_email_options.py +147 -0
- anyscale/client/openapi_client/models/user_service_access_types.py +100 -0
- anyscale/client/openapi_client/models/userinfo_response.py +121 -0
- anyscale/client/openapi_client/models/utm_fields.py +224 -0
- anyscale/client/openapi_client/models/ux_instance.py +468 -0
- anyscale/client/openapi_client/models/validate_otp_params_api_model.py +121 -0
- anyscale/client/openapi_client/models/validation_error.py +175 -0
- anyscale/client/openapi_client/models/verify_response.py +147 -0
- anyscale/client/openapi_client/models/verifyresponse_response.py +121 -0
- anyscale/client/openapi_client/models/visibility.py +100 -0
- anyscale/client/openapi_client/models/waitlist_status_response.py +121 -0
- anyscale/client/openapi_client/models/waitlist_status_type.py +100 -0
- anyscale/client/openapi_client/models/waitliststatusresponse_response.py +121 -0
- anyscale/client/openapi_client/models/wand_b_run_details.py +147 -0
- anyscale/client/openapi_client/models/web_terminal.py +121 -0
- anyscale/client/openapi_client/models/webterminal_list_response.py +147 -0
- anyscale/client/openapi_client/models/webterminal_response.py +121 -0
- anyscale/client/openapi_client/models/worker_node_type.py +404 -0
- anyscale/client/openapi_client/models/workload_type.py +102 -0
- anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +181 -0
- anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +123 -0
- anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +178 -0
- anyscale/client/openapi_client/models/workspace_event.py +325 -0
- anyscale/client/openapi_client/models/workspace_event_source.py +100 -0
- anyscale/client/openapi_client/models/workspace_event_source_filter.py +101 -0
- anyscale/client/openapi_client/models/workspace_readme.py +123 -0
- anyscale/client/openapi_client/models/workspace_snapshot_states.py +108 -0
- anyscale/client/openapi_client/models/workspace_template.py +353 -0
- anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +178 -0
- anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +121 -0
- anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +121 -0
- anyscale/client/openapi_client/models/workspaceevent_list_response.py +147 -0
- anyscale/client/openapi_client/models/workspacereadme_response.py +121 -0
- anyscale/client/openapi_client/models/workspacetemplate_list_response.py +147 -0
- anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +121 -0
- anyscale/client/openapi_client/models/write_cloud.py +546 -0
- anyscale/client/openapi_client/models/write_cluster_config.py +123 -0
- anyscale/client/openapi_client/models/write_project.py +226 -0
- anyscale/client/openapi_client/models/write_session.py +147 -0
- anyscale/client/openapi_client/models/write_support_request.py +121 -0
- anyscale/client/openapi_client/rest.py +296 -0
- anyscale/client/requirements.txt +6 -0
- anyscale/client/setup.cfg +2 -0
- anyscale/client/setup.py +40 -0
- anyscale/client/test-requirements.txt +3 -0
- anyscale/client/tox.ini +9 -0
- anyscale/cloud.py +216 -0
- anyscale/cloud_resource.py +1032 -0
- anyscale/cluster.py +138 -0
- anyscale/cluster_compute.py +167 -0
- anyscale/cluster_env.py +173 -0
- anyscale/commands/__init__.py +0 -0
- anyscale/commands/aggregated_instance_usage_commands.py +86 -0
- anyscale/commands/anyscale_api/__init__.py +0 -0
- anyscale/commands/anyscale_api/api_commands.py +23 -0
- anyscale/commands/anyscale_api/session_commands_commands.py +80 -0
- anyscale/commands/anyscale_api/session_operations_commands.py +28 -0
- anyscale/commands/anyscale_api/sessions_commands.py +152 -0
- anyscale/commands/auth_commands.py +41 -0
- anyscale/commands/cloud_commands.py +1011 -0
- anyscale/commands/cloud_commands_util.py +10 -0
- anyscale/commands/cluster_commands.py +476 -0
- anyscale/commands/cluster_env_commands.py +139 -0
- anyscale/commands/command_examples.py +495 -0
- anyscale/commands/compute_config_commands.py +252 -0
- anyscale/commands/config_commands.py +213 -0
- anyscale/commands/exec_commands.py +14 -0
- anyscale/commands/experimental_integrations_commands.py +70 -0
- anyscale/commands/image_commands.py +125 -0
- anyscale/commands/job_commands.py +745 -0
- anyscale/commands/list_commands.py +85 -0
- anyscale/commands/llm/dataset_commands.py +269 -0
- anyscale/commands/llm/group.py +15 -0
- anyscale/commands/llm/models_commands.py +123 -0
- anyscale/commands/login_commands.py +79 -0
- anyscale/commands/logs_commands.py +312 -0
- anyscale/commands/machine_commands.py +116 -0
- anyscale/commands/machine_pool_commands.py +163 -0
- anyscale/commands/migrate_commands.py +84 -0
- anyscale/commands/project_commands.py +203 -0
- anyscale/commands/resource_quota_commands.py +214 -0
- anyscale/commands/schedule_commands.py +436 -0
- anyscale/commands/service_account_commands.py +72 -0
- anyscale/commands/service_commands.py +738 -0
- anyscale/commands/session_commands_hidden.py +179 -0
- anyscale/commands/util.py +152 -0
- anyscale/commands/workspace_commands.py +511 -0
- anyscale/commands/workspace_commands_v2.py +874 -0
- anyscale/component_activity_util.py +83 -0
- anyscale/compute_config/__init__.py +84 -0
- anyscale/compute_config/_private/compute_config_sdk.py +433 -0
- anyscale/compute_config/commands.py +122 -0
- anyscale/compute_config/models.py +630 -0
- anyscale/conf.py +23 -0
- anyscale/connect.py +1323 -0
- anyscale/connect_utils/__init__.py +0 -0
- anyscale/connect_utils/prepare_cluster.py +962 -0
- anyscale/connect_utils/project.py +298 -0
- anyscale/connect_utils/start_interactive_session.py +437 -0
- anyscale/controllers/__init__.py +0 -0
- anyscale/controllers/auth_controller.py +134 -0
- anyscale/controllers/base_controller.py +52 -0
- anyscale/controllers/cloud_controller.py +3609 -0
- anyscale/controllers/cloud_functional_verification_controller.py +858 -0
- anyscale/controllers/cluster_controller.py +720 -0
- anyscale/controllers/cluster_env_controller.py +219 -0
- anyscale/controllers/compute_config_controller.py +351 -0
- anyscale/controllers/config_controller.py +422 -0
- anyscale/controllers/experimental_integrations_controller.py +80 -0
- anyscale/controllers/job_controller.py +647 -0
- anyscale/controllers/jobs_bg_controller.py +0 -0
- anyscale/controllers/list_controller.py +290 -0
- anyscale/controllers/llm/__init__.py +0 -0
- anyscale/controllers/llm/models_controller.py +144 -0
- anyscale/controllers/logs_controller.py +449 -0
- anyscale/controllers/machine_controller.py +37 -0
- anyscale/controllers/machine_pool_controller.py +86 -0
- anyscale/controllers/project_controller.py +281 -0
- anyscale/controllers/resource_quota_controller.py +183 -0
- anyscale/controllers/schedule_controller.py +333 -0
- anyscale/controllers/service_account_controller.py +168 -0
- anyscale/controllers/service_controller.py +453 -0
- anyscale/controllers/workspace_controller.py +253 -0
- anyscale/feature_flags.py +4 -0
- anyscale/fingerprint.py +62 -0
- anyscale/formatters/__init__.py +0 -0
- anyscale/formatters/clouds_formatter.py +65 -0
- anyscale/formatters/common_formatter.py +22 -0
- anyscale/gcp_verification.py +792 -0
- anyscale/image/__init__.py +73 -0
- anyscale/image/_private/image_sdk.py +202 -0
- anyscale/image/commands.py +117 -0
- anyscale/image/models.py +57 -0
- anyscale/integrations.py +329 -0
- anyscale/job/__init__.py +166 -0
- anyscale/job/_private/job_sdk.py +497 -0
- anyscale/job/commands.py +267 -0
- anyscale/job/models.py +500 -0
- anyscale/links.py +4 -0
- anyscale/llm/__init__.py +2 -0
- anyscale/llm/dataset/__init__.py +2 -0
- anyscale/llm/dataset/_private/__init__.py +0 -0
- anyscale/llm/dataset/_private/docs.py +63 -0
- anyscale/llm/dataset/_private/models.py +71 -0
- anyscale/llm/dataset/_private/sdk.py +147 -0
- anyscale/llm/model/__init__.py +2 -0
- anyscale/llm/model/_private/models_sdk.py +62 -0
- anyscale/llm/model/commands.py +93 -0
- anyscale/llm/model/models.py +171 -0
- anyscale/llm/model/sdk.py +62 -0
- anyscale/llm/sdk.py +27 -0
- anyscale/memorydb_supported_zones.json +22 -0
- anyscale/models/job_model.py +457 -0
- anyscale/models/service_model.py +125 -0
- anyscale/project.py +501 -0
- anyscale/schedule/__init__.py +91 -0
- anyscale/schedule/_private/schedule_sdk.py +165 -0
- anyscale/schedule/commands.py +149 -0
- anyscale/schedule/models.py +145 -0
- anyscale/scripts.py +164 -0
- anyscale/sdk/anyscale_client/__init__.py +235 -0
- anyscale/sdk/anyscale_client/api/__init__.py +6 -0
- anyscale/sdk/anyscale_client/api/default_api.py +11625 -0
- anyscale/sdk/anyscale_client/api_client.py +647 -0
- anyscale/sdk/anyscale_client/configuration.py +373 -0
- anyscale/sdk/anyscale_client/exceptions.py +120 -0
- anyscale/sdk/anyscale_client/models/__init__.py +220 -0
- anyscale/sdk/anyscale_client/models/access_config.py +122 -0
- anyscale/sdk/anyscale_client/models/app_config.py +436 -0
- anyscale/sdk/anyscale_client/models/app_config_config_schema.py +235 -0
- anyscale/sdk/anyscale_client/models/appconfig_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/appconfig_response.py +121 -0
- anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +490 -0
- anyscale/sdk/anyscale_client/models/apply_service_model.py +490 -0
- anyscale/sdk/anyscale_client/models/archive_status.py +101 -0
- anyscale/sdk/anyscale_client/models/base_job_status.py +105 -0
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +2130 -0
- anyscale/sdk/anyscale_client/models/build.py +607 -0
- anyscale/sdk/anyscale_client/models/build_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/build_log_response.py +123 -0
- anyscale/sdk/anyscale_client/models/build_response.py +121 -0
- anyscale/sdk/anyscale_client/models/build_status.py +104 -0
- anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +121 -0
- anyscale/sdk/anyscale_client/models/cloud.py +802 -0
- anyscale/sdk/anyscale_client/models/cloud_config.py +206 -0
- anyscale/sdk/anyscale_client/models/cloud_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/cloud_providers.py +103 -0
- anyscale/sdk/anyscale_client/models/cloud_response.py +121 -0
- anyscale/sdk/anyscale_client/models/cloud_state.py +104 -0
- anyscale/sdk/anyscale_client/models/cloud_status.py +100 -0
- anyscale/sdk/anyscale_client/models/cloud_type.py +100 -0
- anyscale/sdk/anyscale_client/models/cloud_types.py +100 -0
- anyscale/sdk/anyscale_client/models/cloud_version.py +100 -0
- anyscale/sdk/anyscale_client/models/clouds_query.py +150 -0
- anyscale/sdk/anyscale_client/models/cluster.py +721 -0
- anyscale/sdk/anyscale_client/models/cluster_compute.py +415 -0
- anyscale/sdk/anyscale_client/models/cluster_compute_config.py +461 -0
- anyscale/sdk/anyscale_client/models/cluster_computes_query.py +293 -0
- anyscale/sdk/anyscale_client/models/cluster_environment.py +380 -0
- anyscale/sdk/anyscale_client/models/cluster_environment_build.py +578 -0
- anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +123 -0
- anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +237 -0
- anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +104 -0
- anyscale/sdk/anyscale_client/models/cluster_environments_query.py +290 -0
- anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +152 -0
- anyscale/sdk/anyscale_client/models/cluster_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +100 -0
- anyscale/sdk/anyscale_client/models/cluster_operation.py +266 -0
- anyscale/sdk/anyscale_client/models/cluster_operation_type.py +101 -0
- anyscale/sdk/anyscale_client/models/cluster_response.py +121 -0
- anyscale/sdk/anyscale_client/models/cluster_services_urls.py +430 -0
- anyscale/sdk/anyscale_client/models/cluster_state.py +108 -0
- anyscale/sdk/anyscale_client/models/cluster_status.py +104 -0
- anyscale/sdk/anyscale_client/models/cluster_status_details.py +100 -0
- anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/clustercompute_response.py +121 -0
- anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +121 -0
- anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +121 -0
- anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +121 -0
- anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +121 -0
- anyscale/sdk/anyscale_client/models/clusteroperation_response.py +121 -0
- anyscale/sdk/anyscale_client/models/clusters_query.py +234 -0
- anyscale/sdk/anyscale_client/models/compute_node_type.py +292 -0
- anyscale/sdk/anyscale_client/models/compute_stack.py +100 -0
- anyscale/sdk/anyscale_client/models/compute_template.py +415 -0
- anyscale/sdk/anyscale_client/models/compute_template_config.py +461 -0
- anyscale/sdk/anyscale_client/models/compute_template_query.py +316 -0
- anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/computetemplate_response.py +121 -0
- anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +121 -0
- anyscale/sdk/anyscale_client/models/create_app_config.py +235 -0
- anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +235 -0
- anyscale/sdk/anyscale_client/models/create_build.py +263 -0
- anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +206 -0
- anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +180 -0
- anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +152 -0
- anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +208 -0
- anyscale/sdk/anyscale_client/models/create_cloud.py +518 -0
- anyscale/sdk/anyscale_client/models/create_cluster.py +376 -0
- anyscale/sdk/anyscale_client/models/create_cluster_compute.py +229 -0
- anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +463 -0
- anyscale/sdk/anyscale_client/models/create_cluster_environment.py +235 -0
- anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +263 -0
- anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +235 -0
- anyscale/sdk/anyscale_client/models/create_compute_template.py +229 -0
- anyscale/sdk/anyscale_client/models/create_compute_template_config.py +464 -0
- anyscale/sdk/anyscale_client/models/create_job_queue_config.py +206 -0
- anyscale/sdk/anyscale_client/models/create_production_job.py +234 -0
- anyscale/sdk/anyscale_client/models/create_production_job_config.py +347 -0
- anyscale/sdk/anyscale_client/models/create_project.py +207 -0
- anyscale/sdk/anyscale_client/models/create_schedule.py +263 -0
- anyscale/sdk/anyscale_client/models/create_session.py +432 -0
- anyscale/sdk/anyscale_client/models/create_session_command.py +152 -0
- anyscale/sdk/anyscale_client/models/create_sso_config.py +150 -0
- anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +178 -0
- anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +102 -0
- anyscale/sdk/anyscale_client/models/ha_job_states.py +109 -0
- anyscale/sdk/anyscale_client/models/http_protocol_config.py +150 -0
- anyscale/sdk/anyscale_client/models/http_validation_error.py +120 -0
- anyscale/sdk/anyscale_client/models/idle_termination_status.py +104 -0
- anyscale/sdk/anyscale_client/models/job.py +466 -0
- anyscale/sdk/anyscale_client/models/job_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/job_queue_config.py +122 -0
- anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +101 -0
- anyscale/sdk/anyscale_client/models/job_queue_spec.py +263 -0
- anyscale/sdk/anyscale_client/models/job_run_type.py +101 -0
- anyscale/sdk/anyscale_client/models/job_status.py +105 -0
- anyscale/sdk/anyscale_client/models/jobs_query.py +458 -0
- anyscale/sdk/anyscale_client/models/jobs_sort_field.py +104 -0
- anyscale/sdk/anyscale_client/models/list_response_metadata.py +146 -0
- anyscale/sdk/anyscale_client/models/list_service_model.py +347 -0
- anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/log_download_result.py +207 -0
- anyscale/sdk/anyscale_client/models/log_file_chunk.py +439 -0
- anyscale/sdk/anyscale_client/models/log_level_types.py +100 -0
- anyscale/sdk/anyscale_client/models/log_stream.py +151 -0
- anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +121 -0
- anyscale/sdk/anyscale_client/models/logstream_response.py +121 -0
- anyscale/sdk/anyscale_client/models/node_type.py +100 -0
- anyscale/sdk/anyscale_client/models/object_storage_config.py +122 -0
- anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +256 -0
- anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +121 -0
- anyscale/sdk/anyscale_client/models/operation_error.py +123 -0
- anyscale/sdk/anyscale_client/models/operation_progress.py +123 -0
- anyscale/sdk/anyscale_client/models/operation_result.py +150 -0
- anyscale/sdk/anyscale_client/models/organization.py +209 -0
- anyscale/sdk/anyscale_client/models/organization_response.py +121 -0
- anyscale/sdk/anyscale_client/models/page_query.py +153 -0
- anyscale/sdk/anyscale_client/models/pause_schedule.py +123 -0
- anyscale/sdk/anyscale_client/models/production_job.py +437 -0
- anyscale/sdk/anyscale_client/models/production_job_config.py +348 -0
- anyscale/sdk/anyscale_client/models/production_job_state_transition.py +293 -0
- anyscale/sdk/anyscale_client/models/production_service_v2_model.py +612 -0
- anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +437 -0
- anyscale/sdk/anyscale_client/models/productionjob_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/productionjob_response.py +121 -0
- anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +121 -0
- anyscale/sdk/anyscale_client/models/project.py +467 -0
- anyscale/sdk/anyscale_client/models/project_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/project_response.py +121 -0
- anyscale/sdk/anyscale_client/models/projects_query.py +234 -0
- anyscale/sdk/anyscale_client/models/protocols.py +150 -0
- anyscale/sdk/anyscale_client/models/python_modules.py +150 -0
- anyscale/sdk/anyscale_client/models/python_version.py +105 -0
- anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +178 -0
- anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +262 -0
- anyscale/sdk/anyscale_client/models/resources.py +234 -0
- anyscale/sdk/anyscale_client/models/rollback_service_model.py +122 -0
- anyscale/sdk/anyscale_client/models/rollout_strategy.py +100 -0
- anyscale/sdk/anyscale_client/models/runtime_environment.py +406 -0
- anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +121 -0
- anyscale/sdk/anyscale_client/models/schedule_api_model.py +467 -0
- anyscale/sdk/anyscale_client/models/schedule_config.py +151 -0
- anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +121 -0
- anyscale/sdk/anyscale_client/models/service_config.py +178 -0
- anyscale/sdk/anyscale_client/models/service_event_current_state.py +108 -0
- anyscale/sdk/anyscale_client/models/service_goal_states.py +100 -0
- anyscale/sdk/anyscale_client/models/service_model.py +612 -0
- anyscale/sdk/anyscale_client/models/service_observability_urls.py +206 -0
- anyscale/sdk/anyscale_client/models/service_sort_field.py +101 -0
- anyscale/sdk/anyscale_client/models/service_type.py +100 -0
- anyscale/sdk/anyscale_client/models/service_version_state.py +106 -0
- anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/servicemodel_response.py +121 -0
- anyscale/sdk/anyscale_client/models/session.py +1535 -0
- anyscale/sdk/anyscale_client/models/session_command.py +350 -0
- anyscale/sdk/anyscale_client/models/session_command_types.py +100 -0
- anyscale/sdk/anyscale_client/models/session_event.py +267 -0
- anyscale/sdk/anyscale_client/models/session_event_cause.py +150 -0
- anyscale/sdk/anyscale_client/models/session_event_types.py +111 -0
- anyscale/sdk/anyscale_client/models/session_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/session_operation.py +266 -0
- anyscale/sdk/anyscale_client/models/session_operation_type.py +101 -0
- anyscale/sdk/anyscale_client/models/session_response.py +121 -0
- anyscale/sdk/anyscale_client/models/session_starting_up_data.py +146 -0
- anyscale/sdk/anyscale_client/models/session_state.py +111 -0
- anyscale/sdk/anyscale_client/models/session_state_data.py +146 -0
- anyscale/sdk/anyscale_client/models/session_stopping_data.py +146 -0
- anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/sessioncommand_response.py +121 -0
- anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +147 -0
- anyscale/sdk/anyscale_client/models/sessionoperation_response.py +121 -0
- anyscale/sdk/anyscale_client/models/sessions_query.py +206 -0
- anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +148 -0
- anyscale/sdk/anyscale_client/models/sort_order.py +100 -0
- anyscale/sdk/anyscale_client/models/sso_config.py +237 -0
- anyscale/sdk/anyscale_client/models/sso_mode.py +101 -0
- anyscale/sdk/anyscale_client/models/ssoconfig_response.py +121 -0
- anyscale/sdk/anyscale_client/models/start_cluster_options.py +178 -0
- anyscale/sdk/anyscale_client/models/start_session_options.py +206 -0
- anyscale/sdk/anyscale_client/models/static_sso_config.py +210 -0
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +1570 -0
- anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +122 -0
- anyscale/sdk/anyscale_client/models/terminate_session_options.py +206 -0
- anyscale/sdk/anyscale_client/models/text_query.py +178 -0
- anyscale/sdk/anyscale_client/models/tracing_config.py +178 -0
- anyscale/sdk/anyscale_client/models/update_app_config.py +122 -0
- anyscale/sdk/anyscale_client/models/update_cloud.py +150 -0
- anyscale/sdk/anyscale_client/models/update_cluster.py +206 -0
- anyscale/sdk/anyscale_client/models/update_compute_template.py +146 -0
- anyscale/sdk/anyscale_client/models/update_compute_template_config.py +464 -0
- anyscale/sdk/anyscale_client/models/update_organization.py +123 -0
- anyscale/sdk/anyscale_client/models/update_project.py +150 -0
- anyscale/sdk/anyscale_client/models/update_session.py +150 -0
- anyscale/sdk/anyscale_client/models/user_service_access_types.py +100 -0
- anyscale/sdk/anyscale_client/models/ux_instance.py +468 -0
- anyscale/sdk/anyscale_client/models/validation_error.py +175 -0
- anyscale/sdk/anyscale_client/models/worker_node_type.py +404 -0
- anyscale/sdk/anyscale_client/rest.py +296 -0
- anyscale/sdk/anyscale_client/sdk.py +634 -0
- anyscale/service/__init__.py +168 -0
- anyscale/service/_private/service_sdk.py +702 -0
- anyscale/service/commands.py +261 -0
- anyscale/service/models.py +671 -0
- anyscale/shared_anyscale_utils/__init__.py +1 -0
- anyscale/shared_anyscale_utils/aws.py +153 -0
- anyscale/shared_anyscale_utils/bytes_util.py +10 -0
- anyscale/shared_anyscale_utils/conf.py +47 -0
- anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +74 -0
- anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +80 -0
- anyscale/shared_anyscale_utils/headers.py +38 -0
- anyscale/shared_anyscale_utils/latest_ray_version.py +2 -0
- anyscale/shared_anyscale_utils/project.py +15 -0
- anyscale/shared_anyscale_utils/test_util.py +22 -0
- anyscale/shared_anyscale_utils/tests/__init__.py +1 -0
- anyscale/shared_anyscale_utils/tests/test_asyncio.py +41 -0
- anyscale/shared_anyscale_utils/tests/test_ray_semver.py +63 -0
- anyscale/shared_anyscale_utils/util.py +50 -0
- anyscale/shared_anyscale_utils/utils/__init__.py +2 -0
- anyscale/shared_anyscale_utils/utils/asyncio.py +120 -0
- anyscale/shared_anyscale_utils/utils/byod.py +40 -0
- anyscale/shared_anyscale_utils/utils/collections.py +33 -0
- anyscale/shared_anyscale_utils/utils/id_gen.py +147 -0
- anyscale/shared_anyscale_utils/utils/protected_string.py +89 -0
- anyscale/shared_anyscale_utils/utils/ray_semver.py +81 -0
- anyscale/snapshot.py +46 -0
- anyscale/tables.py +82 -0
- anyscale/util.py +1155 -0
- anyscale/utils/__init__.py +0 -0
- anyscale/utils/cli_version_check_util.py +63 -0
- anyscale/utils/cloud_update_utils.py +862 -0
- anyscale/utils/cloud_utils.py +317 -0
- anyscale/utils/cluster_debug.py +191 -0
- anyscale/utils/connect_helpers.py +155 -0
- anyscale/utils/deprecation_util.py +32 -0
- anyscale/utils/entity_arg_utils.py +43 -0
- anyscale/utils/env_utils.py +17 -0
- anyscale/utils/gcp_managed_setup_utils.py +888 -0
- anyscale/utils/gcp_utils.py +312 -0
- anyscale/utils/imports/__init__.py +0 -0
- anyscale/utils/imports/all.py +13 -0
- anyscale/utils/imports/azure.py +14 -0
- anyscale/utils/imports/gcp.py +59 -0
- anyscale/utils/logs_utils.py +141 -0
- anyscale/utils/name_utils.py +33 -0
- anyscale/utils/network_verification.py +153 -0
- anyscale/utils/ray_utils.py +128 -0
- anyscale/utils/ray_version_checker.py +48 -0
- anyscale/utils/ray_version_utils.py +53 -0
- anyscale/utils/runtime_env.py +487 -0
- anyscale/utils/s3.py +92 -0
- anyscale/utils/user_utils.py +17 -0
- anyscale/utils/workload_types.py +7 -0
- anyscale/utils/workspace_notification.py +39 -0
- anyscale/utils/workspace_utils.py +65 -0
- anyscale/version.py +1 -0
- anyscale/webterminal/__init__.py +0 -0
- anyscale/webterminal/bash-preexec.sh +370 -0
- anyscale/webterminal/command_persister.py +164 -0
- anyscale/webterminal/utils.py +176 -0
- anyscale/webterminal/webterminal.py +311 -0
- anyscale/workspace/__init__.py +270 -0
- anyscale/workspace/_private/workspace_sdk.py +737 -0
- anyscale/workspace/commands.py +472 -0
- anyscale/workspace/models.py +296 -0
- anyscale/workspace_utils.py +35 -0
- anyscale-0.24.86.dist-info/LICENSE +68 -0
- anyscale-0.24.86.dist-info/METADATA +82 -0
- anyscale-0.24.86.dist-info/NOTICE +6 -0
- anyscale-0.24.86.dist-info/RECORD +1131 -0
- anyscale-0.24.86.dist-info/WHEEL +5 -0
- anyscale-0.24.86.dist-info/entry_points.txt +2 -0
- anyscale-0.24.86.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1070 @@
|
|
|
1
|
+
# openapi-client
|
|
2
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3
|
+
|
|
4
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
|
+
|
|
6
|
+
- API version: 0.1.0
|
|
7
|
+
- Package version: 1.0.0
|
|
8
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
9
|
+
|
|
10
|
+
## Requirements.
|
|
11
|
+
|
|
12
|
+
Python 2.7 and 3.4+
|
|
13
|
+
|
|
14
|
+
## Installation & Usage
|
|
15
|
+
### pip install
|
|
16
|
+
|
|
17
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
21
|
+
```
|
|
22
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
23
|
+
|
|
24
|
+
Then import the package:
|
|
25
|
+
```python
|
|
26
|
+
import openapi_client
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Setuptools
|
|
30
|
+
|
|
31
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
python setup.py install --user
|
|
35
|
+
```
|
|
36
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
37
|
+
|
|
38
|
+
Then import the package:
|
|
39
|
+
```python
|
|
40
|
+
import openapi_client
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Getting Started
|
|
44
|
+
|
|
45
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
from __future__ import print_function
|
|
49
|
+
import time
|
|
50
|
+
import openapi_client
|
|
51
|
+
from openapi_client.rest import ApiException
|
|
52
|
+
from pprint import pprint
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# Defining host is optional and default to http://localhost
|
|
56
|
+
configuration.host = "http://localhost"
|
|
57
|
+
# Enter a context with an instance of the API client
|
|
58
|
+
with openapi_client.ApiClient(configuration) as api_client:
|
|
59
|
+
# Create an instance of the API class
|
|
60
|
+
api_instance = openapi_client.DefaultApi(api_client)
|
|
61
|
+
create_aioa_cloud_waitlist = openapi_client.CreateAioaCloudWaitlist() # CreateAioaCloudWaitlist |
|
|
62
|
+
|
|
63
|
+
try:
|
|
64
|
+
# Add To Waitlist
|
|
65
|
+
api_response = api_instance.add_to_waitlist_api_v2_aioa_cloud_waitlist_post(create_aioa_cloud_waitlist)
|
|
66
|
+
pprint(api_response)
|
|
67
|
+
except ApiException as e:
|
|
68
|
+
print("Exception when calling DefaultApi->add_to_waitlist_api_v2_aioa_cloud_waitlist_post: %s\n" % e)
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Documentation for API Endpoints
|
|
73
|
+
|
|
74
|
+
All URIs are relative to *http://localhost*
|
|
75
|
+
|
|
76
|
+
Class | Method | HTTP request | Description
|
|
77
|
+
------------ | ------------- | ------------- | -------------
|
|
78
|
+
*DefaultApi* | [**add_to_waitlist_api_v2_aioa_cloud_waitlist_post**](docs/DefaultApi.md#add_to_waitlist_api_v2_aioa_cloud_waitlist_post) | **POST** /api/v2/aioa_cloud_waitlist/ | Add To Waitlist
|
|
79
|
+
*DefaultApi* | [**admission_api_v2_kubernetes_manager_admission_cloud_resource_id_post**](docs/DefaultApi.md#admission_api_v2_kubernetes_manager_admission_cloud_resource_id_post) | **POST** /api/v2/kubernetes_manager/admission/{cloud_resource_id} | Admission
|
|
80
|
+
*DefaultApi* | [**alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put**](docs/DefaultApi.md#alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put) | **PUT** /api/v2/organization_collaborators/{identity_id} | Alter Organization Collaborator
|
|
81
|
+
*DefaultApi* | [**alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put**](docs/DefaultApi.md#alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put) | **PUT** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Alter Project Collaborator
|
|
82
|
+
*DefaultApi* | [**apply_service_api_v2_services_v2_apply_put**](docs/DefaultApi.md#apply_service_api_v2_services_v2_apply_put) | **PUT** /api/v2/services-v2/apply | Apply Service
|
|
83
|
+
*DefaultApi* | [**archive_aica_endpoint_api_v2_aica_endpoints_endpoint_id_delete**](docs/DefaultApi.md#archive_aica_endpoint_api_v2_aica_endpoints_endpoint_id_delete) | **DELETE** /api/v2/aica_endpoints/{endpoint_id} | Archive Aica Endpoint
|
|
84
|
+
*DefaultApi* | [**archive_cluster_api_v2_decorated_sessions_cluster_id_archive_post**](docs/DefaultApi.md#archive_cluster_api_v2_decorated_sessions_cluster_id_archive_post) | **POST** /api/v2/decorated_sessions/{cluster_id}/archive | Archive Cluster
|
|
85
|
+
*DefaultApi* | [**archive_cluster_environment_api_v2_application_templates_application_template_id_archive_post**](docs/DefaultApi.md#archive_cluster_environment_api_v2_application_templates_application_template_id_archive_post) | **POST** /api/v2/application_templates/{application_template_id}/archive | Archive Cluster Environment
|
|
86
|
+
*DefaultApi* | [**archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post**](docs/DefaultApi.md#archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post) | **POST** /api/v2/compute_templates/{compute_template_id}/archive | Archive Compute Template
|
|
87
|
+
*DefaultApi* | [**archive_job_api_v2_decorated_ha_jobs_production_job_id_archive_post**](docs/DefaultApi.md#archive_job_api_v2_decorated_ha_jobs_production_job_id_archive_post) | **POST** /api/v2/decorated_ha_jobs/{production_job_id}/archive | Archive Job
|
|
88
|
+
*DefaultApi* | [**attach_machine_pool_to_cloud_api_v2_machine_pools_attach_post**](docs/DefaultApi.md#attach_machine_pool_to_cloud_api_v2_machine_pools_attach_post) | **POST** /api/v2/machine_pools/attach | Attach Machine Pool To Cloud
|
|
89
|
+
*DefaultApi* | [**aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post**](docs/DefaultApi.md#aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post) | **POST** /api/v2/organization_billing/aws_marketplace_registration | Aws Marketplace Registration
|
|
90
|
+
*DefaultApi* | [**ban_organization_api_v2_organizations_organization_id_ban_put**](docs/DefaultApi.md#ban_organization_api_v2_organizations_organization_id_ban_put) | **PUT** /api/v2/organizations/{organization_id}/ban | Ban Organization
|
|
91
|
+
*DefaultApi* | [**batch_create_invitations_api_v2_organization_invitations_batch_create_post**](docs/DefaultApi.md#batch_create_invitations_api_v2_organization_invitations_batch_create_post) | **POST** /api/v2/organization_invitations/batch_create | Batch Create Invitations
|
|
92
|
+
*DefaultApi* | [**batch_get_job_api_v2_decorated_ha_jobs_batch_get_post**](docs/DefaultApi.md#batch_get_job_api_v2_decorated_ha_jobs_batch_get_post) | **POST** /api/v2/decorated_ha_jobs/batch_get | Batch Get Job
|
|
93
|
+
*DefaultApi* | [**begin_cluster_startup_api_v2_cluster_startups_post**](docs/DefaultApi.md#begin_cluster_startup_api_v2_cluster_startups_post) | **POST** /api/v2/cluster_startups/ | Begin Cluster Startup
|
|
94
|
+
*DefaultApi* | [**change_password_api_v2_users_change_password_post**](docs/DefaultApi.md#change_password_api_v2_users_change_password_post) | **POST** /api/v2/users/change_password | Change Password
|
|
95
|
+
*DefaultApi* | [**check_availability_api_v2_organizations_check_availability_get**](docs/DefaultApi.md#check_availability_api_v2_organizations_check_availability_get) | **GET** /api/v2/organizations/check_availability | Check Availability
|
|
96
|
+
*DefaultApi* | [**check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get**](docs/DefaultApi.md#check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get) | **GET** /api/v2/userinfo/check_is_feature_flag_on | Check Is Feature Flag On
|
|
97
|
+
*DefaultApi* | [**check_one_time_password_api_v2_users_request_otp_token_otp_get**](docs/DefaultApi.md#check_one_time_password_api_v2_users_request_otp_token_otp_get) | **GET** /api/v2/users/request_otp_token/{otp} | Check One Time Password
|
|
98
|
+
*DefaultApi* | [**check_waitlist_status_api_v2_aioa_cloud_waitlist_check_status_get**](docs/DefaultApi.md#check_waitlist_status_api_v2_aioa_cloud_waitlist_check_status_get) | **GET** /api/v2/aioa_cloud_waitlist/check_status | Check Waitlist Status
|
|
99
|
+
*DefaultApi* | [**clean_grafana_dashboards_api_v2_clouds_cloud_id_clean_grafana_dashboards_post**](docs/DefaultApi.md#clean_grafana_dashboards_api_v2_clouds_cloud_id_clean_grafana_dashboards_post) | **POST** /api/v2/clouds/{cloud_id}/clean-grafana-dashboards | Clean Grafana Dashboards
|
|
100
|
+
*DefaultApi* | [**cli_api_v2_machines_cli_get**](docs/DefaultApi.md#cli_api_v2_machines_cli_get) | **GET** /api/v2/machines/cli | Cli
|
|
101
|
+
*DefaultApi* | [**clone_workspace_api_v2_experimental_workspaces_from_workspace_post**](docs/DefaultApi.md#clone_workspace_api_v2_experimental_workspaces_from_workspace_post) | **POST** /api/v2/experimental_workspaces/from_workspace | Clone Workspace
|
|
102
|
+
*DefaultApi* | [**create_aica_endpoint_api_v2_aica_endpoints_post**](docs/DefaultApi.md#create_aica_endpoint_api_v2_aica_endpoints_post) | **POST** /api/v2/aica_endpoints/ | Create Aica Endpoint
|
|
103
|
+
*DefaultApi* | [**create_api_key_api_v2_users_create_api_key_post**](docs/DefaultApi.md#create_api_key_api_v2_users_create_api_key_post) | **POST** /api/v2/users/create_api_key | Create Api Key
|
|
104
|
+
*DefaultApi* | [**create_application_template_api_v2_application_templates_post**](docs/DefaultApi.md#create_application_template_api_v2_application_templates_post) | **POST** /api/v2/application_templates/ | Create Application Template
|
|
105
|
+
*DefaultApi* | [**create_bug_report_api_v2_machines_create_bug_report_post**](docs/DefaultApi.md#create_bug_report_api_v2_machines_create_bug_report_post) | **POST** /api/v2/machines/create_bug_report | Create Bug Report
|
|
106
|
+
*DefaultApi* | [**create_build_api_v2_builds_post**](docs/DefaultApi.md#create_build_api_v2_builds_post) | **POST** /api/v2/builds/ | Create Build
|
|
107
|
+
*DefaultApi* | [**create_byod_build_api_v2_builds_byod_post**](docs/DefaultApi.md#create_byod_build_api_v2_builds_byod_post) | **POST** /api/v2/builds/byod | Create Byod Build
|
|
108
|
+
*DefaultApi* | [**create_byod_cluster_environment_api_v2_application_templates_byod_post**](docs/DefaultApi.md#create_byod_cluster_environment_api_v2_application_templates_byod_post) | **POST** /api/v2/application_templates/byod | Create Byod Cluster Environment
|
|
109
|
+
*DefaultApi* | [**create_cloud_api_v2_clouds_post**](docs/DefaultApi.md#create_cloud_api_v2_clouds_post) | **POST** /api/v2/clouds/ | Create Cloud
|
|
110
|
+
*DefaultApi* | [**create_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_post**](docs/DefaultApi.md#create_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_post) | **POST** /api/v2/clouds/{cloud_id}/collaborators/users | Create Cloud Collaborator
|
|
111
|
+
*DefaultApi* | [**create_cloud_collaborator_api_v2_projects_project_id_collaborators_cloud_post**](docs/DefaultApi.md#create_cloud_collaborator_api_v2_projects_project_id_collaborators_cloud_post) | **POST** /api/v2/projects/{project_id}/collaborators/cloud | Create Cloud Collaborator
|
|
112
|
+
*DefaultApi* | [**create_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_post**](docs/DefaultApi.md#create_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_post) | **POST** /api/v2/clouds_with_cloud_resource_router/ | Create Cloud With Cloud Resource
|
|
113
|
+
*DefaultApi* | [**create_compute_template_api_v2_compute_templates_post**](docs/DefaultApi.md#create_compute_template_api_v2_compute_templates_post) | **POST** /api/v2/compute_templates/ | Create Compute Template
|
|
114
|
+
*DefaultApi* | [**create_configuration_api_v2_organization_configurations_post**](docs/DefaultApi.md#create_configuration_api_v2_organization_configurations_post) | **POST** /api/v2/organization_configurations/ | Create Configuration
|
|
115
|
+
*DefaultApi* | [**create_configuration_script_api_v2_organization_configurations_create_helper_get**](docs/DefaultApi.md#create_configuration_script_api_v2_organization_configurations_create_helper_get) | **GET** /api/v2/organization_configurations/create_helper | Create Configuration Script
|
|
116
|
+
*DefaultApi* | [**create_connect_session_api_v2_sessions_create_connect_session_post**](docs/DefaultApi.md#create_connect_session_api_v2_sessions_create_connect_session_post) | **POST** /api/v2/sessions/create_connect_session | Create Connect Session
|
|
117
|
+
*DefaultApi* | [**create_dataset_upload_api_v2_datasets_upload_post**](docs/DefaultApi.md#create_dataset_upload_api_v2_datasets_upload_post) | **POST** /api/v2/datasets/upload | Create Dataset Upload
|
|
118
|
+
*DefaultApi* | [**create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post**](docs/DefaultApi.md#create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post) | **POST** /api/v2/organizations/{organization_id}/create_endpoint_user | Create Endpoint User For Org
|
|
119
|
+
*DefaultApi* | [**create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post**](docs/DefaultApi.md#create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post) | **POST** /api/v2/fine_tuning/jobs/create | Create Fine Tuning Job
|
|
120
|
+
*DefaultApi* | [**create_instance_usage_budget_api_v2_instance_usage_budgets_post**](docs/DefaultApi.md#create_instance_usage_budget_api_v2_instance_usage_budgets_post) | **POST** /api/v2/instance_usage_budgets/ | Create Instance Usage Budget
|
|
121
|
+
*DefaultApi* | [**create_invitation_api_v2_organization_invitations_post**](docs/DefaultApi.md#create_invitation_api_v2_organization_invitations_post) | **POST** /api/v2/organization_invitations/ | Create Invitation
|
|
122
|
+
*DefaultApi* | [**create_job_api_v2_decorated_ha_jobs_create_post**](docs/DefaultApi.md#create_job_api_v2_decorated_ha_jobs_create_post) | **POST** /api/v2/decorated_ha_jobs/create | Create Job
|
|
123
|
+
*DefaultApi* | [**create_job_queue_api_v2_job_queues_create_post**](docs/DefaultApi.md#create_job_queue_api_v2_job_queues_create_post) | **POST** /api/v2/job_queues/create | Create Job Queue
|
|
124
|
+
*DefaultApi* | [**create_machine_api_v2_machines_create_post**](docs/DefaultApi.md#create_machine_api_v2_machines_create_post) | **POST** /api/v2/machines/create | Create Machine
|
|
125
|
+
*DefaultApi* | [**create_machine_pool_api_v2_machine_pools_create_post**](docs/DefaultApi.md#create_machine_pool_api_v2_machine_pools_create_post) | **POST** /api/v2/machine_pools/create | Create Machine Pool
|
|
126
|
+
*DefaultApi* | [**create_new_session_api_v2_sessions_create_new_session_post**](docs/DefaultApi.md#create_new_session_api_v2_sessions_create_new_session_post) | **POST** /api/v2/sessions/create_new_session | Create New Session
|
|
127
|
+
*DefaultApi* | [**create_one_time_password_api_v2_users_create_otp_token_get**](docs/DefaultApi.md#create_one_time_password_api_v2_users_create_otp_token_get) | **GET** /api/v2/users/create_otp_token | Create One Time Password
|
|
128
|
+
*DefaultApi* | [**create_or_update_job_api_v2_experimental_cron_jobs_put**](docs/DefaultApi.md#create_or_update_job_api_v2_experimental_cron_jobs_put) | **PUT** /api/v2/experimental_cron_jobs/ | Create Or Update Job
|
|
129
|
+
*DefaultApi* | [**create_or_update_metronome_customer_info_api_v2_metronome_customer_info_post**](docs/DefaultApi.md#create_or_update_metronome_customer_info_api_v2_metronome_customer_info_post) | **POST** /api/v2/metronome_customer_info/ | Create Or Update Metronome Customer Info
|
|
130
|
+
*DefaultApi* | [**create_organization_collaborator_api_v2_projects_project_id_collaborators_organization_post**](docs/DefaultApi.md#create_organization_collaborator_api_v2_projects_project_id_collaborators_organization_post) | **POST** /api/v2/projects/{project_id}/collaborators/organization | Create Organization Collaborator
|
|
131
|
+
*DefaultApi* | [**create_project_api_v2_projects_post**](docs/DefaultApi.md#create_project_api_v2_projects_post) | **POST** /api/v2/projects/ | Create Project
|
|
132
|
+
*DefaultApi* | [**create_project_collaborator_api_v2_projects_project_id_collaborators_users_post**](docs/DefaultApi.md#create_project_collaborator_api_v2_projects_project_id_collaborators_users_post) | **POST** /api/v2/projects/{project_id}/collaborators/users | Create Project Collaborator
|
|
133
|
+
*DefaultApi* | [**create_resource_quota_api_v2_resource_quotas_post**](docs/DefaultApi.md#create_resource_quota_api_v2_resource_quotas_post) | **POST** /api/v2/resource_quotas/ | Create Resource Quota
|
|
134
|
+
*DefaultApi* | [**create_service_account_api_v2_users_service_accounts_post**](docs/DefaultApi.md#create_service_account_api_v2_users_service_accounts_post) | **POST** /api/v2/users/service_accounts | Create Service Account
|
|
135
|
+
*DefaultApi* | [**create_session_command_api_v2_sessions_session_id_create_session_command_post**](docs/DefaultApi.md#create_session_command_api_v2_sessions_session_id_create_session_command_post) | **POST** /api/v2/sessions/{session_id}/create_session_command | Create Session Command
|
|
136
|
+
*DefaultApi* | [**create_web_terminal_api_v2_sessions_session_id_web_terminals_post**](docs/DefaultApi.md#create_web_terminal_api_v2_sessions_session_id_web_terminals_post) | **POST** /api/v2/sessions/{session_id}/web_terminals | Create Web Terminal
|
|
137
|
+
*DefaultApi* | [**create_workspace_api_v2_experimental_workspaces_post**](docs/DefaultApi.md#create_workspace_api_v2_experimental_workspaces_post) | **POST** /api/v2/experimental_workspaces/ | Create Workspace
|
|
138
|
+
*DefaultApi* | [**create_workspace_from_job_api_v2_experimental_workspaces_from_job_post**](docs/DefaultApi.md#create_workspace_from_job_api_v2_experimental_workspaces_from_job_post) | **POST** /api/v2/experimental_workspaces/from_job | Create Workspace From Job
|
|
139
|
+
*DefaultApi* | [**create_workspace_from_template_api_v2_experimental_workspaces_from_template_post**](docs/DefaultApi.md#create_workspace_from_template_api_v2_experimental_workspaces_from_template_post) | **POST** /api/v2/experimental_workspaces/from_template | Create Workspace From Template
|
|
140
|
+
*DefaultApi* | [**delete_application_template_api_v2_application_templates_application_template_id_delete**](docs/DefaultApi.md#delete_application_template_api_v2_application_templates_application_template_id_delete) | **DELETE** /api/v2/application_templates/{application_template_id} | Delete Application Template
|
|
141
|
+
*DefaultApi* | [**delete_cloud_api_v2_clouds_cloud_id_delete**](docs/DefaultApi.md#delete_cloud_api_v2_clouds_cloud_id_delete) | **DELETE** /api/v2/clouds/{cloud_id} | Delete Cloud
|
|
142
|
+
*DefaultApi* | [**delete_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_identity_id_delete**](docs/DefaultApi.md#delete_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_identity_id_delete) | **DELETE** /api/v2/clouds/{cloud_id}/collaborators/{identity_id} | Delete Cloud Collaborator
|
|
143
|
+
*DefaultApi* | [**delete_compute_template_api_v2_compute_templates_template_id_delete**](docs/DefaultApi.md#delete_compute_template_api_v2_compute_templates_template_id_delete) | **DELETE** /api/v2/compute_templates/{template_id} | Delete Compute Template
|
|
144
|
+
*DefaultApi* | [**delete_hosted_cloud_api_v2_clouds_hosted_cloud_id_delete**](docs/DefaultApi.md#delete_hosted_cloud_api_v2_clouds_hosted_cloud_id_delete) | **DELETE** /api/v2/clouds/hosted/{cloud_id} | Delete Hosted Cloud
|
|
145
|
+
*DefaultApi* | [**delete_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_delete**](docs/DefaultApi.md#delete_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_delete) | **DELETE** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Delete Instance Usage Budget
|
|
146
|
+
*DefaultApi* | [**delete_machine_api_v2_machines_delete_post**](docs/DefaultApi.md#delete_machine_api_v2_machines_delete_post) | **POST** /api/v2/machines/delete | Delete Machine
|
|
147
|
+
*DefaultApi* | [**delete_machine_pool_api_v2_machine_pools_delete_post**](docs/DefaultApi.md#delete_machine_pool_api_v2_machine_pools_delete_post) | **POST** /api/v2/machine_pools/delete | Delete Machine Pool
|
|
148
|
+
*DefaultApi* | [**delete_model_api_v2_llm_models_model_id_delete**](docs/DefaultApi.md#delete_model_api_v2_llm_models_model_id_delete) | **DELETE** /api/v2/llm/models/{model_id} | Delete Model
|
|
149
|
+
*DefaultApi* | [**delete_project_api_v2_projects_project_id_delete**](docs/DefaultApi.md#delete_project_api_v2_projects_project_id_delete) | **DELETE** /api/v2/projects/{project_id} | Delete Project
|
|
150
|
+
*DefaultApi* | [**delete_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_delete**](docs/DefaultApi.md#delete_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_delete) | **DELETE** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Delete Project Collaborator
|
|
151
|
+
*DefaultApi* | [**delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete**](docs/DefaultApi.md#delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete) | **DELETE** /api/v2/resource_quotas/{resource_quota_id} | Delete Resource Quota
|
|
152
|
+
*DefaultApi* | [**delete_session_api_v2_sessions_session_id_delete**](docs/DefaultApi.md#delete_session_api_v2_sessions_session_id_delete) | **DELETE** /api/v2/sessions/{session_id} | Delete Session
|
|
153
|
+
*DefaultApi* | [**delete_web_terminals_api_v2_sessions_session_id_web_terminals_terminal_id_delete**](docs/DefaultApi.md#delete_web_terminals_api_v2_sessions_session_id_web_terminals_terminal_id_delete) | **DELETE** /api/v2/sessions/{session_id}/web_terminals/{terminal_id} | Delete Web Terminals
|
|
154
|
+
*DefaultApi* | [**delete_workspace_api_v2_experimental_workspaces_workspace_id_delete**](docs/DefaultApi.md#delete_workspace_api_v2_experimental_workspaces_workspace_id_delete) | **DELETE** /api/v2/experimental_workspaces/{workspace_id} | Delete Workspace
|
|
155
|
+
*DefaultApi* | [**describe_session_api_v2_sessions_session_id_describe_get**](docs/DefaultApi.md#describe_session_api_v2_sessions_session_id_describe_get) | **GET** /api/v2/sessions/{session_id}/describe | Describe Session
|
|
156
|
+
*DefaultApi* | [**detach_machine_pool_from_cloud_api_v2_machine_pools_detach_post**](docs/DefaultApi.md#detach_machine_pool_from_cloud_api_v2_machine_pools_detach_post) | **POST** /api/v2/machine_pools/detach | Detach Machine Pool From Cloud
|
|
157
|
+
*DefaultApi* | [**dismiss_user_card_api_v2_onboarding_cards_card_id_dismiss_post**](docs/DefaultApi.md#dismiss_user_card_api_v2_onboarding_cards_card_id_dismiss_post) | **POST** /api/v2/onboarding_cards/{card_id}/dismiss | Dismiss User Card
|
|
158
|
+
*DefaultApi* | [**download_aggregated_instance_usage_csv_api_v2_aggregated_instance_usage_download_csv_get**](docs/DefaultApi.md#download_aggregated_instance_usage_csv_api_v2_aggregated_instance_usage_download_csv_get) | **GET** /api/v2/aggregated_instance_usage/download_csv | Download Aggregated Instance Usage Csv
|
|
159
|
+
*DefaultApi* | [**download_aggregated_instance_usage_csv_internal_api_v2_aggregated_instance_usage_download_csv_internal_get**](docs/DefaultApi.md#download_aggregated_instance_usage_csv_internal_api_v2_aggregated_instance_usage_download_csv_internal_get) | **GET** /api/v2/aggregated_instance_usage/download_csv_internal | Download Aggregated Instance Usage Csv Internal
|
|
160
|
+
*DefaultApi* | [**echo_ip_api_v2_health_echo_ip_get**](docs/DefaultApi.md#echo_ip_api_v2_health_echo_ip_get) | **GET** /api/v2/health/echo_ip | Echo Ip
|
|
161
|
+
*DefaultApi* | [**edit_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_patch**](docs/DefaultApi.md#edit_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_patch) | **PATCH** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Edit Cloud Resource
|
|
162
|
+
*DefaultApi* | [**edit_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_patch**](docs/DefaultApi.md#edit_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_patch) | **PATCH** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Edit Cloud Resource
|
|
163
|
+
*DefaultApi* | [**execute_interactive_command_api_v2_sessions_session_id_execute_interactive_command_post**](docs/DefaultApi.md#execute_interactive_command_api_v2_sessions_session_id_execute_interactive_command_post) | **POST** /api/v2/sessions/{session_id}/execute_interactive_command | Execute Interactive Command
|
|
164
|
+
*DefaultApi* | [**execute_shell_command_api_v2_sessions_session_id_execute_shell_command_post**](docs/DefaultApi.md#execute_shell_command_api_v2_sessions_session_id_execute_shell_command_post) | **POST** /api/v2/sessions/{session_id}/execute_shell_command | Execute Shell Command
|
|
165
|
+
*DefaultApi* | [**find_cloud_by_name_api_v2_clouds_find_by_name_post**](docs/DefaultApi.md#find_cloud_by_name_api_v2_clouds_find_by_name_post) | **POST** /api/v2/clouds/find_by_name | Find Cloud By Name
|
|
166
|
+
*DefaultApi* | [**find_dataset_api_v2_datasets_find_get**](docs/DefaultApi.md#find_dataset_api_v2_datasets_find_get) | **GET** /api/v2/datasets/find | Find Dataset
|
|
167
|
+
*DefaultApi* | [**find_project_by_project_name_api_v2_projects_find_by_name_get**](docs/DefaultApi.md#find_project_by_project_name_api_v2_projects_find_by_name_get) | **GET** /api/v2/projects/find_by_name | Find Project By Project Name
|
|
168
|
+
*DefaultApi* | [**find_with_invitation_api_v2_organizations_find_with_invitation_get**](docs/DefaultApi.md#find_with_invitation_api_v2_organizations_find_with_invitation_get) | **GET** /api/v2/organizations/find_with_invitation | Find With Invitation
|
|
169
|
+
*DefaultApi* | [**find_with_public_identifier_api_v2_organizations_find_with_public_identifier_get**](docs/DefaultApi.md#find_with_public_identifier_api_v2_organizations_find_with_public_identifier_get) | **GET** /api/v2/organizations/find_with_public_identifier | Find With Public Identifier
|
|
170
|
+
*DefaultApi* | [**find_with_user_api_v2_organizations_find_with_user_get**](docs/DefaultApi.md#find_with_user_api_v2_organizations_find_with_user_get) | **GET** /api/v2/organizations/find_with_user | Find With User
|
|
171
|
+
*DefaultApi* | [**fine_tuning_job_callback_api_v2_fine_tuning_jobs_internal_finish_post**](docs/DefaultApi.md#fine_tuning_job_callback_api_v2_fine_tuning_jobs_internal_finish_post) | **POST** /api/v2/fine_tuning/jobs/internal/finish | Fine Tuning Job Callback
|
|
172
|
+
*DefaultApi* | [**fine_tuning_job_callback_v2_api_v2_fine_tuning_v2_jobs_internal_finish_post**](docs/DefaultApi.md#fine_tuning_job_callback_v2_api_v2_fine_tuning_v2_jobs_internal_finish_post) | **POST** /api/v2/fine_tuning_v2/jobs/internal/finish | Fine Tuning Job Callback V2
|
|
173
|
+
*DefaultApi* | [**finish_session_command_api_v2_session_commands_session_command_id_finish_post**](docs/DefaultApi.md#finish_session_command_api_v2_session_commands_session_command_id_finish_post) | **POST** /api/v2/session_commands/{session_command_id}/finish | Finish Session Command
|
|
174
|
+
*DefaultApi* | [**generate_cloud_data_bucket_presigned_upload_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_upload_url_post**](docs/DefaultApi.md#generate_cloud_data_bucket_presigned_upload_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_upload_url_post) | **POST** /api/v2/clouds/{cloud_id}/generate_cloud_data_bucket_presigned_upload_url | Generate Cloud Data Bucket Presigned Upload Url
|
|
175
|
+
*DefaultApi* | [**generate_cloud_data_bucket_presigned_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_url_post**](docs/DefaultApi.md#generate_cloud_data_bucket_presigned_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_url_post) | **POST** /api/v2/clouds/{cloud_id}/generate_cloud_data_bucket_presigned_url | Generate Cloud Data Bucket Presigned Url
|
|
176
|
+
*DefaultApi* | [**get_active_billing_version_api_v2_organization_billing_active_billing_version_get**](docs/DefaultApi.md#get_active_billing_version_api_v2_organization_billing_active_billing_version_get) | **GET** /api/v2/organization_billing/active_billing_version | Get Active Billing Version
|
|
177
|
+
*DefaultApi* | [**get_anyscale_aws_account_api_v2_clouds_anyscale_aws_account_get**](docs/DefaultApi.md#get_anyscale_aws_account_api_v2_clouds_anyscale_aws_account_get) | **GET** /api/v2/clouds/anyscale/aws_account | Get Anyscale Aws Account
|
|
178
|
+
*DefaultApi* | [**get_anyscale_version_api_v2_userinfo_anyscale_version_get**](docs/DefaultApi.md#get_anyscale_version_api_v2_userinfo_anyscale_version_get) | **GET** /api/v2/userinfo/anyscale_version | Get Anyscale Version
|
|
179
|
+
*DefaultApi* | [**get_application_template_api_v2_application_templates_application_template_id_get**](docs/DefaultApi.md#get_application_template_api_v2_application_templates_application_template_id_get) | **GET** /api/v2/application_templates/{application_template_id} | Get Application Template
|
|
180
|
+
*DefaultApi* | [**get_billing_information_api_v2_organization_billing_billing_information_get**](docs/DefaultApi.md#get_billing_information_api_v2_organization_billing_billing_information_get) | **GET** /api/v2/organization_billing/billing_information | Get Billing Information
|
|
181
|
+
*DefaultApi* | [**get_billing_versions_by_organization_api_v2_organization_billing_billing_versions_get**](docs/DefaultApi.md#get_billing_versions_by_organization_api_v2_organization_billing_billing_versions_get) | **GET** /api/v2/organization_billing/billing_versions | Get Billing Versions By Organization
|
|
182
|
+
*DefaultApi* | [**get_build_api_v2_builds_build_id_get**](docs/DefaultApi.md#get_build_api_v2_builds_build_id_get) | **GET** /api/v2/builds/{build_id} | Get Build
|
|
183
|
+
*DefaultApi* | [**get_build_logs_api_v2_builds_build_id_logs_get**](docs/DefaultApi.md#get_build_logs_api_v2_builds_build_id_logs_get) | **GET** /api/v2/builds/{build_id}/logs | Get Build Logs
|
|
184
|
+
*DefaultApi* | [**get_cloud_api_v2_clouds_cloud_id_get**](docs/DefaultApi.md#get_cloud_api_v2_clouds_cloud_id_get) | **GET** /api/v2/clouds/{cloud_id} | Get Cloud
|
|
185
|
+
*DefaultApi* | [**get_cloud_overview_dashboard_api_v2_clouds_cloud_id_cloud_overview_dashboard_get**](docs/DefaultApi.md#get_cloud_overview_dashboard_api_v2_clouds_cloud_id_cloud_overview_dashboard_get) | **GET** /api/v2/clouds/{cloud_id}/cloud-overview-dashboard | Get Cloud Overview Dashboard
|
|
186
|
+
*DefaultApi* | [**get_cloud_project_collaborator_api_v2_projects_project_id_collaborators_clouds_get**](docs/DefaultApi.md#get_cloud_project_collaborator_api_v2_projects_project_id_collaborators_clouds_get) | **GET** /api/v2/projects/{project_id}/collaborators/clouds | Get Cloud Project Collaborator
|
|
187
|
+
*DefaultApi* | [**get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get**](docs/DefaultApi.md#get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get) | **GET** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Get Cloud With Cloud Resource
|
|
188
|
+
*DefaultApi* | [**get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_get**](docs/DefaultApi.md#get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_get) | **GET** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Get Cloud With Cloud Resource
|
|
189
|
+
*DefaultApi* | [**get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get**](docs/DefaultApi.md#get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get) | **GET** /api/v2/logs/cluster_product_autoscaler_flag/{session_id} | Get Cluster Product Autoscaler Flag
|
|
190
|
+
*DefaultApi* | [**get_compute_template_api_v2_compute_templates_template_id_get**](docs/DefaultApi.md#get_compute_template_api_v2_compute_templates_template_id_get) | **GET** /api/v2/compute_templates/{template_id} | Get Compute Template
|
|
191
|
+
*DefaultApi* | [**get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get**](docs/DefaultApi.md#get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get) | **GET** /api/v2/experimental_cron_jobs/{cron_job_id} | Get Cron Job
|
|
192
|
+
*DefaultApi* | [**get_dataset_api_v2_datasets_dataset_id_get**](docs/DefaultApi.md#get_dataset_api_v2_datasets_dataset_id_get) | **GET** /api/v2/datasets/{dataset_id} | Get Dataset
|
|
193
|
+
*DefaultApi* | [**get_dataset_download_info_api_v2_datasets_download_info_get**](docs/DefaultApi.md#get_dataset_download_info_api_v2_datasets_download_info_get) | **GET** /api/v2/datasets/download_info | Get Dataset Download Info
|
|
194
|
+
*DefaultApi* | [**get_dataset_download_url_api_v2_datasets_download_get**](docs/DefaultApi.md#get_dataset_download_url_api_v2_datasets_download_get) | **GET** /api/v2/datasets/download | Get Dataset Download Url
|
|
195
|
+
*DefaultApi* | [**get_decorated_cluster_api_v2_decorated_sessions_cluster_id_get**](docs/DefaultApi.md#get_decorated_cluster_api_v2_decorated_sessions_cluster_id_get) | **GET** /api/v2/decorated_sessions/{cluster_id} | Get Decorated Cluster
|
|
196
|
+
*DefaultApi* | [**get_decorated_interactive_session_api_v2_decorated_interactive_sessions_interactive_session_id_get**](docs/DefaultApi.md#get_decorated_interactive_session_api_v2_decorated_interactive_sessions_interactive_session_id_get) | **GET** /api/v2/decorated_interactive_sessions/{interactive_session_id} | Get Decorated Interactive Session
|
|
197
|
+
*DefaultApi* | [**get_decorated_interactive_session_logs_api_v2_decorated_interactive_sessions_interactive_session_id_logs_get**](docs/DefaultApi.md#get_decorated_interactive_session_logs_api_v2_decorated_interactive_sessions_interactive_session_id_logs_get) | **GET** /api/v2/decorated_interactive_sessions/{interactive_session_id}/logs | Get Decorated Interactive Session Logs
|
|
198
|
+
*DefaultApi* | [**get_decorated_job_api_v2_decorated_jobs_job_id_get**](docs/DefaultApi.md#get_decorated_job_api_v2_decorated_jobs_job_id_get) | **GET** /api/v2/decorated_jobs/{job_id} | Get Decorated Job
|
|
199
|
+
*DefaultApi* | [**get_decorated_job_logs_api_v2_decorated_jobs_job_id_logs_get**](docs/DefaultApi.md#get_decorated_job_logs_api_v2_decorated_jobs_job_id_logs_get) | **GET** /api/v2/decorated_jobs/{job_id}/logs | Get Decorated Job Logs
|
|
200
|
+
*DefaultApi* | [**get_decorated_job_submission_api_v2_decorated_job_submissions_ray_job_submission_db_id_get**](docs/DefaultApi.md#get_decorated_job_submission_api_v2_decorated_job_submissions_ray_job_submission_db_id_get) | **GET** /api/v2/decorated_job_submissions/{ray_job_submission_db_id} | Get Decorated Job Submission
|
|
201
|
+
*DefaultApi* | [**get_decorated_job_submission_logs_api_v2_decorated_job_submissions_ray_job_submission_db_id_logs_get**](docs/DefaultApi.md#get_decorated_job_submission_logs_api_v2_decorated_job_submissions_ray_job_submission_db_id_logs_get) | **GET** /api/v2/decorated_job_submissions/{ray_job_submission_db_id}/logs | Get Decorated Job Submission Logs
|
|
202
|
+
*DefaultApi* | [**get_decorated_runtime_env_api_v2_decorated_runtime_envs_runtime_env_id_get**](docs/DefaultApi.md#get_decorated_runtime_env_api_v2_decorated_runtime_envs_runtime_env_id_get) | **GET** /api/v2/decorated_runtime_envs/{runtime_env_id} | Get Decorated Runtime Env
|
|
203
|
+
*DefaultApi* | [**get_decorated_serve_deployment_api_v2_decorated_serve_deployments_serve_deloyment_id_get**](docs/DefaultApi.md#get_decorated_serve_deployment_api_v2_decorated_serve_deployments_serve_deloyment_id_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deloyment_id} | Get Decorated Serve Deployment
|
|
204
|
+
*DefaultApi* | [**get_decorated_serve_deployment_logs_api_v2_decorated_serve_deployments_serve_deployment_id_logs_get**](docs/DefaultApi.md#get_decorated_serve_deployment_logs_api_v2_decorated_serve_deployments_serve_deployment_id_logs_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deployment_id}/logs | Get Decorated Serve Deployment Logs
|
|
205
|
+
*DefaultApi* | [**get_decorated_support_request_for_user_organization_api_v2_support_requests_get**](docs/DefaultApi.md#get_decorated_support_request_for_user_organization_api_v2_support_requests_get) | **GET** /api/v2/support_requests/ | Get Decorated Support Request For User Organization
|
|
206
|
+
*DefaultApi* | [**get_default_cluster_env_build_api_v2_builds_default_py_version_ray_version_get**](docs/DefaultApi.md#get_default_cluster_env_build_api_v2_builds_default_py_version_ray_version_get) | **GET** /api/v2/builds/default/{py_version}/{ray_version} | Get Default Cluster Env Build
|
|
207
|
+
*DefaultApi* | [**get_default_compute_config_api_v2_compute_templates_default_cloud_id_get**](docs/DefaultApi.md#get_default_compute_config_api_v2_compute_templates_default_cloud_id_get) | **GET** /api/v2/compute_templates/default/{cloud_id} | Get Default Compute Config
|
|
208
|
+
*DefaultApi* | [**get_default_project_api_v2_projects_default_project_get**](docs/DefaultApi.md#get_default_project_api_v2_projects_default_project_get) | **GET** /api/v2/projects/default_project | Get Default Project
|
|
209
|
+
*DefaultApi* | [**get_edit_payment_information_url_api_v2_organization_billing_edit_payment_information_url_get**](docs/DefaultApi.md#get_edit_payment_information_url_api_v2_organization_billing_edit_payment_information_url_get) | **GET** /api/v2/organization_billing/edit_payment_information_url | Get Edit Payment Information Url
|
|
210
|
+
*DefaultApi* | [**get_endpoint_api_v2_aica_endpoints_endpoint_id_get**](docs/DefaultApi.md#get_endpoint_api_v2_aica_endpoints_endpoint_id_get) | **GET** /api/v2/aica_endpoints/{endpoint_id} | Get Endpoint
|
|
211
|
+
*DefaultApi* | [**get_events_api_v2_sessions_session_id_events_get**](docs/DefaultApi.md#get_events_api_v2_sessions_session_id_events_get) | **GET** /api/v2/sessions/{session_id}/events | Get Events
|
|
212
|
+
*DefaultApi* | [**get_execution_logs_api_v2_session_commands_session_command_id_execution_logs_get**](docs/DefaultApi.md#get_execution_logs_api_v2_session_commands_session_command_id_execution_logs_get) | **GET** /api/v2/session_commands/{session_command_id}/execution_logs | Get Execution Logs
|
|
213
|
+
*DefaultApi* | [**get_execution_logs_archived_api_v2_session_commands_session_command_id_execution_logs_archived_get**](docs/DefaultApi.md#get_execution_logs_archived_api_v2_session_commands_session_command_id_execution_logs_archived_get) | **GET** /api/v2/session_commands/{session_command_id}/execution_logs_archived | Get Execution Logs Archived
|
|
214
|
+
*DefaultApi* | [**get_feature_compatibility_api_v2_product_features_get**](docs/DefaultApi.md#get_feature_compatibility_api_v2_product_features_get) | **GET** /api/v2/product_features/ | Get Feature Compatibility
|
|
215
|
+
*DefaultApi* | [**get_fine_tuning_job_api_v2_fine_tuning_jobs_fine_tuning_job_id_get**](docs/DefaultApi.md#get_fine_tuning_job_api_v2_fine_tuning_jobs_fine_tuning_job_id_get) | **GET** /api/v2/fine_tuning/jobs/{fine_tuning_job_id} | Get Fine Tuning Job
|
|
216
|
+
*DefaultApi* | [**get_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_get**](docs/DefaultApi.md#get_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_get) | **GET** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Get Instance Usage Budget
|
|
217
|
+
*DefaultApi* | [**get_invitation_api_v2_organization_invitations_invitation_id_get**](docs/DefaultApi.md#get_invitation_api_v2_organization_invitations_invitation_id_get) | **GET** /api/v2/organization_invitations/{invitation_id} | Get Invitation
|
|
218
|
+
*DefaultApi* | [**get_job_api_v2_decorated_ha_jobs_production_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_ha_jobs_production_job_id_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id} | Get Job
|
|
219
|
+
*DefaultApi* | [**get_job_api_v2_decorated_unified_jobs_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_unified_jobs_job_id_get) | **GET** /api/v2/decorated_unified_jobs/{job_id} | Get Job
|
|
220
|
+
*DefaultApi* | [**get_job_events_api_v2_decorated_ha_jobs_production_job_id_events_get**](docs/DefaultApi.md#get_job_events_api_v2_decorated_ha_jobs_production_job_id_events_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id}/events | Get Job Events
|
|
221
|
+
*DefaultApi* | [**get_job_logs_download_api_v2_logs_job_logs_download_job_id_get**](docs/DefaultApi.md#get_job_logs_download_api_v2_logs_job_logs_download_job_id_get) | **GET** /api/v2/logs/job_logs_download/{job_id} | Get Job Logs Download
|
|
222
|
+
*DefaultApi* | [**get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get**](docs/DefaultApi.md#get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get) | **GET** /api/v2/logs/job_logs_download_v2/{job_id} | Get Job Logs Download V2
|
|
223
|
+
*DefaultApi* | [**get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get**](docs/DefaultApi.md#get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id}/logs_query | Get Job Logs Query Info
|
|
224
|
+
*DefaultApi* | [**get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get**](docs/DefaultApi.md#get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get) | **GET** /api/v2/logs/job_logs_stream/{job_id} | Get Job Logs Stream
|
|
225
|
+
*DefaultApi* | [**get_job_queue_api_v2_job_queues_job_queue_id_get**](docs/DefaultApi.md#get_job_queue_api_v2_job_queues_job_queue_id_get) | **GET** /api/v2/job_queues/{job_queue_id} | Get Job Queue
|
|
226
|
+
*DefaultApi* | [**get_lb_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get_lb_resource_post**](docs/DefaultApi.md#get_lb_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get_lb_resource_post) | **POST** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id}/get_lb_resource | Get Lb Resource
|
|
227
|
+
*DefaultApi* | [**get_log_files_api_v2_logs_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_logs_get_log_files_post) | **POST** /api/v2/logs/get_log_files | Get Log Files
|
|
228
|
+
*DefaultApi* | [**get_log_files_api_v2_sessions_session_id_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_sessions_session_id_get_log_files_post) | **POST** /api/v2/sessions/{session_id}/get_log_files | Get Log Files
|
|
229
|
+
*DefaultApi* | [**get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get**](docs/DefaultApi.md#get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get) | **GET** /api/v2/organization_billing/manage_billing_url | Get Manage Billing Url
|
|
230
|
+
*DefaultApi* | [**get_metronome_customer_info_api_v2_metronome_customer_info_organization_id_get**](docs/DefaultApi.md#get_metronome_customer_info_api_v2_metronome_customer_info_organization_id_get) | **GET** /api/v2/metronome_customer_info/{organization_id} | Get Metronome Customer Info
|
|
231
|
+
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_api_v2_organization_billing_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_api_v2_organization_billing_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard
|
|
232
|
+
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/{organization_id}/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard By Organization
|
|
233
|
+
*DefaultApi* | [**get_model_api_v2_llm_models_model_id_get**](docs/DefaultApi.md#get_model_api_v2_llm_models_model_id_get) | **GET** /api/v2/llm/models/{model_id} | Get Model
|
|
234
|
+
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
|
235
|
+
*DefaultApi* | [**get_model_configuration_api_v2_aica_endpoints_model_config_get**](docs/DefaultApi.md#get_model_configuration_api_v2_aica_endpoints_model_config_get) | **GET** /api/v2/aica_endpoints/model_config | Get Model Configuration
|
|
236
|
+
*DefaultApi* | [**get_model_schema_api_v2_aica_endpoints_model_schema_get**](docs/DefaultApi.md#get_model_schema_api_v2_aica_endpoints_model_schema_get) | **GET** /api/v2/aica_endpoints/model_schema | Get Model Schema
|
|
237
|
+
*DefaultApi* | [**get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get**](docs/DefaultApi.md#get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs | Get Monitor Logs
|
|
238
|
+
*DefaultApi* | [**get_monitor_logs_archived_api_v2_sessions_session_id_monitor_logs_archived_get**](docs/DefaultApi.md#get_monitor_logs_archived_api_v2_sessions_session_id_monitor_logs_archived_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs_archived | Get Monitor Logs Archived
|
|
239
|
+
*DefaultApi* | [**get_monitor_logs_download_api_v2_logs_monitor_logs_download_session_id_get**](docs/DefaultApi.md#get_monitor_logs_download_api_v2_logs_monitor_logs_download_session_id_get) | **GET** /api/v2/logs/monitor_logs_download/{session_id} | Get Monitor Logs Download
|
|
240
|
+
*DefaultApi* | [**get_monitor_logs_stream_api_v2_logs_monitor_logs_stream_session_id_get**](docs/DefaultApi.md#get_monitor_logs_stream_api_v2_logs_monitor_logs_stream_session_id_get) | **GET** /api/v2/logs/monitor_logs_stream/{session_id} | Get Monitor Logs Stream
|
|
241
|
+
*DefaultApi* | [**get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get**](docs/DefaultApi.md#get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get) | **GET** /api/v2/organization_billing/alerts | Get Organization Metronome Usage Alerts
|
|
242
|
+
*DefaultApi* | [**get_ping_external_services_api_v2_sessions_session_id_ping_external_services_get**](docs/DefaultApi.md#get_ping_external_services_api_v2_sessions_session_id_ping_external_services_get) | **GET** /api/v2/sessions/{session_id}/ping_external_services | Get Ping External Services
|
|
243
|
+
*DefaultApi* | [**get_project_api_v2_projects_project_id_get**](docs/DefaultApi.md#get_project_api_v2_projects_project_id_get) | **GET** /api/v2/projects/{project_id} | Get Project
|
|
244
|
+
*DefaultApi* | [**get_project_default_session_name_api_v2_projects_project_id_default_session_name_get**](docs/DefaultApi.md#get_project_default_session_name_api_v2_projects_project_id_default_session_name_get) | **GET** /api/v2/projects/{project_id}/default_session_name | Get Project Default Session Name
|
|
245
|
+
*DefaultApi* | [**get_project_latest_cluster_config_api_v2_projects_project_id_latest_cluster_config_get**](docs/DefaultApi.md#get_project_latest_cluster_config_api_v2_projects_project_id_latest_cluster_config_get) | **GET** /api/v2/projects/{project_id}/latest_cluster_config | Get Project Latest Cluster Config
|
|
246
|
+
*DefaultApi* | [**get_provider_metadata_api_v2_clouds_provider_metadata_cloud_id_get**](docs/DefaultApi.md#get_provider_metadata_api_v2_clouds_provider_metadata_cloud_id_get) | **GET** /api/v2/clouds/provider_metadata/{cloud_id} | Get Provider Metadata
|
|
247
|
+
*DefaultApi* | [**get_public_identifier_api_v2_organizations_public_identifier_get**](docs/DefaultApi.md#get_public_identifier_api_v2_organizations_public_identifier_get) | **GET** /api/v2/organizations/public_identifier | Get Public Identifier
|
|
248
|
+
*DefaultApi* | [**get_ray_result_files_api_v2_sessions_session_id_get_ray_result_files_get**](docs/DefaultApi.md#get_ray_result_files_api_v2_sessions_session_id_get_ray_result_files_get) | **GET** /api/v2/sessions/{session_id}/get_ray_result_files | Get Ray Result Files
|
|
249
|
+
*DefaultApi* | [**get_recent_cluster_compute_configs_api_v2_recent_activity_cluster_compute_configs_get**](docs/DefaultApi.md#get_recent_cluster_compute_configs_api_v2_recent_activity_cluster_compute_configs_get) | **GET** /api/v2/recent_activity/cluster_compute_configs | Get Recent Cluster Compute Configs
|
|
250
|
+
*DefaultApi* | [**get_recent_cluster_environments_api_v2_recent_activity_cluster_environment_builds_get**](docs/DefaultApi.md#get_recent_cluster_environments_api_v2_recent_activity_cluster_environment_builds_get) | **GET** /api/v2/recent_activity/cluster_environment_builds | Get Recent Cluster Environments
|
|
251
|
+
*DefaultApi* | [**get_recent_projects_api_v2_recent_activity_projects_get**](docs/DefaultApi.md#get_recent_projects_api_v2_recent_activity_projects_get) | **GET** /api/v2/recent_activity/projects | Get Recent Projects
|
|
252
|
+
*DefaultApi* | [**get_regions_and_zones_api_v2_aws_info_regions_and_zones_get**](docs/DefaultApi.md#get_regions_and_zones_api_v2_aws_info_regions_and_zones_get) | **GET** /api/v2/aws_info/regions_and_zones | Get Regions And Zones
|
|
253
|
+
*DefaultApi* | [**get_regions_and_zones_api_v2_clouds_gcp_regions_and_zones_get**](docs/DefaultApi.md#get_regions_and_zones_api_v2_clouds_gcp_regions_and_zones_get) | **GET** /api/v2/clouds/gcp/regions_and_zones | Get Regions And Zones
|
|
254
|
+
*DefaultApi* | [**get_resource_quota_api_v2_resource_quotas_resource_quota_id_get**](docs/DefaultApi.md#get_resource_quota_api_v2_resource_quotas_resource_quota_id_get) | **GET** /api/v2/resource_quotas/{resource_quota_id} | Get Resource Quota
|
|
255
|
+
*DefaultApi* | [**get_runtime_env_logs_api_v2_sessions_session_id_runtime_env_logs_get**](docs/DefaultApi.md#get_runtime_env_logs_api_v2_sessions_session_id_runtime_env_logs_get) | **GET** /api/v2/sessions/{session_id}/runtime_env_logs | Get Runtime Env Logs
|
|
256
|
+
*DefaultApi* | [**get_runtime_env_logs_download_api_v2_logs_runtime_env_logs_download_session_id_get**](docs/DefaultApi.md#get_runtime_env_logs_download_api_v2_logs_runtime_env_logs_download_session_id_get) | **GET** /api/v2/logs/runtime_env_logs_download/{session_id} | Get Runtime Env Logs Download
|
|
257
|
+
*DefaultApi* | [**get_runtime_env_logs_stream_api_v2_logs_runtime_env_logs_stream_session_id_get**](docs/DefaultApi.md#get_runtime_env_logs_stream_api_v2_logs_runtime_env_logs_stream_session_id_get) | **GET** /api/v2/logs/runtime_env_logs_stream/{session_id} | Get Runtime Env Logs Stream
|
|
258
|
+
*DefaultApi* | [**get_serve_logs_download_api_v2_logs_serve_logs_download_cluster_id_get**](docs/DefaultApi.md#get_serve_logs_download_api_v2_logs_serve_logs_download_cluster_id_get) | **GET** /api/v2/logs/serve_logs_download/{cluster_id} | Get Serve Logs Download
|
|
259
|
+
*DefaultApi* | [**get_service_api_v2_services_v2_service_id_get**](docs/DefaultApi.md#get_service_api_v2_services_v2_service_id_get) | **GET** /api/v2/services-v2/{service_id} | Get Service
|
|
260
|
+
*DefaultApi* | [**get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get**](docs/DefaultApi.md#get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get) | **GET** /api/v2/services-v2/events/{event_id}/verbose_message | Get Service Event Verbose Message
|
|
261
|
+
*DefaultApi* | [**get_service_events_api_v2_services_v2_service_id_events_get**](docs/DefaultApi.md#get_service_events_api_v2_services_v2_service_id_events_get) | **GET** /api/v2/services-v2/{service_id}/events | Get Service Events
|
|
262
|
+
*DefaultApi* | [**get_service_versions_api_v2_services_v2_service_id_versions_get**](docs/DefaultApi.md#get_service_versions_api_v2_services_v2_service_id_versions_get) | **GET** /api/v2/services-v2/{service_id}/versions | Get Service Versions
|
|
263
|
+
*DefaultApi* | [**get_session_api_v2_sessions_session_id_get**](docs/DefaultApi.md#get_session_api_v2_sessions_session_id_get) | **GET** /api/v2/sessions/{session_id} | Get Session
|
|
264
|
+
*DefaultApi* | [**get_session_cluster_config_api_v2_sessions_session_id_cluster_config_get**](docs/DefaultApi.md#get_session_cluster_config_api_v2_sessions_session_id_cluster_config_get) | **GET** /api/v2/sessions/{session_id}/cluster_config | Get Session Cluster Config
|
|
265
|
+
*DefaultApi* | [**get_session_cluster_config_with_session_idle_timeout_api_v2_sessions_session_id_cluster_config_with_session_idle_timeout_get**](docs/DefaultApi.md#get_session_cluster_config_with_session_idle_timeout_api_v2_sessions_session_id_cluster_config_with_session_idle_timeout_get) | **GET** /api/v2/sessions/{session_id}/cluster_config_with_session_idle_timeout | Get Session Cluster Config With Session Idle Timeout
|
|
266
|
+
*DefaultApi* | [**get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get**](docs/DefaultApi.md#get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get) | **GET** /api/v2/logs/session_command_logs/{session_id}/{session_command_id} | Get Session Command Logs Download
|
|
267
|
+
*DefaultApi* | [**get_session_commands_history_api_v2_session_commands_get**](docs/DefaultApi.md#get_session_commands_history_api_v2_session_commands_get) | **GET** /api/v2/session_commands/ | Get Session Commands History
|
|
268
|
+
*DefaultApi* | [**get_session_details_api_v2_sessions_session_id_details_get**](docs/DefaultApi.md#get_session_details_api_v2_sessions_session_id_details_get) | **GET** /api/v2/sessions/{session_id}/details | Get Session Details
|
|
269
|
+
*DefaultApi* | [**get_session_event_log_api_v2_session_events_get**](docs/DefaultApi.md#get_session_event_log_api_v2_session_events_get) | **GET** /api/v2/session_events/ | Get Session Event Log
|
|
270
|
+
*DefaultApi* | [**get_session_head_ip_api_v2_sessions_session_id_head_ip_get**](docs/DefaultApi.md#get_session_head_ip_api_v2_sessions_session_id_head_ip_get) | **GET** /api/v2/sessions/{session_id}/head_ip | Get Session Head Ip
|
|
271
|
+
*DefaultApi* | [**get_session_history_api_v2_sessions_session_id_history_get**](docs/DefaultApi.md#get_session_history_api_v2_sessions_session_id_history_get) | **GET** /api/v2/sessions/{session_id}/history | Get Session History
|
|
272
|
+
*DefaultApi* | [**get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get**](docs/DefaultApi.md#get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get) | **GET** /api/v2/sessions/{session_id}/ssh_key | Get Session Ssh Key
|
|
273
|
+
*DefaultApi* | [**get_socket_message_types_api_v2_userinfo_socket_messages_type_get**](docs/DefaultApi.md#get_socket_message_types_api_v2_userinfo_socket_messages_type_get) | **GET** /api/v2/userinfo/socket_messages_type | Get Socket Message Types
|
|
274
|
+
*DefaultApi* | [**get_socket_types_type_api_v2_userinfo_socket_types_type_get**](docs/DefaultApi.md#get_socket_types_type_api_v2_userinfo_socket_types_type_get) | **GET** /api/v2/userinfo/socket_types_type | Get Socket Types Type
|
|
275
|
+
*DefaultApi* | [**get_startup_logs_api_v2_sessions_session_id_startup_logs_get**](docs/DefaultApi.md#get_startup_logs_api_v2_sessions_session_id_startup_logs_get) | **GET** /api/v2/sessions/{session_id}/startup_logs | Get Startup Logs
|
|
276
|
+
*DefaultApi* | [**get_startup_logs_archived_api_v2_sessions_session_id_startup_logs_archived_get**](docs/DefaultApi.md#get_startup_logs_archived_api_v2_sessions_session_id_startup_logs_archived_get) | **GET** /api/v2/sessions/{session_id}/startup_logs_archived | Get Startup Logs Archived
|
|
277
|
+
*DefaultApi* | [**get_template_readme_api_v2_experimental_workspaces_template_readme_template_id_get**](docs/DefaultApi.md#get_template_readme_api_v2_experimental_workspaces_template_readme_template_id_get) | **GET** /api/v2/experimental_workspaces/template/readme/{template_id} | Get Template Readme
|
|
278
|
+
*DefaultApi* | [**get_templatized_cluster_environments_api_v2_application_templates_templatized_get**](docs/DefaultApi.md#get_templatized_cluster_environments_api_v2_application_templates_templatized_get) | **GET** /api/v2/application_templates/templatized/ | Get Templatized Cluster Environments
|
|
279
|
+
*DefaultApi* | [**get_templatized_compute_configs_api_v2_compute_templates_templatized_cloud_id_get**](docs/DefaultApi.md#get_templatized_compute_configs_api_v2_compute_templates_templatized_cloud_id_get) | **GET** /api/v2/compute_templates/templatized/{cloud_id} | Get Templatized Compute Configs
|
|
280
|
+
*DefaultApi* | [**get_user_info_api_v2_userinfo_get**](docs/DefaultApi.md#get_user_info_api_v2_userinfo_get) | **GET** /api/v2/userinfo/ | Get User Info
|
|
281
|
+
*DefaultApi* | [**get_workspace_api_v2_experimental_workspaces_workspace_id_get**](docs/DefaultApi.md#get_workspace_api_v2_experimental_workspaces_workspace_id_get) | **GET** /api/v2/experimental_workspaces/{workspace_id} | Get Workspace
|
|
282
|
+
*DefaultApi* | [**get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get**](docs/DefaultApi.md#get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/dataplane_artifacts | Get Workspace Dataplane Artifacts
|
|
283
|
+
*DefaultApi* | [**get_workspace_events_api_v2_experimental_workspaces_workspace_id_events_get**](docs/DefaultApi.md#get_workspace_events_api_v2_experimental_workspaces_workspace_id_events_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/events | Get Workspace Events
|
|
284
|
+
*DefaultApi* | [**get_workspace_proxied_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_proxied_dataplane_artifacts_get**](docs/DefaultApi.md#get_workspace_proxied_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_proxied_dataplane_artifacts_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/proxied_dataplane_artifacts | Get Workspace Proxied Dataplane Artifacts
|
|
285
|
+
*DefaultApi* | [**get_workspace_readme_api_v2_experimental_workspaces_workspace_id_readme_get**](docs/DefaultApi.md#get_workspace_readme_api_v2_experimental_workspaces_workspace_id_readme_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/readme | Get Workspace Readme
|
|
286
|
+
*DefaultApi* | [**get_workspace_template_cluster_environment_api_v2_experimental_workspaces_template_template_id_cluster_environment_get**](docs/DefaultApi.md#get_workspace_template_cluster_environment_api_v2_experimental_workspaces_template_template_id_cluster_environment_get) | **GET** /api/v2/experimental_workspaces/template/{template_id}/cluster_environment | Get Workspace Template Cluster Environment
|
|
287
|
+
*DefaultApi* | [**get_workspace_template_compute_config_api_v2_experimental_workspaces_template_template_id_compute_config_get**](docs/DefaultApi.md#get_workspace_template_compute_config_api_v2_experimental_workspaces_template_template_id_compute_config_get) | **GET** /api/v2/experimental_workspaces/template/{template_id}/compute_config | Get Workspace Template Compute Config
|
|
288
|
+
*DefaultApi* | [**handle_cloud_metrics_auth_api_v2_authentication_cloud_id_cloud_persistent_metrics_get**](docs/DefaultApi.md#handle_cloud_metrics_auth_api_v2_authentication_cloud_id_cloud_persistent_metrics_get) | **GET** /api/v2/authentication/{cloud_id}/cloud_persistent_metrics | Handle Cloud Metrics Auth
|
|
289
|
+
*DefaultApi* | [**handle_cluster_auth_api_v2_authentication_cluster_id_cluster_get**](docs/DefaultApi.md#handle_cluster_auth_api_v2_authentication_cluster_id_cluster_get) | **GET** /api/v2/authentication/{cluster_id}/cluster | Handle Cluster Auth
|
|
290
|
+
*DefaultApi* | [**handle_webhook_api_v2_metronome_webhooks_handle_webhook_post**](docs/DefaultApi.md#handle_webhook_api_v2_metronome_webhooks_handle_webhook_post) | **POST** /api/v2/metronome_webhooks/handle_webhook | Handle Webhook
|
|
291
|
+
*DefaultApi* | [**health_check_api_v2_health_get**](docs/DefaultApi.md#health_check_api_v2_health_get) | **GET** /api/v2/health/ | Health Check
|
|
292
|
+
*DefaultApi* | [**import_model_api_v2_aica_endpoints_import_model_post**](docs/DefaultApi.md#import_model_api_v2_aica_endpoints_import_model_post) | **POST** /api/v2/aica_endpoints/import_model | Import Model
|
|
293
|
+
*DefaultApi* | [**invalidate_invitation_api_v2_organization_invitations_invitation_id_invalidate_post**](docs/DefaultApi.md#invalidate_invitation_api_v2_organization_invitations_invitation_id_invalidate_post) | **POST** /api/v2/organization_invitations/{invitation_id}/invalidate | Invalidate Invitation
|
|
294
|
+
*DefaultApi* | [**is_valid_api_v2_authentication_hex_token_id_is_valid_post**](docs/DefaultApi.md#is_valid_api_v2_authentication_hex_token_id_is_valid_post) | **POST** /api/v2/authentication/{hex_token_id}/is_valid | Is Valid
|
|
295
|
+
*DefaultApi* | [**kill_session_command_api_v2_session_commands_session_command_id_kill_post**](docs/DefaultApi.md#kill_session_command_api_v2_session_commands_session_command_id_kill_post) | **POST** /api/v2/session_commands/{session_command_id}/kill | Kill Session Command
|
|
296
|
+
*DefaultApi* | [**list_aica_endpoint_events_api_v2_aica_endpoints_endpoint_id_events_get**](docs/DefaultApi.md#list_aica_endpoint_events_api_v2_aica_endpoints_endpoint_id_events_get) | **GET** /api/v2/aica_endpoints/{endpoint_id}/events | List Aica Endpoint Events
|
|
297
|
+
*DefaultApi* | [**list_aica_endpoints_api_v2_aica_endpoints_get**](docs/DefaultApi.md#list_aica_endpoints_api_v2_aica_endpoints_get) | **GET** /api/v2/aica_endpoints/ | List Aica Endpoints
|
|
298
|
+
*DefaultApi* | [**list_application_templates_api_v2_application_templates_get**](docs/DefaultApi.md#list_application_templates_api_v2_application_templates_get) | **GET** /api/v2/application_templates/ | List Application Templates
|
|
299
|
+
*DefaultApi* | [**list_builds_api_v2_builds_get**](docs/DefaultApi.md#list_builds_api_v2_builds_get) | **GET** /api/v2/builds/ | List Builds
|
|
300
|
+
*DefaultApi* | [**list_clouds_api_v2_clouds_get**](docs/DefaultApi.md#list_clouds_api_v2_clouds_get) | **GET** /api/v2/clouds/ | List Clouds
|
|
301
|
+
*DefaultApi* | [**list_configurations_api_v2_organization_configurations_get**](docs/DefaultApi.md#list_configurations_api_v2_organization_configurations_get) | **GET** /api/v2/organization_configurations/ | List Configurations
|
|
302
|
+
*DefaultApi* | [**list_cron_jobs_api_v2_experimental_cron_jobs_get**](docs/DefaultApi.md#list_cron_jobs_api_v2_experimental_cron_jobs_get) | **GET** /api/v2/experimental_cron_jobs/ | List Cron Jobs
|
|
303
|
+
*DefaultApi* | [**list_dataset_versions_api_v2_datasets_versions_get**](docs/DefaultApi.md#list_dataset_versions_api_v2_datasets_versions_get) | **GET** /api/v2/datasets/versions | List Dataset Versions
|
|
304
|
+
*DefaultApi* | [**list_datasets_api_v2_datasets_get**](docs/DefaultApi.md#list_datasets_api_v2_datasets_get) | **GET** /api/v2/datasets/ | List Datasets
|
|
305
|
+
*DefaultApi* | [**list_decorated_clusters_api_v2_decorated_sessions_get**](docs/DefaultApi.md#list_decorated_clusters_api_v2_decorated_sessions_get) | **GET** /api/v2/decorated_sessions/ | List Decorated Clusters
|
|
306
|
+
*DefaultApi* | [**list_decorated_interactive_sessions_api_v2_decorated_interactive_sessions_get**](docs/DefaultApi.md#list_decorated_interactive_sessions_api_v2_decorated_interactive_sessions_get) | **GET** /api/v2/decorated_interactive_sessions/ | List Decorated Interactive Sessions
|
|
307
|
+
*DefaultApi* | [**list_decorated_job_submissions_api_v2_decorated_job_submissions_get**](docs/DefaultApi.md#list_decorated_job_submissions_api_v2_decorated_job_submissions_get) | **GET** /api/v2/decorated_job_submissions/ | List Decorated Job Submissions
|
|
308
|
+
*DefaultApi* | [**list_decorated_jobs_api_v2_decorated_ha_jobs_get**](docs/DefaultApi.md#list_decorated_jobs_api_v2_decorated_ha_jobs_get) | **GET** /api/v2/decorated_ha_jobs/ | List Decorated Jobs
|
|
309
|
+
*DefaultApi* | [**list_decorated_jobs_api_v2_decorated_jobs_get**](docs/DefaultApi.md#list_decorated_jobs_api_v2_decorated_jobs_get) | **GET** /api/v2/decorated_jobs/ | List Decorated Jobs
|
|
310
|
+
*DefaultApi* | [**list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get**](docs/DefaultApi.md#list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get) | **GET** /api/v2/decorated_runtime_envs/ | List Decorated Runtime Envs
|
|
311
|
+
*DefaultApi* | [**list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get**](docs/DefaultApi.md#list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get) | **GET** /api/v2/decorated_serve_deployments/ | List Decorated Serve Deployments
|
|
312
|
+
*DefaultApi* | [**list_fine_tuning_jobs_api_v2_fine_tuning_jobs_get**](docs/DefaultApi.md#list_fine_tuning_jobs_api_v2_fine_tuning_jobs_get) | **GET** /api/v2/fine_tuning/jobs | List Fine Tuning Jobs
|
|
313
|
+
*DefaultApi* | [**list_instance_usage_budgets_api_v2_instance_usage_budgets_get**](docs/DefaultApi.md#list_instance_usage_budgets_api_v2_instance_usage_budgets_get) | **GET** /api/v2/instance_usage_budgets/ | List Instance Usage Budgets
|
|
314
|
+
*DefaultApi* | [**list_invitations_api_v2_organization_invitations_get**](docs/DefaultApi.md#list_invitations_api_v2_organization_invitations_get) | **GET** /api/v2/organization_invitations/ | List Invitations
|
|
315
|
+
*DefaultApi* | [**list_job_queues_api_v2_job_queues_post**](docs/DefaultApi.md#list_job_queues_api_v2_job_queues_post) | **POST** /api/v2/job_queues/ | List Job Queues
|
|
316
|
+
*DefaultApi* | [**list_job_states_api_v2_decorated_ha_job_states_get**](docs/DefaultApi.md#list_job_states_api_v2_decorated_ha_job_states_get) | **GET** /api/v2/decorated_ha_job_states/ | List Job States
|
|
317
|
+
*DefaultApi* | [**list_jobs_api_v2_decorated_unified_jobs_get**](docs/DefaultApi.md#list_jobs_api_v2_decorated_unified_jobs_get) | **GET** /api/v2/decorated_unified_jobs/ | List Jobs
|
|
318
|
+
*DefaultApi* | [**list_long_running_workloads_api_v2_decorated_sessions_long_running_workloads_get**](docs/DefaultApi.md#list_long_running_workloads_api_v2_decorated_sessions_long_running_workloads_get) | **GET** /api/v2/decorated_sessions/long-running-workloads | List Long Running Workloads
|
|
319
|
+
*DefaultApi* | [**list_machine_pools_api_v2_machine_pools_get**](docs/DefaultApi.md#list_machine_pools_api_v2_machine_pools_get) | **GET** /api/v2/machine_pools/ | List Machine Pools
|
|
320
|
+
*DefaultApi* | [**list_machines_api_v2_machines_get**](docs/DefaultApi.md#list_machines_api_v2_machines_get) | **GET** /api/v2/machines/ | List Machines
|
|
321
|
+
*DefaultApi* | [**list_metronome_customer_info_api_v2_metronome_customer_info_get**](docs/DefaultApi.md#list_metronome_customer_info_api_v2_metronome_customer_info_get) | **GET** /api/v2/metronome_customer_info/ | List Metronome Customer Info
|
|
322
|
+
*DefaultApi* | [**list_models_api_v2_aica_endpoints_models_get**](docs/DefaultApi.md#list_models_api_v2_aica_endpoints_models_get) | **GET** /api/v2/aica_endpoints/models | List Models
|
|
323
|
+
*DefaultApi* | [**list_models_api_v2_llm_models_get**](docs/DefaultApi.md#list_models_api_v2_llm_models_get) | **GET** /api/v2/llm/models | List Models
|
|
324
|
+
*DefaultApi* | [**list_organization_collaborators_api_v2_organization_collaborators_get**](docs/DefaultApi.md#list_organization_collaborators_api_v2_organization_collaborators_get) | **GET** /api/v2/organization_collaborators/ | List Organization Collaborators
|
|
325
|
+
*DefaultApi* | [**list_organization_project_collaborators_api_v2_projects_project_id_collaborators_organizations_get**](docs/DefaultApi.md#list_organization_project_collaborators_api_v2_projects_project_id_collaborators_organizations_get) | **GET** /api/v2/projects/{project_id}/collaborators/organizations | List Organization Project Collaborators
|
|
326
|
+
*DefaultApi* | [**list_project_collaborators_api_v2_projects_project_id_collaborators_users_get**](docs/DefaultApi.md#list_project_collaborators_api_v2_projects_project_id_collaborators_users_get) | **GET** /api/v2/projects/{project_id}/collaborators/users | List Project Collaborators
|
|
327
|
+
*DefaultApi* | [**list_projects_api_v2_projects_get**](docs/DefaultApi.md#list_projects_api_v2_projects_get) | **GET** /api/v2/projects/ | List Projects
|
|
328
|
+
*DefaultApi* | [**list_services_api_v2_services_v2_get**](docs/DefaultApi.md#list_services_api_v2_services_v2_get) | **GET** /api/v2/services-v2/ | List Services
|
|
329
|
+
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
|
330
|
+
*DefaultApi* | [**list_versions_api_v2_aica_endpoints_versions_get**](docs/DefaultApi.md#list_versions_api_v2_aica_endpoints_versions_get) | **GET** /api/v2/aica_endpoints/versions | List Versions
|
|
331
|
+
*DefaultApi* | [**list_web_terminals_api_v2_sessions_session_id_web_terminals_get**](docs/DefaultApi.md#list_web_terminals_api_v2_sessions_session_id_web_terminals_get) | **GET** /api/v2/sessions/{session_id}/web_terminals | List Web Terminals
|
|
332
|
+
*DefaultApi* | [**list_workspace_templates_api_v2_experimental_workspaces_templates_get**](docs/DefaultApi.md#list_workspace_templates_api_v2_experimental_workspaces_templates_get) | **GET** /api/v2/experimental_workspaces/templates | List Workspace Templates
|
|
333
|
+
*DefaultApi* | [**list_workspaces_api_v2_experimental_workspaces_get**](docs/DefaultApi.md#list_workspaces_api_v2_experimental_workspaces_get) | **GET** /api/v2/experimental_workspaces/ | List Workspaces
|
|
334
|
+
*DefaultApi* | [**login_user_api_v2_users_login_post**](docs/DefaultApi.md#login_user_api_v2_users_login_post) | **POST** /api/v2/users/login | Login User
|
|
335
|
+
*DefaultApi* | [**logout_user_api_v2_users_logout_post**](docs/DefaultApi.md#logout_user_api_v2_users_logout_post) | **POST** /api/v2/users/logout | Logout User
|
|
336
|
+
*DefaultApi* | [**model_s3_mirror_credentials_api_v2_aica_endpoints_model_s3_credentials_post**](docs/DefaultApi.md#model_s3_mirror_credentials_api_v2_aica_endpoints_model_s3_credentials_post) | **POST** /api/v2/aica_endpoints/model_s3_credentials | Model S3 Mirror Credentials
|
|
337
|
+
*DefaultApi* | [**organization_valid_for_migration_api_v2_access_controls_migration_organization_id_organization_valid_for_migration_get**](docs/DefaultApi.md#organization_valid_for_migration_api_v2_access_controls_migration_organization_id_organization_valid_for_migration_get) | **GET** /api/v2/access_controls_migration/{organization_id}/organization_valid_for_migration | Organization Valid For Migration
|
|
338
|
+
*DefaultApi* | [**patch_project_api_v2_projects_project_id_patch**](docs/DefaultApi.md#patch_project_api_v2_projects_project_id_patch) | **PATCH** /api/v2/projects/{project_id} | Patch Project
|
|
339
|
+
*DefaultApi* | [**patch_session_api_v2_sessions_session_id_patch**](docs/DefaultApi.md#patch_session_api_v2_sessions_session_id_patch) | **PATCH** /api/v2/sessions/{session_id} | Patch Session
|
|
340
|
+
*DefaultApi* | [**patch_workspace_api_v2_experimental_workspaces_workspace_id_patch**](docs/DefaultApi.md#patch_workspace_api_v2_experimental_workspaces_workspace_id_patch) | **PATCH** /api/v2/experimental_workspaces/{workspace_id} | Patch Workspace
|
|
341
|
+
*DefaultApi* | [**pause_cron_job_api_v2_experimental_cron_jobs_cron_job_id_pause_post**](docs/DefaultApi.md#pause_cron_job_api_v2_experimental_cron_jobs_cron_job_id_pause_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/pause | Pause Cron Job
|
|
342
|
+
*DefaultApi* | [**produce_analytics_event_api_v2_analytics_post**](docs/DefaultApi.md#produce_analytics_event_api_v2_analytics_post) | **POST** /api/v2/analytics/ | Produce Analytics Event
|
|
343
|
+
*DefaultApi* | [**projects_violating_tree_hierarchy_api_v2_access_controls_migration_organization_id_projects_violating_tree_hierarchy_get**](docs/DefaultApi.md#projects_violating_tree_hierarchy_api_v2_access_controls_migration_organization_id_projects_violating_tree_hierarchy_get) | **GET** /api/v2/access_controls_migration/{organization_id}/projects_violating_tree_hierarchy | Projects Violating Tree Hierarchy
|
|
344
|
+
*DefaultApi* | [**publish_api_v2_streams_publish_post**](docs/DefaultApi.md#publish_api_v2_streams_publish_post) | **POST** /api/v2/streams/publish | Publish
|
|
345
|
+
*DefaultApi* | [**push_cloud_overview_dashboard_api_v2_clouds_cloud_id_push_cloud_overview_dashboard_post**](docs/DefaultApi.md#push_cloud_overview_dashboard_api_v2_clouds_cloud_id_push_cloud_overview_dashboard_post) | **POST** /api/v2/clouds/{cloud_id}/push-cloud-overview-dashboard | Push Cloud Overview Dashboard
|
|
346
|
+
*DefaultApi* | [**put_job_wandb_run_details_api_v2_integrations_job_wandb_run_details_job_id_put**](docs/DefaultApi.md#put_job_wandb_run_details_api_v2_integrations_job_wandb_run_details_job_id_put) | **PUT** /api/v2/integrations/job_wandb_run_details/{job_id} | Put Job Wandb Run Details
|
|
347
|
+
*DefaultApi* | [**put_production_job_wandb_run_details_api_v2_integrations_production_job_wandb_run_details_production_job_id_put**](docs/DefaultApi.md#put_production_job_wandb_run_details_api_v2_integrations_production_job_wandb_run_details_production_job_id_put) | **PUT** /api/v2/integrations/production_job_wandb_run_details/{production_job_id} | Put Production Job Wandb Run Details
|
|
348
|
+
*DefaultApi* | [**put_session_cluster_config_with_session_idle_timeout_api_v2_sessions_session_id_cluster_config_with_session_idle_timeout_put**](docs/DefaultApi.md#put_session_cluster_config_with_session_idle_timeout_api_v2_sessions_session_id_cluster_config_with_session_idle_timeout_put) | **PUT** /api/v2/sessions/{session_id}/cluster_config_with_session_idle_timeout | Put Session Cluster Config With Session Idle Timeout
|
|
349
|
+
*DefaultApi* | [**put_workspace_proxied_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_proxied_dataplane_artifacts_put**](docs/DefaultApi.md#put_workspace_proxied_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_proxied_dataplane_artifacts_put) | **PUT** /api/v2/experimental_workspaces/{workspace_id}/proxied_dataplane_artifacts | Put Workspace Proxied Dataplane Artifacts
|
|
350
|
+
*DefaultApi* | [**put_workspace_wandb_run_details_api_v2_integrations_workspace_wandb_run_details_workspace_id_put**](docs/DefaultApi.md#put_workspace_wandb_run_details_api_v2_integrations_workspace_wandb_run_details_workspace_id_put) | **PUT** /api/v2/integrations/workspace_wandb_run_details/{workspace_id} | Put Workspace Wandb Run Details
|
|
351
|
+
*DefaultApi* | [**query_aggregated_logs_api_v2_logs_query_aggregated_logs_get**](docs/DefaultApi.md#query_aggregated_logs_api_v2_logs_query_aggregated_logs_get) | **GET** /api/v2/logs/query_aggregated_logs | Query Aggregated Logs
|
|
352
|
+
*DefaultApi* | [**redirect_to_service_api_v2_sessions_cluster_id_services_get**](docs/DefaultApi.md#redirect_to_service_api_v2_sessions_cluster_id_services_get) | **GET** /api/v2/sessions/{cluster_id}/services | Redirect To Service
|
|
353
|
+
*DefaultApi* | [**redirect_to_tools_api_v2_services_v2_service_id_tools_get**](docs/DefaultApi.md#redirect_to_tools_api_v2_services_v2_service_id_tools_get) | **GET** /api/v2/services-v2/{service_id}/tools | Redirect To Tools
|
|
354
|
+
*DefaultApi* | [**register_api_v2_kubernetes_manager_register_post**](docs/DefaultApi.md#register_api_v2_kubernetes_manager_register_post) | **POST** /api/v2/kubernetes_manager/register | Register
|
|
355
|
+
*DefaultApi* | [**register_buffer_api_v2_anyscaled_register_buffer_post**](docs/DefaultApi.md#register_buffer_api_v2_anyscaled_register_buffer_post) | **POST** /api/v2/anyscaled/register_buffer | Register Buffer
|
|
356
|
+
*DefaultApi* | [**register_build_api_v2_anyscaled_register_build_post**](docs/DefaultApi.md#register_build_api_v2_anyscaled_register_build_post) | **POST** /api/v2/anyscaled/register_build | Register Build
|
|
357
|
+
*DefaultApi* | [**register_machine_api_v2_anyscaled_register_machine_post**](docs/DefaultApi.md#register_machine_api_v2_anyscaled_register_machine_post) | **POST** /api/v2/anyscaled/register_machine | Register Machine
|
|
358
|
+
*DefaultApi* | [**register_user_api_v2_users_post**](docs/DefaultApi.md#register_user_api_v2_users_post) | **POST** /api/v2/users/ | Register User
|
|
359
|
+
*DefaultApi* | [**register_v2_api_v2_anyscaled_register_v2_post**](docs/DefaultApi.md#register_v2_api_v2_anyscaled_register_v2_post) | **POST** /api/v2/anyscaled/register_v2 | Register V2
|
|
360
|
+
*DefaultApi* | [**remove_organization_collaborator_api_v2_organization_collaborators_identity_id_delete**](docs/DefaultApi.md#remove_organization_collaborator_api_v2_organization_collaborators_identity_id_delete) | **DELETE** /api/v2/organization_collaborators/{identity_id} | Remove Organization Collaborator
|
|
361
|
+
*DefaultApi* | [**request_email_magic_link_api_v2_users_email_magic_link_post**](docs/DefaultApi.md#request_email_magic_link_api_v2_users_email_magic_link_post) | **POST** /api/v2/users/email_magic_link | Request Email Magic Link
|
|
362
|
+
*DefaultApi* | [**request_password_reset_api_v2_users_request_password_reset_post**](docs/DefaultApi.md#request_password_reset_api_v2_users_request_password_reset_post) | **POST** /api/v2/users/request_password_reset | Request Password Reset
|
|
363
|
+
*DefaultApi* | [**reset_password_api_v2_users_reset_password_post**](docs/DefaultApi.md#reset_password_api_v2_users_reset_password_post) | **POST** /api/v2/users/reset_password | Reset Password
|
|
364
|
+
*DefaultApi* | [**restart_service_api_v2_services_v2_service_id_restart_post**](docs/DefaultApi.md#restart_service_api_v2_services_v2_service_id_restart_post) | **POST** /api/v2/services-v2/{service_id}/restart | Restart Service
|
|
365
|
+
*DefaultApi* | [**resubmit_fine_tuning_job_api_v2_fine_tuning_jobs_internal_resubmit_post**](docs/DefaultApi.md#resubmit_fine_tuning_job_api_v2_fine_tuning_jobs_internal_resubmit_post) | **POST** /api/v2/fine_tuning/jobs/internal/resubmit | Resubmit Fine Tuning Job
|
|
366
|
+
*DefaultApi* | [**rollback_service_api_v2_services_v2_service_id_rollback_post**](docs/DefaultApi.md#rollback_service_api_v2_services_v2_service_id_rollback_post) | **POST** /api/v2/services-v2/{service_id}/rollback | Rollback Service
|
|
367
|
+
*DefaultApi* | [**rotate_api_key_api_v2_users_rotate_api_key_get**](docs/DefaultApi.md#rotate_api_key_api_v2_users_rotate_api_key_get) | **GET** /api/v2/users/rotate_api_key | Rotate Api Key
|
|
368
|
+
*DefaultApi* | [**rotate_api_key_for_user_api_v2_organization_collaborators_rotate_api_key_for_user_user_id_post**](docs/DefaultApi.md#rotate_api_key_for_user_api_v2_organization_collaborators_rotate_api_key_for_user_user_id_post) | **POST** /api/v2/organization_collaborators/rotate_api_key_for_user/{user_id} | Rotate Api Key For User
|
|
369
|
+
*DefaultApi* | [**saml_acs_api_v2_organizations_organization_id_saml_acs_post**](docs/DefaultApi.md#saml_acs_api_v2_organizations_organization_id_saml_acs_post) | **POST** /api/v2/organizations/{organization_id}/saml_acs | Saml Acs
|
|
370
|
+
*DefaultApi* | [**search_cloud_collaborators_api_v2_clouds_cloud_id_collaborators_users_search_post**](docs/DefaultApi.md#search_cloud_collaborators_api_v2_clouds_cloud_id_collaborators_users_search_post) | **POST** /api/v2/clouds/{cloud_id}/collaborators/users/search | Search Cloud Collaborators
|
|
371
|
+
*DefaultApi* | [**search_cluster_environments_api_v2_application_templates_search_post**](docs/DefaultApi.md#search_cluster_environments_api_v2_application_templates_search_post) | **POST** /api/v2/application_templates/search | Search Cluster Environments
|
|
372
|
+
*DefaultApi* | [**search_compute_templates_api_v2_compute_templates_search_post**](docs/DefaultApi.md#search_compute_templates_api_v2_compute_templates_search_post) | **POST** /api/v2/compute_templates/search | Search Compute Templates
|
|
373
|
+
*DefaultApi* | [**search_invoices_api_v2_organization_billing_invoices_post**](docs/DefaultApi.md#search_invoices_api_v2_organization_billing_invoices_post) | **POST** /api/v2/organization_billing/invoices | Search Invoices
|
|
374
|
+
*DefaultApi* | [**search_resource_quotas_api_v2_resource_quotas_search_post**](docs/DefaultApi.md#search_resource_quotas_api_v2_resource_quotas_search_post) | **POST** /api/v2/resource_quotas/search | Search Resource Quotas
|
|
375
|
+
*DefaultApi* | [**search_support_requests_api_v2_support_requests_search_post**](docs/DefaultApi.md#search_support_requests_api_v2_support_requests_search_post) | **POST** /api/v2/support_requests/search | Search Support Requests
|
|
376
|
+
*DefaultApi* | [**search_user_cards_api_v2_onboarding_cards_search_post**](docs/DefaultApi.md#search_user_cards_api_v2_onboarding_cards_search_post) | **POST** /api/v2/onboarding_cards/search | Search User Cards
|
|
377
|
+
*DefaultApi* | [**set_organization_to_be_blocked_api_v2_organizations_block_post**](docs/DefaultApi.md#set_organization_to_be_blocked_api_v2_organizations_block_post) | **POST** /api/v2/organizations/block | Set Organization To Be Blocked
|
|
378
|
+
*DefaultApi* | [**set_organization_to_be_unblocked_api_v2_organizations_organization_id_unblock_post**](docs/DefaultApi.md#set_organization_to_be_unblocked_api_v2_organizations_organization_id_unblock_post) | **POST** /api/v2/organizations/{organization_id}/unblock | Set Organization To Be Unblocked
|
|
379
|
+
*DefaultApi* | [**set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch**](docs/DefaultApi.md#set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id}/status | Set Resource Quota Status
|
|
380
|
+
*DefaultApi* | [**setup_and_initialize_session_api_v2_sessions_session_id_setup_and_initialize_session_post**](docs/DefaultApi.md#setup_and_initialize_session_api_v2_sessions_session_id_setup_and_initialize_session_post) | **POST** /api/v2/sessions/{session_id}/setup_and_initialize_session | Setup And Initialize Session
|
|
381
|
+
*DefaultApi* | [**show_one_time_password_source_api_v2_users_show_otp_source_post**](docs/DefaultApi.md#show_one_time_password_source_api_v2_users_show_otp_source_post) | **POST** /api/v2/users/show_otp_source | Show One Time Password Source
|
|
382
|
+
*DefaultApi* | [**sso_login_info_api_v2_users_sso_login_info_get**](docs/DefaultApi.md#sso_login_info_api_v2_users_sso_login_info_get) | **GET** /api/v2/users/sso_login_info | Sso Login Info
|
|
383
|
+
*DefaultApi* | [**sso_login_test_api_v2_users_sso_login_test_get**](docs/DefaultApi.md#sso_login_test_api_v2_users_sso_login_test_get) | **GET** /api/v2/users/sso_login_test | Sso Login Test
|
|
384
|
+
*DefaultApi* | [**start_endpoint_api_v2_aica_endpoints_endpoint_id_start_post**](docs/DefaultApi.md#start_endpoint_api_v2_aica_endpoints_endpoint_id_start_post) | **POST** /api/v2/aica_endpoints/{endpoint_id}/start | Start Endpoint
|
|
385
|
+
*DefaultApi* | [**start_session_api_v2_sessions_session_id_start_post**](docs/DefaultApi.md#start_session_api_v2_sessions_session_id_start_post) | **POST** /api/v2/sessions/{session_id}/start | Start Session
|
|
386
|
+
*DefaultApi* | [**stop_session_api_v2_sessions_session_id_stop_post**](docs/DefaultApi.md#stop_session_api_v2_sessions_session_id_stop_post) | **POST** /api/v2/sessions/{session_id}/stop | Stop Session
|
|
387
|
+
*DefaultApi* | [**sync_organization_with_metronome_api_v2_organization_billing_organization_id_sync_with_metronome_post**](docs/DefaultApi.md#sync_organization_with_metronome_api_v2_organization_billing_organization_id_sync_with_metronome_post) | **POST** /api/v2/organization_billing/{organization_id}/sync_with_metronome | Sync Organization With Metronome
|
|
388
|
+
*DefaultApi* | [**terminate_job_api_v2_decorated_ha_jobs_production_job_id_terminate_post**](docs/DefaultApi.md#terminate_job_api_v2_decorated_ha_jobs_production_job_id_terminate_post) | **POST** /api/v2/decorated_ha_jobs/{production_job_id}/terminate | Terminate Job
|
|
389
|
+
*DefaultApi* | [**terminate_service_api_v2_services_v2_service_id_terminate_post**](docs/DefaultApi.md#terminate_service_api_v2_services_v2_service_id_terminate_post) | **POST** /api/v2/services-v2/{service_id}/terminate | Terminate Service
|
|
390
|
+
*DefaultApi* | [**test_saml_acs_api_v2_organizations_organization_id_test_saml_acs_post**](docs/DefaultApi.md#test_saml_acs_api_v2_organizations_organization_id_test_saml_acs_post) | **POST** /api/v2/organizations/{organization_id}/test_saml_acs | Test Saml Acs
|
|
391
|
+
*DefaultApi* | [**toggle_instance_usage_budget_is_enabled_api_v2_instance_usage_budgets_instance_usage_budget_id_toggle_is_enabled_post**](docs/DefaultApi.md#toggle_instance_usage_budget_is_enabled_api_v2_instance_usage_budgets_instance_usage_budget_id_toggle_is_enabled_post) | **POST** /api/v2/instance_usage_budgets/{instance_usage_budget_id}/toggle_is_enabled | Toggle Instance Usage Budget Is Enabled
|
|
392
|
+
*DefaultApi* | [**trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post**](docs/DefaultApi.md#trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/trigger | Trigger Cron Job
|
|
393
|
+
*DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
|
|
394
|
+
*DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
|
|
395
|
+
*DefaultApi* | [**undismiss_user_card_api_v2_onboarding_cards_card_id_undismiss_post**](docs/DefaultApi.md#undismiss_user_card_api_v2_onboarding_cards_card_id_undismiss_post) | **POST** /api/v2/onboarding_cards/{card_id}/undismiss | Undismiss User Card
|
|
396
|
+
*DefaultApi* | [**update_aica_endpoint_api_v2_aica_endpoints_put**](docs/DefaultApi.md#update_aica_endpoint_api_v2_aica_endpoints_put) | **PUT** /api/v2/aica_endpoints/ | Update Aica Endpoint
|
|
397
|
+
*DefaultApi* | [**update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put**](docs/DefaultApi.md#update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put) | **PUT** /api/v2/clouds/{cloud_id}/auto_add_user | Update Cloud Auto Add User
|
|
398
|
+
*DefaultApi* | [**update_cloud_config_api_v2_clouds_cloud_id_config_put**](docs/DefaultApi.md#update_cloud_config_api_v2_clouds_cloud_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/config | Update Cloud Config
|
|
399
|
+
*DefaultApi* | [**update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put**](docs/DefaultApi.md#update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put) | **PUT** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Update Cloud With Cloud Resource
|
|
400
|
+
*DefaultApi* | [**update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_put**](docs/DefaultApi.md#update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_put) | **PUT** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Update Cloud With Cloud Resource
|
|
401
|
+
*DefaultApi* | [**update_compute_template_api_v2_compute_templates_compute_template_id_put**](docs/DefaultApi.md#update_compute_template_api_v2_compute_templates_compute_template_id_put) | **PUT** /api/v2/compute_templates/{compute_template_id} | Update Compute Template
|
|
402
|
+
*DefaultApi* | [**update_customer_aggregated_logs_config_api_v2_clouds_cloud_id_update_customer_aggregated_logs_config_put**](docs/DefaultApi.md#update_customer_aggregated_logs_config_api_v2_clouds_cloud_id_update_customer_aggregated_logs_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_customer_aggregated_logs_config | Update Customer Aggregated Logs Config
|
|
403
|
+
*DefaultApi* | [**update_default_cloud_api_v2_organizations_update_default_cloud_post**](docs/DefaultApi.md#update_default_cloud_api_v2_organizations_update_default_cloud_post) | **POST** /api/v2/organizations/update_default_cloud | Update Default Cloud
|
|
404
|
+
*DefaultApi* | [**update_dns_api_v2_dns_post**](docs/DefaultApi.md#update_dns_api_v2_dns_post) | **POST** /api/v2/dns/ | Update Dns
|
|
405
|
+
*DefaultApi* | [**update_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_put**](docs/DefaultApi.md#update_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_put) | **PUT** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Update Instance Usage Budget
|
|
406
|
+
*DefaultApi* | [**update_job_queue_config_api_v2_decorated_ha_jobs_production_job_id_update_job_queue_config_put**](docs/DefaultApi.md#update_job_queue_config_api_v2_decorated_ha_jobs_production_job_id_update_job_queue_config_put) | **PUT** /api/v2/decorated_ha_jobs/{production_job_id}/update_job_queue_config | Update Job Queue Config
|
|
407
|
+
*DefaultApi* | [**update_machine_pool_api_v2_machine_pools_update_post**](docs/DefaultApi.md#update_machine_pool_api_v2_machine_pools_update_post) | **POST** /api/v2/machine_pools/update | Update Machine Pool
|
|
408
|
+
*DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
|
|
409
|
+
*DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
|
|
410
|
+
*DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
|
|
411
|
+
*DefaultApi* | [**upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put**](docs/DefaultApi.md#upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put) | **PUT** /api/v2/support_requests/support_request | Upsert Support Request For User Organization
|
|
412
|
+
*DefaultApi* | [**user_resend_email_api_v2_users_resend_email_post**](docs/DefaultApi.md#user_resend_email_api_v2_users_resend_email_post) | **POST** /api/v2/users/resend_email | User Resend Email
|
|
413
|
+
*DefaultApi* | [**user_verify_api_v2_users_verify_token_get**](docs/DefaultApi.md#user_verify_api_v2_users_verify_token_get) | **GET** /api/v2/users/verify/{token} | User Verify
|
|
414
|
+
*DefaultApi* | [**validate_cluster_api_v2_sessions_validate_cluster_post**](docs/DefaultApi.md#validate_cluster_api_v2_sessions_validate_cluster_post) | **POST** /api/v2/sessions/validate_cluster | Validate Cluster
|
|
415
|
+
*DefaultApi* | [**validate_invite_code_api_v2_users_validate_invite_code_invite_code_post**](docs/DefaultApi.md#validate_invite_code_api_v2_users_validate_invite_code_invite_code_post) | **POST** /api/v2/users/validate_invite_code/{invite_code} | Validate Invite Code
|
|
416
|
+
*DefaultApi* | [**validate_one_time_password_api_v2_users_validate_otp_token_post**](docs/DefaultApi.md#validate_one_time_password_api_v2_users_validate_otp_token_post) | **POST** /api/v2/users/validate_otp_token | Validate One Time Password
|
|
417
|
+
*DefaultApi* | [**verify_access_api_v2_cloudsverify_access_cloud_id_get**](docs/DefaultApi.md#verify_access_api_v2_cloudsverify_access_cloud_id_get) | **GET** /api/v2/cloudsverify_access/{cloud_id} | Verify Access
|
|
418
|
+
*DefaultApi* | [**verify_migration_complete_api_v2_access_controls_migration_organization_id_verify_migration_complete_get**](docs/DefaultApi.md#verify_migration_complete_api_v2_access_controls_migration_organization_id_verify_migration_complete_get) | **GET** /api/v2/access_controls_migration/{organization_id}/verify_migration_complete | Verify Migration Complete
|
|
419
|
+
*DefaultApi* | [**verify_reset_password_token_api_v2_users_reset_password_token_get**](docs/DefaultApi.md#verify_reset_password_token_api_v2_users_reset_password_token_get) | **GET** /api/v2/users/reset_password/{token} | Verify Reset Password Token
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
## Documentation For Models
|
|
423
|
+
|
|
424
|
+
- [AWSCredentials](docs/AWSCredentials.md)
|
|
425
|
+
- [AWSMemoryDBClusterConfig](docs/AWSMemoryDBClusterConfig.md)
|
|
426
|
+
- [AccessConfig](docs/AccessConfig.md)
|
|
427
|
+
- [AggregatedInstanceUsageWithCostModel](docs/AggregatedInstanceUsageWithCostModel.md)
|
|
428
|
+
- [AggregatedinstanceusagewithcostmodelListResponse](docs/AggregatedinstanceusagewithcostmodelListResponse.md)
|
|
429
|
+
- [AicaEndpoint](docs/AicaEndpoint.md)
|
|
430
|
+
- [AicaEndpointEvent](docs/AicaEndpointEvent.md)
|
|
431
|
+
- [AicaEndpointEventLevel](docs/AicaEndpointEventLevel.md)
|
|
432
|
+
- [AicaEndpointEventType](docs/AicaEndpointEventType.md)
|
|
433
|
+
- [AicaEndpointScope](docs/AicaEndpointScope.md)
|
|
434
|
+
- [AicaModel](docs/AicaModel.md)
|
|
435
|
+
- [AicaModelAcceleratorMap](docs/AicaModelAcceleratorMap.md)
|
|
436
|
+
- [AicaModelConfiguration](docs/AicaModelConfiguration.md)
|
|
437
|
+
- [AicaObservabilityUrls](docs/AicaObservabilityUrls.md)
|
|
438
|
+
- [AicaendpointListResponse](docs/AicaendpointListResponse.md)
|
|
439
|
+
- [AicaendpointResponse](docs/AicaendpointResponse.md)
|
|
440
|
+
- [AicaendpointeventListResponse](docs/AicaendpointeventListResponse.md)
|
|
441
|
+
- [AicamodelListResponse](docs/AicamodelListResponse.md)
|
|
442
|
+
- [AicamodelResponse](docs/AicamodelResponse.md)
|
|
443
|
+
- [AioaCloudWaitlistRecord](docs/AioaCloudWaitlistRecord.md)
|
|
444
|
+
- [AioacloudwaitlistrecordResponse](docs/AioacloudwaitlistrecordResponse.md)
|
|
445
|
+
- [AlertType](docs/AlertType.md)
|
|
446
|
+
- [AnyscaleAWSAccount](docs/AnyscaleAWSAccount.md)
|
|
447
|
+
- [AnyscaleServiceAccount](docs/AnyscaleServiceAccount.md)
|
|
448
|
+
- [AnyscaleVersionResponse](docs/AnyscaleVersionResponse.md)
|
|
449
|
+
- [AnyscaleawsaccountResponse](docs/AnyscaleawsaccountResponse.md)
|
|
450
|
+
- [AnyscaledCredentialResponse](docs/AnyscaledCredentialResponse.md)
|
|
451
|
+
- [AnyscaledcredentialresponseResponse](docs/AnyscaledcredentialresponseResponse.md)
|
|
452
|
+
- [AnyscaleserviceaccountResponse](docs/AnyscaleserviceaccountResponse.md)
|
|
453
|
+
- [AnyscaleversionresponseResponse](docs/AnyscaleversionresponseResponse.md)
|
|
454
|
+
- [ApiKeyParameters](docs/ApiKeyParameters.md)
|
|
455
|
+
- [AppConfig](docs/AppConfig.md)
|
|
456
|
+
- [AppConfigConfigSchema](docs/AppConfigConfigSchema.md)
|
|
457
|
+
- [AppconfigListResponse](docs/AppconfigListResponse.md)
|
|
458
|
+
- [AppconfigResponse](docs/AppconfigResponse.md)
|
|
459
|
+
- [ApplicationType](docs/ApplicationType.md)
|
|
460
|
+
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
461
|
+
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
462
|
+
- [ArchiveStatus](docs/ArchiveStatus.md)
|
|
463
|
+
- [ArchivedLogsInfo](docs/ArchivedLogsInfo.md)
|
|
464
|
+
- [ArchivedlogsinfoResponse](docs/ArchivedlogsinfoResponse.md)
|
|
465
|
+
- [AttachMachinePoolToCloudRequest](docs/AttachMachinePoolToCloudRequest.md)
|
|
466
|
+
- [AttachmachinepooltocloudresponseResponse](docs/AttachmachinepooltocloudresponseResponse.md)
|
|
467
|
+
- [AviaryModelConfigV2](docs/AviaryModelConfigV2.md)
|
|
468
|
+
- [AwsRegionAndZones](docs/AwsRegionAndZones.md)
|
|
469
|
+
- [AwsRegionInfo](docs/AwsRegionInfo.md)
|
|
470
|
+
- [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
|
|
471
|
+
- [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
|
|
472
|
+
- [BankAccountInformation](docs/BankAccountInformation.md)
|
|
473
|
+
- [BaseJobStatus](docs/BaseJobStatus.md)
|
|
474
|
+
- [BatchResponseBatchedResultOrganizationInvitationBase](docs/BatchResponseBatchedResultOrganizationInvitationBase.md)
|
|
475
|
+
- [BatchedResultOrganizationInvitationBase](docs/BatchedResultOrganizationInvitationBase.md)
|
|
476
|
+
- [BillingInformation](docs/BillingInformation.md)
|
|
477
|
+
- [BillingVersionCode](docs/BillingVersionCode.md)
|
|
478
|
+
- [BodyAwsMarketplaceRegistrationApiV2OrganizationBillingAwsMarketplaceRegistrationPost](docs/BodyAwsMarketplaceRegistrationApiV2OrganizationBillingAwsMarketplaceRegistrationPost.md)
|
|
479
|
+
- [BufferRegistration](docs/BufferRegistration.md)
|
|
480
|
+
- [Build](docs/Build.md)
|
|
481
|
+
- [BuildLogResponse](docs/BuildLogResponse.md)
|
|
482
|
+
- [BuildRegistration](docs/BuildRegistration.md)
|
|
483
|
+
- [BuildResponse](docs/BuildResponse.md)
|
|
484
|
+
- [BuildStatus](docs/BuildStatus.md)
|
|
485
|
+
- [BuildlogresponseResponse](docs/BuildlogresponseResponse.md)
|
|
486
|
+
- [Card](docs/Card.md)
|
|
487
|
+
- [CardId](docs/CardId.md)
|
|
488
|
+
- [CardListResponse](docs/CardListResponse.md)
|
|
489
|
+
- [ChangePasswordParams](docs/ChangePasswordParams.md)
|
|
490
|
+
- [CleanupLeakedGrafanaDashboardResponse](docs/CleanupLeakedGrafanaDashboardResponse.md)
|
|
491
|
+
- [CleanupleakedgrafanadashboardresponseResponse](docs/CleanupleakedgrafanadashboardresponseResponse.md)
|
|
492
|
+
- [CloneExperimentalWorkspace](docs/CloneExperimentalWorkspace.md)
|
|
493
|
+
- [Cloud](docs/Cloud.md)
|
|
494
|
+
- [CloudAnalyticsEvent](docs/CloudAnalyticsEvent.md)
|
|
495
|
+
- [CloudAnalyticsEventCloudProviderError](docs/CloudAnalyticsEventCloudProviderError.md)
|
|
496
|
+
- [CloudAnalyticsEventCloudResource](docs/CloudAnalyticsEventCloudResource.md)
|
|
497
|
+
- [CloudAnalyticsEventCommandName](docs/CloudAnalyticsEventCommandName.md)
|
|
498
|
+
- [CloudAnalyticsEventError](docs/CloudAnalyticsEventError.md)
|
|
499
|
+
- [CloudAnalyticsEventName](docs/CloudAnalyticsEventName.md)
|
|
500
|
+
- [CloudCollaborator](docs/CloudCollaborator.md)
|
|
501
|
+
- [CloudCollaboratorValue](docs/CloudCollaboratorValue.md)
|
|
502
|
+
- [CloudCollaboratorsQuery](docs/CloudCollaboratorsQuery.md)
|
|
503
|
+
- [CloudConfig](docs/CloudConfig.md)
|
|
504
|
+
- [CloudDataBucketAccessMode](docs/CloudDataBucketAccessMode.md)
|
|
505
|
+
- [CloudDataBucketFileType](docs/CloudDataBucketFileType.md)
|
|
506
|
+
- [CloudDataBucketPresignedUploadInfo](docs/CloudDataBucketPresignedUploadInfo.md)
|
|
507
|
+
- [CloudDataBucketPresignedUploadRequest](docs/CloudDataBucketPresignedUploadRequest.md)
|
|
508
|
+
- [CloudDataBucketPresignedUploadScheme](docs/CloudDataBucketPresignedUploadScheme.md)
|
|
509
|
+
- [CloudDataBucketPresignedUrlRequest](docs/CloudDataBucketPresignedUrlRequest.md)
|
|
510
|
+
- [CloudDataBucketPresignedUrlResponse](docs/CloudDataBucketPresignedUrlResponse.md)
|
|
511
|
+
- [CloudDataBucketPresignedUrlScheme](docs/CloudDataBucketPresignedUrlScheme.md)
|
|
512
|
+
- [CloudDataBucketRequestScope](docs/CloudDataBucketRequestScope.md)
|
|
513
|
+
- [CloudHostingType](docs/CloudHostingType.md)
|
|
514
|
+
- [CloudListResponse](docs/CloudListResponse.md)
|
|
515
|
+
- [CloudNameOptions](docs/CloudNameOptions.md)
|
|
516
|
+
- [CloudOverviewDashboard](docs/CloudOverviewDashboard.md)
|
|
517
|
+
- [CloudProjectCollaborator](docs/CloudProjectCollaborator.md)
|
|
518
|
+
- [CloudProjectCollaboratorValue](docs/CloudProjectCollaboratorValue.md)
|
|
519
|
+
- [CloudProvider](docs/CloudProvider.md)
|
|
520
|
+
- [CloudProviders](docs/CloudProviders.md)
|
|
521
|
+
- [CloudRegionAndZones](docs/CloudRegionAndZones.md)
|
|
522
|
+
- [CloudRegionInfo](docs/CloudRegionInfo.md)
|
|
523
|
+
- [CloudResource](docs/CloudResource.md)
|
|
524
|
+
- [CloudResourceGCP](docs/CloudResourceGCP.md)
|
|
525
|
+
- [CloudResponse](docs/CloudResponse.md)
|
|
526
|
+
- [CloudState](docs/CloudState.md)
|
|
527
|
+
- [CloudStatus](docs/CloudStatus.md)
|
|
528
|
+
- [CloudType](docs/CloudType.md)
|
|
529
|
+
- [CloudTypes](docs/CloudTypes.md)
|
|
530
|
+
- [CloudVersion](docs/CloudVersion.md)
|
|
531
|
+
- [CloudWaitlistStatus](docs/CloudWaitlistStatus.md)
|
|
532
|
+
- [CloudWithCloudResource](docs/CloudWithCloudResource.md)
|
|
533
|
+
- [CloudWithCloudResourceGCP](docs/CloudWithCloudResourceGCP.md)
|
|
534
|
+
- [CloudcollaboratorListResponse](docs/CloudcollaboratorListResponse.md)
|
|
535
|
+
- [ClouddatabucketpresigneduploadinfoResponse](docs/ClouddatabucketpresigneduploadinfoResponse.md)
|
|
536
|
+
- [ClouddatabucketpresignedurlresponseResponse](docs/ClouddatabucketpresignedurlresponseResponse.md)
|
|
537
|
+
- [CloudoverviewdashboardResponse](docs/CloudoverviewdashboardResponse.md)
|
|
538
|
+
- [CloudregionandzonesResponse](docs/CloudregionandzonesResponse.md)
|
|
539
|
+
- [CloudresourceResponse](docs/CloudresourceResponse.md)
|
|
540
|
+
- [CloudresourcegcpResponse](docs/CloudresourcegcpResponse.md)
|
|
541
|
+
- [CloudwithcloudresourceResponse](docs/CloudwithcloudresourceResponse.md)
|
|
542
|
+
- [CloudwithcloudresourcegcpResponse](docs/CloudwithcloudresourcegcpResponse.md)
|
|
543
|
+
- [ClusterAuthResponse](docs/ClusterAuthResponse.md)
|
|
544
|
+
- [ClusterConfig](docs/ClusterConfig.md)
|
|
545
|
+
- [ClusterConfigWithSessionIdleTimeout](docs/ClusterConfigWithSessionIdleTimeout.md)
|
|
546
|
+
- [ClusterEnvironmentsQuery](docs/ClusterEnvironmentsQuery.md)
|
|
547
|
+
- [ClusterEvent](docs/ClusterEvent.md)
|
|
548
|
+
- [ClusterEventsOutput](docs/ClusterEventsOutput.md)
|
|
549
|
+
- [ClusterFeatures](docs/ClusterFeatures.md)
|
|
550
|
+
- [ClusterManagementStackVersions](docs/ClusterManagementStackVersions.md)
|
|
551
|
+
- [ClusterStartup](docs/ClusterStartup.md)
|
|
552
|
+
- [ClusterStatus](docs/ClusterStatus.md)
|
|
553
|
+
- [ClusterStatusDetails](docs/ClusterStatusDetails.md)
|
|
554
|
+
- [ClusterauthresponseResponse](docs/ClusterauthresponseResponse.md)
|
|
555
|
+
- [ClusterconfigResponse](docs/ClusterconfigResponse.md)
|
|
556
|
+
- [ClusterconfigwithsessionidletimeoutResponse](docs/ClusterconfigwithsessionidletimeoutResponse.md)
|
|
557
|
+
- [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
|
|
558
|
+
- [ClusterfeaturesResponse](docs/ClusterfeaturesResponse.md)
|
|
559
|
+
- [CompanySize](docs/CompanySize.md)
|
|
560
|
+
- [ComputeNodeType](docs/ComputeNodeType.md)
|
|
561
|
+
- [ComputeStack](docs/ComputeStack.md)
|
|
562
|
+
- [ComputeTemplate](docs/ComputeTemplate.md)
|
|
563
|
+
- [ComputeTemplateConfig](docs/ComputeTemplateConfig.md)
|
|
564
|
+
- [ComputeTemplateQuery](docs/ComputeTemplateQuery.md)
|
|
565
|
+
- [ComputetemplateResponse](docs/ComputetemplateResponse.md)
|
|
566
|
+
- [ComputetemplateconfigResponse](docs/ComputetemplateconfigResponse.md)
|
|
567
|
+
- [CreateAicaEndpoint](docs/CreateAicaEndpoint.md)
|
|
568
|
+
- [CreateAioaCloudWaitlist](docs/CreateAioaCloudWaitlist.md)
|
|
569
|
+
- [CreateAnalyticsEvent](docs/CreateAnalyticsEvent.md)
|
|
570
|
+
- [CreateAppConfig](docs/CreateAppConfig.md)
|
|
571
|
+
- [CreateAppConfigConfigurationSchema](docs/CreateAppConfigConfigurationSchema.md)
|
|
572
|
+
- [CreateBYODAppConfig](docs/CreateBYODAppConfig.md)
|
|
573
|
+
- [CreateBYODAppConfigConfigurationSchema](docs/CreateBYODAppConfigConfigurationSchema.md)
|
|
574
|
+
- [CreateBYODBuild](docs/CreateBYODBuild.md)
|
|
575
|
+
- [CreateBillingVersion](docs/CreateBillingVersion.md)
|
|
576
|
+
- [CreateBugReportResponse](docs/CreateBugReportResponse.md)
|
|
577
|
+
- [CreateBuild](docs/CreateBuild.md)
|
|
578
|
+
- [CreateCloudCollaborator](docs/CreateCloudCollaborator.md)
|
|
579
|
+
- [CreateCloudResource](docs/CreateCloudResource.md)
|
|
580
|
+
- [CreateCloudResourceGCP](docs/CreateCloudResourceGCP.md)
|
|
581
|
+
- [CreateCloudWithCloudResource](docs/CreateCloudWithCloudResource.md)
|
|
582
|
+
- [CreateClusterComputeConfig](docs/CreateClusterComputeConfig.md)
|
|
583
|
+
- [CreateComputeTemplate](docs/CreateComputeTemplate.md)
|
|
584
|
+
- [CreateComputeTemplateConfig](docs/CreateComputeTemplateConfig.md)
|
|
585
|
+
- [CreateDataset](docs/CreateDataset.md)
|
|
586
|
+
- [CreateExperimentalWorkspace](docs/CreateExperimentalWorkspace.md)
|
|
587
|
+
- [CreateExperimentalWorkspaceFromJob](docs/CreateExperimentalWorkspaceFromJob.md)
|
|
588
|
+
- [CreateFineTuningHyperparameters](docs/CreateFineTuningHyperparameters.md)
|
|
589
|
+
- [CreateFineTuningJobProductRequest](docs/CreateFineTuningJobProductRequest.md)
|
|
590
|
+
- [CreateInstanceUsageBudget](docs/CreateInstanceUsageBudget.md)
|
|
591
|
+
- [CreateInternalProductionJob](docs/CreateInternalProductionJob.md)
|
|
592
|
+
- [CreateJobQueueConfig](docs/CreateJobQueueConfig.md)
|
|
593
|
+
- [CreateJobQueueRequests](docs/CreateJobQueueRequests.md)
|
|
594
|
+
- [CreateMachinePoolRequest](docs/CreateMachinePoolRequest.md)
|
|
595
|
+
- [CreateMachinePoolResponse](docs/CreateMachinePoolResponse.md)
|
|
596
|
+
- [CreateMachineRequest](docs/CreateMachineRequest.md)
|
|
597
|
+
- [CreateMachineResponse](docs/CreateMachineResponse.md)
|
|
598
|
+
- [CreateMetronomeWebhookNotification](docs/CreateMetronomeWebhookNotification.md)
|
|
599
|
+
- [CreateNotificationChannelRecord](docs/CreateNotificationChannelRecord.md)
|
|
600
|
+
- [CreateOTPReturnApiModel](docs/CreateOTPReturnApiModel.md)
|
|
601
|
+
- [CreateOrganizationConfiguration](docs/CreateOrganizationConfiguration.md)
|
|
602
|
+
- [CreateOrganizationInvitation](docs/CreateOrganizationInvitation.md)
|
|
603
|
+
- [CreateProductionJobConfig](docs/CreateProductionJobConfig.md)
|
|
604
|
+
- [CreateResourceQuota](docs/CreateResourceQuota.md)
|
|
605
|
+
- [CreateSchedule](docs/CreateSchedule.md)
|
|
606
|
+
- [CreateSessionFromSnapshotOptions](docs/CreateSessionFromSnapshotOptions.md)
|
|
607
|
+
- [CreateSessionInDb](docs/CreateSessionInDb.md)
|
|
608
|
+
- [CreateSessionResponse](docs/CreateSessionResponse.md)
|
|
609
|
+
- [CreateUser](docs/CreateUser.md)
|
|
610
|
+
- [CreateUserProjectCollaborator](docs/CreateUserProjectCollaborator.md)
|
|
611
|
+
- [CreateUserProjectCollaboratorValue](docs/CreateUserProjectCollaboratorValue.md)
|
|
612
|
+
- [CreateWorkspaceFromTemplate](docs/CreateWorkspaceFromTemplate.md)
|
|
613
|
+
- [CreatebugreportresponseResponse](docs/CreatebugreportresponseResponse.md)
|
|
614
|
+
- [CreatecomputetemplateconfigResponse](docs/CreatecomputetemplateconfigResponse.md)
|
|
615
|
+
- [CreatemachinepoolresponseResponse](docs/CreatemachinepoolresponseResponse.md)
|
|
616
|
+
- [CreatemachineresponseResponse](docs/CreatemachineresponseResponse.md)
|
|
617
|
+
- [CreateotpreturnapimodelResponse](docs/CreateotpreturnapimodelResponse.md)
|
|
618
|
+
- [CreatesessionresponseResponse](docs/CreatesessionresponseResponse.md)
|
|
619
|
+
- [CreditCardInformation](docs/CreditCardInformation.md)
|
|
620
|
+
- [CustomerAlertStatus](docs/CustomerAlertStatus.md)
|
|
621
|
+
- [CustomerBillingType](docs/CustomerBillingType.md)
|
|
622
|
+
- [DataplaneServices](docs/DataplaneServices.md)
|
|
623
|
+
- [Dataset](docs/Dataset.md)
|
|
624
|
+
- [DatasetListResponse](docs/DatasetListResponse.md)
|
|
625
|
+
- [DatasetResponse](docs/DatasetResponse.md)
|
|
626
|
+
- [DatasetUpload](docs/DatasetUpload.md)
|
|
627
|
+
- [DatasetuploadResponse](docs/DatasetuploadResponse.md)
|
|
628
|
+
- [DecoratedApplicationTemplate](docs/DecoratedApplicationTemplate.md)
|
|
629
|
+
- [DecoratedBuild](docs/DecoratedBuild.md)
|
|
630
|
+
- [DecoratedComputeTemplate](docs/DecoratedComputeTemplate.md)
|
|
631
|
+
- [DecoratedComputeTemplateConfig](docs/DecoratedComputeTemplateConfig.md)
|
|
632
|
+
- [DecoratedInteractiveSession](docs/DecoratedInteractiveSession.md)
|
|
633
|
+
- [DecoratedJob](docs/DecoratedJob.md)
|
|
634
|
+
- [DecoratedJobQueue](docs/DecoratedJobQueue.md)
|
|
635
|
+
- [DecoratedJobSubmission](docs/DecoratedJobSubmission.md)
|
|
636
|
+
- [DecoratedListServiceAPIModel](docs/DecoratedListServiceAPIModel.md)
|
|
637
|
+
- [DecoratedProductionJob](docs/DecoratedProductionJob.md)
|
|
638
|
+
- [DecoratedProductionJobStateTransition](docs/DecoratedProductionJobStateTransition.md)
|
|
639
|
+
- [DecoratedProductionServiceV2APIModel](docs/DecoratedProductionServiceV2APIModel.md)
|
|
640
|
+
- [DecoratedProductionServiceV2VersionAPIModel](docs/DecoratedProductionServiceV2VersionAPIModel.md)
|
|
641
|
+
- [DecoratedRuntimeEnv](docs/DecoratedRuntimeEnv.md)
|
|
642
|
+
- [DecoratedSchedule](docs/DecoratedSchedule.md)
|
|
643
|
+
- [DecoratedServeDeployment](docs/DecoratedServeDeployment.md)
|
|
644
|
+
- [DecoratedServiceEventAPIModel](docs/DecoratedServiceEventAPIModel.md)
|
|
645
|
+
- [DecoratedSession](docs/DecoratedSession.md)
|
|
646
|
+
- [DecoratedSupportRequest](docs/DecoratedSupportRequest.md)
|
|
647
|
+
- [DecoratedUnifiedJob](docs/DecoratedUnifiedJob.md)
|
|
648
|
+
- [DecoratedapplicationtemplateListResponse](docs/DecoratedapplicationtemplateListResponse.md)
|
|
649
|
+
- [DecoratedapplicationtemplateResponse](docs/DecoratedapplicationtemplateResponse.md)
|
|
650
|
+
- [DecoratedbuildListResponse](docs/DecoratedbuildListResponse.md)
|
|
651
|
+
- [DecoratedbuildResponse](docs/DecoratedbuildResponse.md)
|
|
652
|
+
- [DecoratedcomputetemplateListResponse](docs/DecoratedcomputetemplateListResponse.md)
|
|
653
|
+
- [DecoratedcomputetemplateResponse](docs/DecoratedcomputetemplateResponse.md)
|
|
654
|
+
- [DecoratedinteractivesessionListResponse](docs/DecoratedinteractivesessionListResponse.md)
|
|
655
|
+
- [DecoratedinteractivesessionResponse](docs/DecoratedinteractivesessionResponse.md)
|
|
656
|
+
- [DecoratedjobListResponse](docs/DecoratedjobListResponse.md)
|
|
657
|
+
- [DecoratedjobResponse](docs/DecoratedjobResponse.md)
|
|
658
|
+
- [DecoratedjobqueueListResponse](docs/DecoratedjobqueueListResponse.md)
|
|
659
|
+
- [DecoratedjobqueueResponse](docs/DecoratedjobqueueResponse.md)
|
|
660
|
+
- [DecoratedjobsubmissionListResponse](docs/DecoratedjobsubmissionListResponse.md)
|
|
661
|
+
- [DecoratedjobsubmissionResponse](docs/DecoratedjobsubmissionResponse.md)
|
|
662
|
+
- [DecoratedlistserviceapimodelListResponse](docs/DecoratedlistserviceapimodelListResponse.md)
|
|
663
|
+
- [DecoratedproductionjobListResponse](docs/DecoratedproductionjobListResponse.md)
|
|
664
|
+
- [DecoratedproductionjobResponse](docs/DecoratedproductionjobResponse.md)
|
|
665
|
+
- [DecoratedproductionjobstatetransitionListResponse](docs/DecoratedproductionjobstatetransitionListResponse.md)
|
|
666
|
+
- [Decoratedproductionservicev2ApimodelResponse](docs/Decoratedproductionservicev2ApimodelResponse.md)
|
|
667
|
+
- [Decoratedproductionservicev2VersionapimodelListResponse](docs/Decoratedproductionservicev2VersionapimodelListResponse.md)
|
|
668
|
+
- [DecoratedruntimeenvListResponse](docs/DecoratedruntimeenvListResponse.md)
|
|
669
|
+
- [DecoratedruntimeenvResponse](docs/DecoratedruntimeenvResponse.md)
|
|
670
|
+
- [DecoratedscheduleListResponse](docs/DecoratedscheduleListResponse.md)
|
|
671
|
+
- [DecoratedscheduleResponse](docs/DecoratedscheduleResponse.md)
|
|
672
|
+
- [DecoratedservedeploymentListResponse](docs/DecoratedservedeploymentListResponse.md)
|
|
673
|
+
- [DecoratedservedeploymentResponse](docs/DecoratedservedeploymentResponse.md)
|
|
674
|
+
- [DecoratedserviceeventapimodelListResponse](docs/DecoratedserviceeventapimodelListResponse.md)
|
|
675
|
+
- [DecoratedsessionListResponse](docs/DecoratedsessionListResponse.md)
|
|
676
|
+
- [DecoratedsessionResponse](docs/DecoratedsessionResponse.md)
|
|
677
|
+
- [DecoratedsupportrequestListResponse](docs/DecoratedsupportrequestListResponse.md)
|
|
678
|
+
- [DecoratedsupportrequestResponse](docs/DecoratedsupportrequestResponse.md)
|
|
679
|
+
- [DecoratedunifiedjobListResponse](docs/DecoratedunifiedjobListResponse.md)
|
|
680
|
+
- [DecoratedunifiedjobResponse](docs/DecoratedunifiedjobResponse.md)
|
|
681
|
+
- [DeleteMachinePoolRequest](docs/DeleteMachinePoolRequest.md)
|
|
682
|
+
- [DeleteMachineRequest](docs/DeleteMachineRequest.md)
|
|
683
|
+
- [DeletedPlatformFineTunedModel](docs/DeletedPlatformFineTunedModel.md)
|
|
684
|
+
- [DeletedplatformfinetunedmodelResponse](docs/DeletedplatformfinetunedmodelResponse.md)
|
|
685
|
+
- [DeletemachinepoolresponseResponse](docs/DeletemachinepoolresponseResponse.md)
|
|
686
|
+
- [DetachMachinePoolFromCloudRequest](docs/DetachMachinePoolFromCloudRequest.md)
|
|
687
|
+
- [DetachmachinepoolfromcloudresponseResponse](docs/DetachmachinepoolfromcloudresponseResponse.md)
|
|
688
|
+
- [DismissalType](docs/DismissalType.md)
|
|
689
|
+
- [EditableCloudResource](docs/EditableCloudResource.md)
|
|
690
|
+
- [EditableCloudResourceGCP](docs/EditableCloudResourceGCP.md)
|
|
691
|
+
- [Error](docs/Error.md)
|
|
692
|
+
- [EventLevel](docs/EventLevel.md)
|
|
693
|
+
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
|
694
|
+
- [ExecuteInteractiveCommandOptions](docs/ExecuteInteractiveCommandOptions.md)
|
|
695
|
+
- [ExecuteShellCommandOptions](docs/ExecuteShellCommandOptions.md)
|
|
696
|
+
- [ExecutecommandresponseResponse](docs/ExecutecommandresponseResponse.md)
|
|
697
|
+
- [ExperimentalWorkspace](docs/ExperimentalWorkspace.md)
|
|
698
|
+
- [ExperimentalWorkspacesSortField](docs/ExperimentalWorkspacesSortField.md)
|
|
699
|
+
- [ExperimentalworkspaceListResponse](docs/ExperimentalworkspaceListResponse.md)
|
|
700
|
+
- [ExperimentalworkspaceResponse](docs/ExperimentalworkspaceResponse.md)
|
|
701
|
+
- [ExternalServiceStatus](docs/ExternalServiceStatus.md)
|
|
702
|
+
- [ExternalServiceStatusResponse](docs/ExternalServiceStatusResponse.md)
|
|
703
|
+
- [ExternalTerminalCommand](docs/ExternalTerminalCommand.md)
|
|
704
|
+
- [ExternalservicestatusresponseResponse](docs/ExternalservicestatusresponseResponse.md)
|
|
705
|
+
- [FeatureCompatibility](docs/FeatureCompatibility.md)
|
|
706
|
+
- [FeatureFlagResponse](docs/FeatureFlagResponse.md)
|
|
707
|
+
- [FeatureflagresponseResponse](docs/FeatureflagresponseResponse.md)
|
|
708
|
+
- [FineTuneType](docs/FineTuneType.md)
|
|
709
|
+
- [FineTunedModel](docs/FineTunedModel.md)
|
|
710
|
+
- [FineTuningJobStatus](docs/FineTuningJobStatus.md)
|
|
711
|
+
- [FinetunedmodelListResponse](docs/FinetunedmodelListResponse.md)
|
|
712
|
+
- [FinetunedmodelResponse](docs/FinetunedmodelResponse.md)
|
|
713
|
+
- [FinishFTJobRequest](docs/FinishFTJobRequest.md)
|
|
714
|
+
- [FinishFTJobRequestV2](docs/FinishFTJobRequestV2.md)
|
|
715
|
+
- [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
|
|
716
|
+
- [GCPMemorystoreInstanceConfig](docs/GCPMemorystoreInstanceConfig.md)
|
|
717
|
+
- [GrafanaDashboard](docs/GrafanaDashboard.md)
|
|
718
|
+
- [GrpcProtocolConfig](docs/GrpcProtocolConfig.md)
|
|
719
|
+
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
720
|
+
- [HaJobErrorTypes](docs/HaJobErrorTypes.md)
|
|
721
|
+
- [HaJobEventLevel](docs/HaJobEventLevel.md)
|
|
722
|
+
- [HaJobEventOrigin](docs/HaJobEventOrigin.md)
|
|
723
|
+
- [HaJobGoalStates](docs/HaJobGoalStates.md)
|
|
724
|
+
- [HaJobStates](docs/HaJobStates.md)
|
|
725
|
+
- [HaJobType](docs/HaJobType.md)
|
|
726
|
+
- [HaJobsSortField](docs/HaJobsSortField.md)
|
|
727
|
+
- [HeadIp](docs/HeadIp.md)
|
|
728
|
+
- [HeadipResponse](docs/HeadipResponse.md)
|
|
729
|
+
- [HttpProtocolConfig](docs/HttpProtocolConfig.md)
|
|
730
|
+
- [IdleTerminationStatus](docs/IdleTerminationStatus.md)
|
|
731
|
+
- [ImportAicaModel](docs/ImportAicaModel.md)
|
|
732
|
+
- [InstanceUsageBudget](docs/InstanceUsageBudget.md)
|
|
733
|
+
- [InstanceUsageBudgetEvaluationPeriod](docs/InstanceUsageBudgetEvaluationPeriod.md)
|
|
734
|
+
- [InstanceusagebudgetListResponse](docs/InstanceusagebudgetListResponse.md)
|
|
735
|
+
- [InstanceusagebudgetResponse](docs/InstanceusagebudgetResponse.md)
|
|
736
|
+
- [IntegrationDetails](docs/IntegrationDetails.md)
|
|
737
|
+
- [InteractiveSessionLogs](docs/InteractiveSessionLogs.md)
|
|
738
|
+
- [InteractivesessionlogsResponse](docs/InteractivesessionlogsResponse.md)
|
|
739
|
+
- [InternalProductionJob](docs/InternalProductionJob.md)
|
|
740
|
+
- [InternalproductionjobResponse](docs/InternalproductionjobResponse.md)
|
|
741
|
+
- [Invoice](docs/Invoice.md)
|
|
742
|
+
- [InvoiceListResponse](docs/InvoiceListResponse.md)
|
|
743
|
+
- [InvoiceStatus](docs/InvoiceStatus.md)
|
|
744
|
+
- [InvoicesQuery](docs/InvoicesQuery.md)
|
|
745
|
+
- [JobAccess](docs/JobAccess.md)
|
|
746
|
+
- [JobQueue](docs/JobQueue.md)
|
|
747
|
+
- [JobQueueConfig](docs/JobQueueConfig.md)
|
|
748
|
+
- [JobQueueExecutionMode](docs/JobQueueExecutionMode.md)
|
|
749
|
+
- [JobQueueSpec](docs/JobQueueSpec.md)
|
|
750
|
+
- [JobQueueState](docs/JobQueueState.md)
|
|
751
|
+
- [JobQueuesQuery](docs/JobQueuesQuery.md)
|
|
752
|
+
- [JobRunType](docs/JobRunType.md)
|
|
753
|
+
- [JobStateLogLevelTypes](docs/JobStateLogLevelTypes.md)
|
|
754
|
+
- [JobStatus](docs/JobStatus.md)
|
|
755
|
+
- [JobSubmissionsSortField](docs/JobSubmissionsSortField.md)
|
|
756
|
+
- [JobqueueResponse](docs/JobqueueResponse.md)
|
|
757
|
+
- [JobsLogs](docs/JobsLogs.md)
|
|
758
|
+
- [JobsLogsQueryInfo](docs/JobsLogsQueryInfo.md)
|
|
759
|
+
- [JobsSortField](docs/JobsSortField.md)
|
|
760
|
+
- [JobslogsResponse](docs/JobslogsResponse.md)
|
|
761
|
+
- [JobslogsqueryinfoResponse](docs/JobslogsqueryinfoResponse.md)
|
|
762
|
+
- [JsonPatchOperation](docs/JsonPatchOperation.md)
|
|
763
|
+
- [KubernetesManagerRegistrationRequest](docs/KubernetesManagerRegistrationRequest.md)
|
|
764
|
+
- [KubernetesManagerRegistrationResponse](docs/KubernetesManagerRegistrationResponse.md)
|
|
765
|
+
- [KubernetesmanagerregistrationresponseResponse](docs/KubernetesmanagerregistrationresponseResponse.md)
|
|
766
|
+
- [LBResource](docs/LBResource.md)
|
|
767
|
+
- [LbresourceResponse](docs/LbresourceResponse.md)
|
|
768
|
+
- [ListMachinePoolsResponse](docs/ListMachinePoolsResponse.md)
|
|
769
|
+
- [ListMachinesResponse](docs/ListMachinesResponse.md)
|
|
770
|
+
- [ListResourceQuotasQuery](docs/ListResourceQuotasQuery.md)
|
|
771
|
+
- [ListResponseMetadata](docs/ListResponseMetadata.md)
|
|
772
|
+
- [ListmachinepoolsresponseResponse](docs/ListmachinepoolsresponseResponse.md)
|
|
773
|
+
- [ListmachinesresponseResponse](docs/ListmachinesresponseResponse.md)
|
|
774
|
+
- [LogDetail](docs/LogDetail.md)
|
|
775
|
+
- [LogDetails](docs/LogDetails.md)
|
|
776
|
+
- [LogDownloadConfig](docs/LogDownloadConfig.md)
|
|
777
|
+
- [LogDownloadRequest](docs/LogDownloadRequest.md)
|
|
778
|
+
- [LogDownloadResult](docs/LogDownloadResult.md)
|
|
779
|
+
- [LogFileChunk](docs/LogFileChunk.md)
|
|
780
|
+
- [LogFilter](docs/LogFilter.md)
|
|
781
|
+
- [LogItem](docs/LogItem.md)
|
|
782
|
+
- [LogItemBatch](docs/LogItemBatch.md)
|
|
783
|
+
- [LogLevelTypes](docs/LogLevelTypes.md)
|
|
784
|
+
- [LogStream](docs/LogStream.md)
|
|
785
|
+
- [LogdetailsResponse](docs/LogdetailsResponse.md)
|
|
786
|
+
- [LogdownloadresultResponse](docs/LogdownloadresultResponse.md)
|
|
787
|
+
- [LoginUserParams](docs/LoginUserParams.md)
|
|
788
|
+
- [LogitembatchResponse](docs/LogitembatchResponse.md)
|
|
789
|
+
- [LogsOutput](docs/LogsOutput.md)
|
|
790
|
+
- [LogsoutputResponse](docs/LogsoutputResponse.md)
|
|
791
|
+
- [LogstreamResponse](docs/LogstreamResponse.md)
|
|
792
|
+
- [LongRunningWorkload](docs/LongRunningWorkload.md)
|
|
793
|
+
- [LongrunningworkloadListResponse](docs/LongrunningworkloadListResponse.md)
|
|
794
|
+
- [MachineAllocationState](docs/MachineAllocationState.md)
|
|
795
|
+
- [MachineConnectionState](docs/MachineConnectionState.md)
|
|
796
|
+
- [MachineInfo](docs/MachineInfo.md)
|
|
797
|
+
- [MachinePool](docs/MachinePool.md)
|
|
798
|
+
- [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
|
|
799
|
+
- [MetronomeDashboardType](docs/MetronomeDashboardType.md)
|
|
800
|
+
- [MetronomecustomerinfomodelListResponse](docs/MetronomecustomerinfomodelListResponse.md)
|
|
801
|
+
- [MetronomecustomerinfomodelResponse](docs/MetronomecustomerinfomodelResponse.md)
|
|
802
|
+
- [MiniBuild](docs/MiniBuild.md)
|
|
803
|
+
- [MiniCloud](docs/MiniCloud.md)
|
|
804
|
+
- [MiniCluster](docs/MiniCluster.md)
|
|
805
|
+
- [MiniComputeTemplate](docs/MiniComputeTemplate.md)
|
|
806
|
+
- [MiniComputeTemplateConfig](docs/MiniComputeTemplateConfig.md)
|
|
807
|
+
- [MiniJobRun](docs/MiniJobRun.md)
|
|
808
|
+
- [MiniNamespace](docs/MiniNamespace.md)
|
|
809
|
+
- [MiniOrganization](docs/MiniOrganization.md)
|
|
810
|
+
- [MiniProductionJob](docs/MiniProductionJob.md)
|
|
811
|
+
- [MiniProject](docs/MiniProject.md)
|
|
812
|
+
- [MiniRuntimeEnvironment](docs/MiniRuntimeEnvironment.md)
|
|
813
|
+
- [MiniSchedule](docs/MiniSchedule.md)
|
|
814
|
+
- [MiniUser](docs/MiniUser.md)
|
|
815
|
+
- [MinibuildListResponse](docs/MinibuildListResponse.md)
|
|
816
|
+
- [MinicomputetemplateListResponse](docs/MinicomputetemplateListResponse.md)
|
|
817
|
+
- [MiniprojectListResponse](docs/MiniprojectListResponse.md)
|
|
818
|
+
- [MonitorLogsExtension](docs/MonitorLogsExtension.md)
|
|
819
|
+
- [NFSMountTarget](docs/NFSMountTarget.md)
|
|
820
|
+
- [NamedEntity](docs/NamedEntity.md)
|
|
821
|
+
- [NodeRegistrationAWS](docs/NodeRegistrationAWS.md)
|
|
822
|
+
- [NodeRegistrationGCP](docs/NodeRegistrationGCP.md)
|
|
823
|
+
- [NodeRegistrationK8S](docs/NodeRegistrationK8S.md)
|
|
824
|
+
- [NodeRegistrationProvisioned](docs/NodeRegistrationProvisioned.md)
|
|
825
|
+
- [NodeRegistrationV2](docs/NodeRegistrationV2.md)
|
|
826
|
+
- [NodeType](docs/NodeType.md)
|
|
827
|
+
- [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
|
|
828
|
+
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
|
829
|
+
- [OnboardingUserCardsQuery](docs/OnboardingUserCardsQuery.md)
|
|
830
|
+
- [Organization](docs/Organization.md)
|
|
831
|
+
- [OrganizationAvailability](docs/OrganizationAvailability.md)
|
|
832
|
+
- [OrganizationCollaborator](docs/OrganizationCollaborator.md)
|
|
833
|
+
- [OrganizationConfiguration](docs/OrganizationConfiguration.md)
|
|
834
|
+
- [OrganizationConfigurationResponse](docs/OrganizationConfigurationResponse.md)
|
|
835
|
+
- [OrganizationInvitation](docs/OrganizationInvitation.md)
|
|
836
|
+
- [OrganizationInvitationBase](docs/OrganizationInvitationBase.md)
|
|
837
|
+
- [OrganizationMarketingQuestions](docs/OrganizationMarketingQuestions.md)
|
|
838
|
+
- [OrganizationPermissionLevel](docs/OrganizationPermissionLevel.md)
|
|
839
|
+
- [OrganizationProjectCollaborator](docs/OrganizationProjectCollaborator.md)
|
|
840
|
+
- [OrganizationProjectCollaboratorValue](docs/OrganizationProjectCollaboratorValue.md)
|
|
841
|
+
- [OrganizationPublicIdentifier](docs/OrganizationPublicIdentifier.md)
|
|
842
|
+
- [OrganizationResponse](docs/OrganizationResponse.md)
|
|
843
|
+
- [OrganizationSummary](docs/OrganizationSummary.md)
|
|
844
|
+
- [OrganizationUsageAlert](docs/OrganizationUsageAlert.md)
|
|
845
|
+
- [OrganizationUsageAlertSeverity](docs/OrganizationUsageAlertSeverity.md)
|
|
846
|
+
- [OrganizationavailabilityResponse](docs/OrganizationavailabilityResponse.md)
|
|
847
|
+
- [OrganizationcollaboratorListResponse](docs/OrganizationcollaboratorListResponse.md)
|
|
848
|
+
- [OrganizationconfigurationListResponse](docs/OrganizationconfigurationListResponse.md)
|
|
849
|
+
- [OrganizationconfigurationresponseResponse](docs/OrganizationconfigurationresponseResponse.md)
|
|
850
|
+
- [OrganizationinvitationListResponse](docs/OrganizationinvitationListResponse.md)
|
|
851
|
+
- [OrganizationinvitationResponse](docs/OrganizationinvitationResponse.md)
|
|
852
|
+
- [OrganizationinvitationbaseResponse](docs/OrganizationinvitationbaseResponse.md)
|
|
853
|
+
- [OrganizationprojectcollaboratorListResponse](docs/OrganizationprojectcollaboratorListResponse.md)
|
|
854
|
+
- [OrganizationpublicidentifierResponse](docs/OrganizationpublicidentifierResponse.md)
|
|
855
|
+
- [OrganizationusagealertListResponse](docs/OrganizationusagealertListResponse.md)
|
|
856
|
+
- [PageQuery](docs/PageQuery.md)
|
|
857
|
+
- [PauseSchedule](docs/PauseSchedule.md)
|
|
858
|
+
- [PermissionLevel](docs/PermissionLevel.md)
|
|
859
|
+
- [PlatformFineTuningJob](docs/PlatformFineTuningJob.md)
|
|
860
|
+
- [PlatformfinetuningjobListResponse](docs/PlatformfinetuningjobListResponse.md)
|
|
861
|
+
- [PlatformfinetuningjobResponse](docs/PlatformfinetuningjobResponse.md)
|
|
862
|
+
- [ProductAutoscalerFlag](docs/ProductAutoscalerFlag.md)
|
|
863
|
+
- [ProductType](docs/ProductType.md)
|
|
864
|
+
- [ProductautoscalerflagResponse](docs/ProductautoscalerflagResponse.md)
|
|
865
|
+
- [ProductionJob](docs/ProductionJob.md)
|
|
866
|
+
- [ProductionJobConfig](docs/ProductionJobConfig.md)
|
|
867
|
+
- [ProductionJobEvent](docs/ProductionJobEvent.md)
|
|
868
|
+
- [ProductionJobEventScopeFilter](docs/ProductionJobEventScopeFilter.md)
|
|
869
|
+
- [ProductionJobStateTransition](docs/ProductionJobStateTransition.md)
|
|
870
|
+
- [ProductionjobResponse](docs/ProductionjobResponse.md)
|
|
871
|
+
- [ProductionjobeventListResponse](docs/ProductionjobeventListResponse.md)
|
|
872
|
+
- [Project](docs/Project.md)
|
|
873
|
+
- [ProjectBase](docs/ProjectBase.md)
|
|
874
|
+
- [ProjectCollaborator](docs/ProjectCollaborator.md)
|
|
875
|
+
- [ProjectCollaboratorValue](docs/ProjectCollaboratorValue.md)
|
|
876
|
+
- [ProjectCollaboratorsPutMessage](docs/ProjectCollaboratorsPutMessage.md)
|
|
877
|
+
- [ProjectCreateMessage](docs/ProjectCreateMessage.md)
|
|
878
|
+
- [ProjectDefaultSessionName](docs/ProjectDefaultSessionName.md)
|
|
879
|
+
- [ProjectDeleteMessage](docs/ProjectDeleteMessage.md)
|
|
880
|
+
- [ProjectListResponse](docs/ProjectListResponse.md)
|
|
881
|
+
- [ProjectPatchMessage](docs/ProjectPatchMessage.md)
|
|
882
|
+
- [ProjectResponse](docs/ProjectResponse.md)
|
|
883
|
+
- [ProjectbaseResponse](docs/ProjectbaseResponse.md)
|
|
884
|
+
- [ProjectcollaboratorListResponse](docs/ProjectcollaboratorListResponse.md)
|
|
885
|
+
- [ProjectdefaultsessionnameResponse](docs/ProjectdefaultsessionnameResponse.md)
|
|
886
|
+
- [ProjectsSortField](docs/ProjectsSortField.md)
|
|
887
|
+
- [ProjectsViolatingTreeHierarchyResponse](docs/ProjectsViolatingTreeHierarchyResponse.md)
|
|
888
|
+
- [ProjectsviolatingtreehierarchyresponseResponse](docs/ProjectsviolatingtreehierarchyresponseResponse.md)
|
|
889
|
+
- [Protocols](docs/Protocols.md)
|
|
890
|
+
- [ProviderMetadata](docs/ProviderMetadata.md)
|
|
891
|
+
- [ProvidermetadataResponse](docs/ProvidermetadataResponse.md)
|
|
892
|
+
- [PythonModules](docs/PythonModules.md)
|
|
893
|
+
- [Quota](docs/Quota.md)
|
|
894
|
+
- [RayGCSExternalStorageConfig](docs/RayGCSExternalStorageConfig.md)
|
|
895
|
+
- [RayRuntimeEnvConfig](docs/RayRuntimeEnvConfig.md)
|
|
896
|
+
- [ReadBillingVersion](docs/ReadBillingVersion.md)
|
|
897
|
+
- [ReadbillingversionListResponse](docs/ReadbillingversionListResponse.md)
|
|
898
|
+
- [ReplicaDetails](docs/ReplicaDetails.md)
|
|
899
|
+
- [ReplicaState](docs/ReplicaState.md)
|
|
900
|
+
- [RequestEmailMagicLinkResponse](docs/RequestEmailMagicLinkResponse.md)
|
|
901
|
+
- [RequestOTPReturnApiModel](docs/RequestOTPReturnApiModel.md)
|
|
902
|
+
- [RequestPasswordResetParams](docs/RequestPasswordResetParams.md)
|
|
903
|
+
- [RequestemailmagiclinkresponseResponse](docs/RequestemailmagiclinkresponseResponse.md)
|
|
904
|
+
- [RequestotpreturnapimodelResponse](docs/RequestotpreturnapimodelResponse.md)
|
|
905
|
+
- [ResetPasswordParams](docs/ResetPasswordParams.md)
|
|
906
|
+
- [ResourceQuota](docs/ResourceQuota.md)
|
|
907
|
+
- [ResourceQuotaStatus](docs/ResourceQuotaStatus.md)
|
|
908
|
+
- [ResourcequotaListResponse](docs/ResourcequotaListResponse.md)
|
|
909
|
+
- [ResourcequotaResponse](docs/ResourcequotaResponse.md)
|
|
910
|
+
- [Resources](docs/Resources.md)
|
|
911
|
+
- [ResubmitFTJobRequest](docs/ResubmitFTJobRequest.md)
|
|
912
|
+
- [RollbackServiceModel](docs/RollbackServiceModel.md)
|
|
913
|
+
- [RolloutStrategy](docs/RolloutStrategy.md)
|
|
914
|
+
- [S3DownloadLocation](docs/S3DownloadLocation.md)
|
|
915
|
+
- [SSOLoginInfo](docs/SSOLoginInfo.md)
|
|
916
|
+
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
|
917
|
+
- [ScheduleConfig](docs/ScheduleConfig.md)
|
|
918
|
+
- [ServeDeploymentGrafanaDashboardStatus](docs/ServeDeploymentGrafanaDashboardStatus.md)
|
|
919
|
+
- [ServeDeploymentLogs](docs/ServeDeploymentLogs.md)
|
|
920
|
+
- [ServeDeploymentState](docs/ServeDeploymentState.md)
|
|
921
|
+
- [ServedeploymentlogsResponse](docs/ServedeploymentlogsResponse.md)
|
|
922
|
+
- [ServerSessionToken](docs/ServerSessionToken.md)
|
|
923
|
+
- [ServersessiontokenResponse](docs/ServersessiontokenResponse.md)
|
|
924
|
+
- [ServiceConfig](docs/ServiceConfig.md)
|
|
925
|
+
- [ServiceEventCurrentState](docs/ServiceEventCurrentState.md)
|
|
926
|
+
- [ServiceEventLevel](docs/ServiceEventLevel.md)
|
|
927
|
+
- [ServiceEventOrigin](docs/ServiceEventOrigin.md)
|
|
928
|
+
- [ServiceEventScope](docs/ServiceEventScope.md)
|
|
929
|
+
- [ServiceEventScopeFilter](docs/ServiceEventScopeFilter.md)
|
|
930
|
+
- [ServiceEventType](docs/ServiceEventType.md)
|
|
931
|
+
- [ServiceEventVerboseMessageModel](docs/ServiceEventVerboseMessageModel.md)
|
|
932
|
+
- [ServiceGoalStates](docs/ServiceGoalStates.md)
|
|
933
|
+
- [ServiceObservabilityUrls](docs/ServiceObservabilityUrls.md)
|
|
934
|
+
- [ServiceSortField](docs/ServiceSortField.md)
|
|
935
|
+
- [ServiceType](docs/ServiceType.md)
|
|
936
|
+
- [ServiceUsage](docs/ServiceUsage.md)
|
|
937
|
+
- [ServiceVersionState](docs/ServiceVersionState.md)
|
|
938
|
+
- [ServiceeventverbosemessagemodelListResponse](docs/ServiceeventverbosemessagemodelListResponse.md)
|
|
939
|
+
- [Session](docs/Session.md)
|
|
940
|
+
- [SessionAccess](docs/SessionAccess.md)
|
|
941
|
+
- [SessionAutosyncSessionsUpdateMessage](docs/SessionAutosyncSessionsUpdateMessage.md)
|
|
942
|
+
- [SessionCommand](docs/SessionCommand.md)
|
|
943
|
+
- [SessionCommandFinishOptions](docs/SessionCommandFinishOptions.md)
|
|
944
|
+
- [SessionCommandId](docs/SessionCommandId.md)
|
|
945
|
+
- [SessionCommandTypes](docs/SessionCommandTypes.md)
|
|
946
|
+
- [SessionCreateMessage](docs/SessionCreateMessage.md)
|
|
947
|
+
- [SessionDeleteMessage](docs/SessionDeleteMessage.md)
|
|
948
|
+
- [SessionDescribe](docs/SessionDescribe.md)
|
|
949
|
+
- [SessionDetails](docs/SessionDetails.md)
|
|
950
|
+
- [SessionEvent](docs/SessionEvent.md)
|
|
951
|
+
- [SessionEventCause](docs/SessionEventCause.md)
|
|
952
|
+
- [SessionEventTypes](docs/SessionEventTypes.md)
|
|
953
|
+
- [SessionExecuteMessage](docs/SessionExecuteMessage.md)
|
|
954
|
+
- [SessionFinishCommandMessage](docs/SessionFinishCommandMessage.md)
|
|
955
|
+
- [SessionHistoryItem](docs/SessionHistoryItem.md)
|
|
956
|
+
- [SessionKillCommandMessage](docs/SessionKillCommandMessage.md)
|
|
957
|
+
- [SessionListResponse](docs/SessionListResponse.md)
|
|
958
|
+
- [SessionPatchMessage](docs/SessionPatchMessage.md)
|
|
959
|
+
- [SessionResponse](docs/SessionResponse.md)
|
|
960
|
+
- [SessionSshKey](docs/SessionSshKey.md)
|
|
961
|
+
- [SessionStartingUpData](docs/SessionStartingUpData.md)
|
|
962
|
+
- [SessionState](docs/SessionState.md)
|
|
963
|
+
- [SessionStateChangeMessage](docs/SessionStateChangeMessage.md)
|
|
964
|
+
- [SessionStateData](docs/SessionStateData.md)
|
|
965
|
+
- [SessionStoppingData](docs/SessionStoppingData.md)
|
|
966
|
+
- [SessioncommandListResponse](docs/SessioncommandListResponse.md)
|
|
967
|
+
- [SessioncommandidResponse](docs/SessioncommandidResponse.md)
|
|
968
|
+
- [SessiondescribeResponse](docs/SessiondescribeResponse.md)
|
|
969
|
+
- [SessiondetailsResponse](docs/SessiondetailsResponse.md)
|
|
970
|
+
- [SessioneventListResponse](docs/SessioneventListResponse.md)
|
|
971
|
+
- [SessionhistoryitemListResponse](docs/SessionhistoryitemListResponse.md)
|
|
972
|
+
- [SessionsSortField](docs/SessionsSortField.md)
|
|
973
|
+
- [SessionsshkeyResponse](docs/SessionsshkeyResponse.md)
|
|
974
|
+
- [SetupInitializeSessionOptions](docs/SetupInitializeSessionOptions.md)
|
|
975
|
+
- [ShowOTPSourceReturnApiModel](docs/ShowOTPSourceReturnApiModel.md)
|
|
976
|
+
- [ShowotpsourcereturnapimodelResponse](docs/ShowotpsourcereturnapimodelResponse.md)
|
|
977
|
+
- [SnapshotCreateMessage](docs/SnapshotCreateMessage.md)
|
|
978
|
+
- [SnapshotDeleteMessage](docs/SnapshotDeleteMessage.md)
|
|
979
|
+
- [SnapshotPatchMessage](docs/SnapshotPatchMessage.md)
|
|
980
|
+
- [SocketMessageSchemas](docs/SocketMessageSchemas.md)
|
|
981
|
+
- [SocketMessageTypes](docs/SocketMessageTypes.md)
|
|
982
|
+
- [SocketmessageschemasResponse](docs/SocketmessageschemasResponse.md)
|
|
983
|
+
- [SocketmessagetypesResponse](docs/SocketmessagetypesResponse.md)
|
|
984
|
+
- [SortOrder](docs/SortOrder.md)
|
|
985
|
+
- [SsologininfoResponse](docs/SsologininfoResponse.md)
|
|
986
|
+
- [StartSessionOptions](docs/StartSessionOptions.md)
|
|
987
|
+
- [StopSessionOptions](docs/StopSessionOptions.md)
|
|
988
|
+
- [StreamPublishRequest](docs/StreamPublishRequest.md)
|
|
989
|
+
- [SubnetIdWithAvailabilityZoneAWS](docs/SubnetIdWithAvailabilityZoneAWS.md)
|
|
990
|
+
- [SupportRequestsQuery](docs/SupportRequestsQuery.md)
|
|
991
|
+
- [TemplatizedComputeConfigs](docs/TemplatizedComputeConfigs.md)
|
|
992
|
+
- [TemplatizedDecoratedApplicationTemplates](docs/TemplatizedDecoratedApplicationTemplates.md)
|
|
993
|
+
- [TemplatizedcomputeconfigsResponse](docs/TemplatizedcomputeconfigsResponse.md)
|
|
994
|
+
- [TemplatizeddecoratedapplicationtemplatesResponse](docs/TemplatizeddecoratedapplicationtemplatesResponse.md)
|
|
995
|
+
- [TextQuery](docs/TextQuery.md)
|
|
996
|
+
- [TimestampedLogsOutput](docs/TimestampedLogsOutput.md)
|
|
997
|
+
- [TimestampedlogsoutputResponse](docs/TimestampedlogsoutputResponse.md)
|
|
998
|
+
- [Tool](docs/Tool.md)
|
|
999
|
+
- [TracingConfig](docs/TracingConfig.md)
|
|
1000
|
+
- [TryLoginEmailResponse](docs/TryLoginEmailResponse.md)
|
|
1001
|
+
- [TryloginemailresponseResponse](docs/TryloginemailresponseResponse.md)
|
|
1002
|
+
- [UXInstance](docs/UXInstance.md)
|
|
1003
|
+
- [UnifiedJobSortField](docs/UnifiedJobSortField.md)
|
|
1004
|
+
- [UnifiedJobStatus](docs/UnifiedJobStatus.md)
|
|
1005
|
+
- [UnifiedJobType](docs/UnifiedJobType.md)
|
|
1006
|
+
- [UpdateCloudWithCloudResource](docs/UpdateCloudWithCloudResource.md)
|
|
1007
|
+
- [UpdateCloudWithCloudResourceGCP](docs/UpdateCloudWithCloudResourceGCP.md)
|
|
1008
|
+
- [UpdateClusterDns](docs/UpdateClusterDns.md)
|
|
1009
|
+
- [UpdateComputeTemplate](docs/UpdateComputeTemplate.md)
|
|
1010
|
+
- [UpdateComputeTemplateConfig](docs/UpdateComputeTemplateConfig.md)
|
|
1011
|
+
- [UpdateEndpoint](docs/UpdateEndpoint.md)
|
|
1012
|
+
- [UpdateMachinePoolRequest](docs/UpdateMachinePoolRequest.md)
|
|
1013
|
+
- [UpdateModelDeployment](docs/UpdateModelDeployment.md)
|
|
1014
|
+
- [UpdateOrganizationCollaborator](docs/UpdateOrganizationCollaborator.md)
|
|
1015
|
+
- [UpdateProjectCollaborator](docs/UpdateProjectCollaborator.md)
|
|
1016
|
+
- [UpdateResourceQuota](docs/UpdateResourceQuota.md)
|
|
1017
|
+
- [UpdatemachinepoolresponseResponse](docs/UpdatemachinepoolresponseResponse.md)
|
|
1018
|
+
- [UploadSessionCommandLogsLocations](docs/UploadSessionCommandLogsLocations.md)
|
|
1019
|
+
- [UploadsessioncommandlogslocationsResponse](docs/UploadsessioncommandlogslocationsResponse.md)
|
|
1020
|
+
- [UserInfo](docs/UserInfo.md)
|
|
1021
|
+
- [UserResendEmailOptions](docs/UserResendEmailOptions.md)
|
|
1022
|
+
- [UserServiceAccessTypes](docs/UserServiceAccessTypes.md)
|
|
1023
|
+
- [UserinfoResponse](docs/UserinfoResponse.md)
|
|
1024
|
+
- [UtmFields](docs/UtmFields.md)
|
|
1025
|
+
- [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
|
|
1026
|
+
- [ValidationError](docs/ValidationError.md)
|
|
1027
|
+
- [VerifyResponse](docs/VerifyResponse.md)
|
|
1028
|
+
- [VerifyresponseResponse](docs/VerifyresponseResponse.md)
|
|
1029
|
+
- [Visibility](docs/Visibility.md)
|
|
1030
|
+
- [WaitlistStatusResponse](docs/WaitlistStatusResponse.md)
|
|
1031
|
+
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
|
1032
|
+
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
|
1033
|
+
- [WandBRunDetails](docs/WandBRunDetails.md)
|
|
1034
|
+
- [WebTerminal](docs/WebTerminal.md)
|
|
1035
|
+
- [WebterminalListResponse](docs/WebterminalListResponse.md)
|
|
1036
|
+
- [WebterminalResponse](docs/WebterminalResponse.md)
|
|
1037
|
+
- [WorkerNodeType](docs/WorkerNodeType.md)
|
|
1038
|
+
- [WorkloadType](docs/WorkloadType.md)
|
|
1039
|
+
- [WorkspaceDataplaneArtifact](docs/WorkspaceDataplaneArtifact.md)
|
|
1040
|
+
- [WorkspaceDataplaneArtifacts](docs/WorkspaceDataplaneArtifacts.md)
|
|
1041
|
+
- [WorkspaceDataplaneProxiedArtifacts](docs/WorkspaceDataplaneProxiedArtifacts.md)
|
|
1042
|
+
- [WorkspaceEvent](docs/WorkspaceEvent.md)
|
|
1043
|
+
- [WorkspaceEventSource](docs/WorkspaceEventSource.md)
|
|
1044
|
+
- [WorkspaceEventSourceFilter](docs/WorkspaceEventSourceFilter.md)
|
|
1045
|
+
- [WorkspaceReadme](docs/WorkspaceReadme.md)
|
|
1046
|
+
- [WorkspaceSnapshotStates](docs/WorkspaceSnapshotStates.md)
|
|
1047
|
+
- [WorkspaceTemplate](docs/WorkspaceTemplate.md)
|
|
1048
|
+
- [WorkspaceTemplateClusterEnvironmentMetadata](docs/WorkspaceTemplateClusterEnvironmentMetadata.md)
|
|
1049
|
+
- [WorkspacedataplaneartifactsResponse](docs/WorkspacedataplaneartifactsResponse.md)
|
|
1050
|
+
- [WorkspacedataplaneproxiedartifactsResponse](docs/WorkspacedataplaneproxiedartifactsResponse.md)
|
|
1051
|
+
- [WorkspaceeventListResponse](docs/WorkspaceeventListResponse.md)
|
|
1052
|
+
- [WorkspacereadmeResponse](docs/WorkspacereadmeResponse.md)
|
|
1053
|
+
- [WorkspacetemplateListResponse](docs/WorkspacetemplateListResponse.md)
|
|
1054
|
+
- [WorkspacetemplateclusterenvironmentmetadataResponse](docs/WorkspacetemplateclusterenvironmentmetadataResponse.md)
|
|
1055
|
+
- [WriteCloud](docs/WriteCloud.md)
|
|
1056
|
+
- [WriteClusterConfig](docs/WriteClusterConfig.md)
|
|
1057
|
+
- [WriteProject](docs/WriteProject.md)
|
|
1058
|
+
- [WriteSession](docs/WriteSession.md)
|
|
1059
|
+
- [WriteSupportRequest](docs/WriteSupportRequest.md)
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
## Documentation For Authorization
|
|
1063
|
+
|
|
1064
|
+
All endpoints do not require authorization.
|
|
1065
|
+
|
|
1066
|
+
## Author
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
|