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,652 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
"""
|
|
5
|
+
Managed Ray API
|
|
6
|
+
|
|
7
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
|
|
8
|
+
|
|
9
|
+
The version of the OpenAPI document: 0.1.0
|
|
10
|
+
Generated by: https://openapi-generator.tech
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from __future__ import absolute_import
|
|
15
|
+
|
|
16
|
+
# import models into model package
|
|
17
|
+
from openapi_client.models.aws_credentials import AWSCredentials
|
|
18
|
+
from openapi_client.models.aws_memory_db_cluster_config import AWSMemoryDBClusterConfig
|
|
19
|
+
from openapi_client.models.access_config import AccessConfig
|
|
20
|
+
from openapi_client.models.aggregated_instance_usage_with_cost_model import AggregatedInstanceUsageWithCostModel
|
|
21
|
+
from openapi_client.models.aggregatedinstanceusagewithcostmodel_list_response import AggregatedinstanceusagewithcostmodelListResponse
|
|
22
|
+
from openapi_client.models.aica_endpoint import AicaEndpoint
|
|
23
|
+
from openapi_client.models.aica_endpoint_event import AicaEndpointEvent
|
|
24
|
+
from openapi_client.models.aica_endpoint_event_level import AicaEndpointEventLevel
|
|
25
|
+
from openapi_client.models.aica_endpoint_event_type import AicaEndpointEventType
|
|
26
|
+
from openapi_client.models.aica_endpoint_scope import AicaEndpointScope
|
|
27
|
+
from openapi_client.models.aica_model import AicaModel
|
|
28
|
+
from openapi_client.models.aica_model_accelerator_map import AicaModelAcceleratorMap
|
|
29
|
+
from openapi_client.models.aica_model_configuration import AicaModelConfiguration
|
|
30
|
+
from openapi_client.models.aica_observability_urls import AicaObservabilityUrls
|
|
31
|
+
from openapi_client.models.aicaendpoint_list_response import AicaendpointListResponse
|
|
32
|
+
from openapi_client.models.aicaendpoint_response import AicaendpointResponse
|
|
33
|
+
from openapi_client.models.aicaendpointevent_list_response import AicaendpointeventListResponse
|
|
34
|
+
from openapi_client.models.aicamodel_list_response import AicamodelListResponse
|
|
35
|
+
from openapi_client.models.aicamodel_response import AicamodelResponse
|
|
36
|
+
from openapi_client.models.aioa_cloud_waitlist_record import AioaCloudWaitlistRecord
|
|
37
|
+
from openapi_client.models.aioacloudwaitlistrecord_response import AioacloudwaitlistrecordResponse
|
|
38
|
+
from openapi_client.models.alert_type import AlertType
|
|
39
|
+
from openapi_client.models.anyscale_aws_account import AnyscaleAWSAccount
|
|
40
|
+
from openapi_client.models.anyscale_service_account import AnyscaleServiceAccount
|
|
41
|
+
from openapi_client.models.anyscale_version_response import AnyscaleVersionResponse
|
|
42
|
+
from openapi_client.models.anyscaleawsaccount_response import AnyscaleawsaccountResponse
|
|
43
|
+
from openapi_client.models.anyscaled_credential_response import AnyscaledCredentialResponse
|
|
44
|
+
from openapi_client.models.anyscaledcredentialresponse_response import AnyscaledcredentialresponseResponse
|
|
45
|
+
from openapi_client.models.anyscaleserviceaccount_response import AnyscaleserviceaccountResponse
|
|
46
|
+
from openapi_client.models.anyscaleversionresponse_response import AnyscaleversionresponseResponse
|
|
47
|
+
from openapi_client.models.api_key_parameters import ApiKeyParameters
|
|
48
|
+
from openapi_client.models.app_config import AppConfig
|
|
49
|
+
from openapi_client.models.app_config_config_schema import AppConfigConfigSchema
|
|
50
|
+
from openapi_client.models.appconfig_list_response import AppconfigListResponse
|
|
51
|
+
from openapi_client.models.appconfig_response import AppconfigResponse
|
|
52
|
+
from openapi_client.models.application_type import ApplicationType
|
|
53
|
+
from openapi_client.models.applied_snapshot import AppliedSnapshot
|
|
54
|
+
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
55
|
+
from openapi_client.models.archive_status import ArchiveStatus
|
|
56
|
+
from openapi_client.models.archived_logs_info import ArchivedLogsInfo
|
|
57
|
+
from openapi_client.models.archivedlogsinfo_response import ArchivedlogsinfoResponse
|
|
58
|
+
from openapi_client.models.attach_machine_pool_to_cloud_request import AttachMachinePoolToCloudRequest
|
|
59
|
+
from openapi_client.models.attachmachinepooltocloudresponse_response import AttachmachinepooltocloudresponseResponse
|
|
60
|
+
from openapi_client.models.aviary_model_config_v2 import AviaryModelConfigV2
|
|
61
|
+
from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
|
|
62
|
+
from openapi_client.models.aws_region_info import AwsRegionInfo
|
|
63
|
+
from openapi_client.models.awsregionandzones_response import AwsregionandzonesResponse
|
|
64
|
+
from openapi_client.models.baseimagesenum import BASEIMAGESENUM
|
|
65
|
+
from openapi_client.models.bank_account_information import BankAccountInformation
|
|
66
|
+
from openapi_client.models.base_job_status import BaseJobStatus
|
|
67
|
+
from openapi_client.models.batch_response_batched_result_organization_invitation_base import BatchResponseBatchedResultOrganizationInvitationBase
|
|
68
|
+
from openapi_client.models.batched_result_organization_invitation_base import BatchedResultOrganizationInvitationBase
|
|
69
|
+
from openapi_client.models.billing_information import BillingInformation
|
|
70
|
+
from openapi_client.models.billing_version_code import BillingVersionCode
|
|
71
|
+
from openapi_client.models.body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post import BodyAwsMarketplaceRegistrationApiV2OrganizationBillingAwsMarketplaceRegistrationPost
|
|
72
|
+
from openapi_client.models.buffer_registration import BufferRegistration
|
|
73
|
+
from openapi_client.models.build import Build
|
|
74
|
+
from openapi_client.models.build_log_response import BuildLogResponse
|
|
75
|
+
from openapi_client.models.build_registration import BuildRegistration
|
|
76
|
+
from openapi_client.models.build_response import BuildResponse
|
|
77
|
+
from openapi_client.models.build_status import BuildStatus
|
|
78
|
+
from openapi_client.models.buildlogresponse_response import BuildlogresponseResponse
|
|
79
|
+
from openapi_client.models.card import Card
|
|
80
|
+
from openapi_client.models.card_id import CardId
|
|
81
|
+
from openapi_client.models.card_list_response import CardListResponse
|
|
82
|
+
from openapi_client.models.change_password_params import ChangePasswordParams
|
|
83
|
+
from openapi_client.models.cleanup_leaked_grafana_dashboard_response import CleanupLeakedGrafanaDashboardResponse
|
|
84
|
+
from openapi_client.models.cleanupleakedgrafanadashboardresponse_response import CleanupleakedgrafanadashboardresponseResponse
|
|
85
|
+
from openapi_client.models.clone_experimental_workspace import CloneExperimentalWorkspace
|
|
86
|
+
from openapi_client.models.cloud import Cloud
|
|
87
|
+
from openapi_client.models.cloud_analytics_event import CloudAnalyticsEvent
|
|
88
|
+
from openapi_client.models.cloud_analytics_event_cloud_provider_error import CloudAnalyticsEventCloudProviderError
|
|
89
|
+
from openapi_client.models.cloud_analytics_event_cloud_resource import CloudAnalyticsEventCloudResource
|
|
90
|
+
from openapi_client.models.cloud_analytics_event_command_name import CloudAnalyticsEventCommandName
|
|
91
|
+
from openapi_client.models.cloud_analytics_event_error import CloudAnalyticsEventError
|
|
92
|
+
from openapi_client.models.cloud_analytics_event_name import CloudAnalyticsEventName
|
|
93
|
+
from openapi_client.models.cloud_collaborator import CloudCollaborator
|
|
94
|
+
from openapi_client.models.cloud_collaborator_value import CloudCollaboratorValue
|
|
95
|
+
from openapi_client.models.cloud_collaborators_query import CloudCollaboratorsQuery
|
|
96
|
+
from openapi_client.models.cloud_config import CloudConfig
|
|
97
|
+
from openapi_client.models.cloud_data_bucket_access_mode import CloudDataBucketAccessMode
|
|
98
|
+
from openapi_client.models.cloud_data_bucket_file_type import CloudDataBucketFileType
|
|
99
|
+
from openapi_client.models.cloud_data_bucket_presigned_upload_info import CloudDataBucketPresignedUploadInfo
|
|
100
|
+
from openapi_client.models.cloud_data_bucket_presigned_upload_request import CloudDataBucketPresignedUploadRequest
|
|
101
|
+
from openapi_client.models.cloud_data_bucket_presigned_upload_scheme import CloudDataBucketPresignedUploadScheme
|
|
102
|
+
from openapi_client.models.cloud_data_bucket_presigned_url_request import CloudDataBucketPresignedUrlRequest
|
|
103
|
+
from openapi_client.models.cloud_data_bucket_presigned_url_response import CloudDataBucketPresignedUrlResponse
|
|
104
|
+
from openapi_client.models.cloud_data_bucket_presigned_url_scheme import CloudDataBucketPresignedUrlScheme
|
|
105
|
+
from openapi_client.models.cloud_data_bucket_request_scope import CloudDataBucketRequestScope
|
|
106
|
+
from openapi_client.models.cloud_hosting_type import CloudHostingType
|
|
107
|
+
from openapi_client.models.cloud_list_response import CloudListResponse
|
|
108
|
+
from openapi_client.models.cloud_name_options import CloudNameOptions
|
|
109
|
+
from openapi_client.models.cloud_overview_dashboard import CloudOverviewDashboard
|
|
110
|
+
from openapi_client.models.cloud_project_collaborator import CloudProjectCollaborator
|
|
111
|
+
from openapi_client.models.cloud_project_collaborator_value import CloudProjectCollaboratorValue
|
|
112
|
+
from openapi_client.models.cloud_provider import CloudProvider
|
|
113
|
+
from openapi_client.models.cloud_providers import CloudProviders
|
|
114
|
+
from openapi_client.models.cloud_region_and_zones import CloudRegionAndZones
|
|
115
|
+
from openapi_client.models.cloud_region_info import CloudRegionInfo
|
|
116
|
+
from openapi_client.models.cloud_resource import CloudResource
|
|
117
|
+
from openapi_client.models.cloud_resource_gcp import CloudResourceGCP
|
|
118
|
+
from openapi_client.models.cloud_response import CloudResponse
|
|
119
|
+
from openapi_client.models.cloud_state import CloudState
|
|
120
|
+
from openapi_client.models.cloud_status import CloudStatus
|
|
121
|
+
from openapi_client.models.cloud_type import CloudType
|
|
122
|
+
from openapi_client.models.cloud_types import CloudTypes
|
|
123
|
+
from openapi_client.models.cloud_version import CloudVersion
|
|
124
|
+
from openapi_client.models.cloud_waitlist_status import CloudWaitlistStatus
|
|
125
|
+
from openapi_client.models.cloud_with_cloud_resource import CloudWithCloudResource
|
|
126
|
+
from openapi_client.models.cloud_with_cloud_resource_gcp import CloudWithCloudResourceGCP
|
|
127
|
+
from openapi_client.models.cloudcollaborator_list_response import CloudcollaboratorListResponse
|
|
128
|
+
from openapi_client.models.clouddatabucketpresigneduploadinfo_response import ClouddatabucketpresigneduploadinfoResponse
|
|
129
|
+
from openapi_client.models.clouddatabucketpresignedurlresponse_response import ClouddatabucketpresignedurlresponseResponse
|
|
130
|
+
from openapi_client.models.cloudoverviewdashboard_response import CloudoverviewdashboardResponse
|
|
131
|
+
from openapi_client.models.cloudregionandzones_response import CloudregionandzonesResponse
|
|
132
|
+
from openapi_client.models.cloudresource_response import CloudresourceResponse
|
|
133
|
+
from openapi_client.models.cloudresourcegcp_response import CloudresourcegcpResponse
|
|
134
|
+
from openapi_client.models.cloudwithcloudresource_response import CloudwithcloudresourceResponse
|
|
135
|
+
from openapi_client.models.cloudwithcloudresourcegcp_response import CloudwithcloudresourcegcpResponse
|
|
136
|
+
from openapi_client.models.cluster_auth_response import ClusterAuthResponse
|
|
137
|
+
from openapi_client.models.cluster_config import ClusterConfig
|
|
138
|
+
from openapi_client.models.cluster_config_with_session_idle_timeout import ClusterConfigWithSessionIdleTimeout
|
|
139
|
+
from openapi_client.models.cluster_environments_query import ClusterEnvironmentsQuery
|
|
140
|
+
from openapi_client.models.cluster_event import ClusterEvent
|
|
141
|
+
from openapi_client.models.cluster_events_output import ClusterEventsOutput
|
|
142
|
+
from openapi_client.models.cluster_features import ClusterFeatures
|
|
143
|
+
from openapi_client.models.cluster_management_stack_versions import ClusterManagementStackVersions
|
|
144
|
+
from openapi_client.models.cluster_startup import ClusterStartup
|
|
145
|
+
from openapi_client.models.cluster_status import ClusterStatus
|
|
146
|
+
from openapi_client.models.cluster_status_details import ClusterStatusDetails
|
|
147
|
+
from openapi_client.models.clusterauthresponse_response import ClusterauthresponseResponse
|
|
148
|
+
from openapi_client.models.clusterconfig_response import ClusterconfigResponse
|
|
149
|
+
from openapi_client.models.clusterconfigwithsessionidletimeout_response import ClusterconfigwithsessionidletimeoutResponse
|
|
150
|
+
from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
|
|
151
|
+
from openapi_client.models.clusterfeatures_response import ClusterfeaturesResponse
|
|
152
|
+
from openapi_client.models.company_size import CompanySize
|
|
153
|
+
from openapi_client.models.compute_node_type import ComputeNodeType
|
|
154
|
+
from openapi_client.models.compute_stack import ComputeStack
|
|
155
|
+
from openapi_client.models.compute_template import ComputeTemplate
|
|
156
|
+
from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
157
|
+
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
|
158
|
+
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
|
159
|
+
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
|
160
|
+
from openapi_client.models.create_aica_endpoint import CreateAicaEndpoint
|
|
161
|
+
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
|
162
|
+
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
|
163
|
+
from openapi_client.models.create_app_config import CreateAppConfig
|
|
164
|
+
from openapi_client.models.create_app_config_configuration_schema import CreateAppConfigConfigurationSchema
|
|
165
|
+
from openapi_client.models.create_byod_app_config import CreateBYODAppConfig
|
|
166
|
+
from openapi_client.models.create_byod_app_config_configuration_schema import CreateBYODAppConfigConfigurationSchema
|
|
167
|
+
from openapi_client.models.create_byod_build import CreateBYODBuild
|
|
168
|
+
from openapi_client.models.create_billing_version import CreateBillingVersion
|
|
169
|
+
from openapi_client.models.create_bug_report_response import CreateBugReportResponse
|
|
170
|
+
from openapi_client.models.create_build import CreateBuild
|
|
171
|
+
from openapi_client.models.create_cloud_collaborator import CreateCloudCollaborator
|
|
172
|
+
from openapi_client.models.create_cloud_resource import CreateCloudResource
|
|
173
|
+
from openapi_client.models.create_cloud_resource_gcp import CreateCloudResourceGCP
|
|
174
|
+
from openapi_client.models.create_cloud_with_cloud_resource import CreateCloudWithCloudResource
|
|
175
|
+
from openapi_client.models.create_cluster_compute_config import CreateClusterComputeConfig
|
|
176
|
+
from openapi_client.models.create_compute_template import CreateComputeTemplate
|
|
177
|
+
from openapi_client.models.create_compute_template_config import CreateComputeTemplateConfig
|
|
178
|
+
from openapi_client.models.create_dataset import CreateDataset
|
|
179
|
+
from openapi_client.models.create_experimental_workspace import CreateExperimentalWorkspace
|
|
180
|
+
from openapi_client.models.create_experimental_workspace_from_job import CreateExperimentalWorkspaceFromJob
|
|
181
|
+
from openapi_client.models.create_fine_tuning_hyperparameters import CreateFineTuningHyperparameters
|
|
182
|
+
from openapi_client.models.create_fine_tuning_job_product_request import CreateFineTuningJobProductRequest
|
|
183
|
+
from openapi_client.models.create_instance_usage_budget import CreateInstanceUsageBudget
|
|
184
|
+
from openapi_client.models.create_internal_production_job import CreateInternalProductionJob
|
|
185
|
+
from openapi_client.models.create_job_queue_config import CreateJobQueueConfig
|
|
186
|
+
from openapi_client.models.create_job_queue_requests import CreateJobQueueRequests
|
|
187
|
+
from openapi_client.models.create_machine_pool_request import CreateMachinePoolRequest
|
|
188
|
+
from openapi_client.models.create_machine_pool_response import CreateMachinePoolResponse
|
|
189
|
+
from openapi_client.models.create_machine_request import CreateMachineRequest
|
|
190
|
+
from openapi_client.models.create_machine_response import CreateMachineResponse
|
|
191
|
+
from openapi_client.models.create_metronome_webhook_notification import CreateMetronomeWebhookNotification
|
|
192
|
+
from openapi_client.models.create_notification_channel_record import CreateNotificationChannelRecord
|
|
193
|
+
from openapi_client.models.create_otp_return_api_model import CreateOTPReturnApiModel
|
|
194
|
+
from openapi_client.models.create_organization_configuration import CreateOrganizationConfiguration
|
|
195
|
+
from openapi_client.models.create_organization_invitation import CreateOrganizationInvitation
|
|
196
|
+
from openapi_client.models.create_production_job_config import CreateProductionJobConfig
|
|
197
|
+
from openapi_client.models.create_resource_quota import CreateResourceQuota
|
|
198
|
+
from openapi_client.models.create_schedule import CreateSchedule
|
|
199
|
+
from openapi_client.models.create_session_from_snapshot_options import CreateSessionFromSnapshotOptions
|
|
200
|
+
from openapi_client.models.create_session_in_db import CreateSessionInDb
|
|
201
|
+
from openapi_client.models.create_session_response import CreateSessionResponse
|
|
202
|
+
from openapi_client.models.create_user import CreateUser
|
|
203
|
+
from openapi_client.models.create_user_project_collaborator import CreateUserProjectCollaborator
|
|
204
|
+
from openapi_client.models.create_user_project_collaborator_value import CreateUserProjectCollaboratorValue
|
|
205
|
+
from openapi_client.models.create_workspace_from_template import CreateWorkspaceFromTemplate
|
|
206
|
+
from openapi_client.models.createbugreportresponse_response import CreatebugreportresponseResponse
|
|
207
|
+
from openapi_client.models.createcomputetemplateconfig_response import CreatecomputetemplateconfigResponse
|
|
208
|
+
from openapi_client.models.createmachinepoolresponse_response import CreatemachinepoolresponseResponse
|
|
209
|
+
from openapi_client.models.createmachineresponse_response import CreatemachineresponseResponse
|
|
210
|
+
from openapi_client.models.createotpreturnapimodel_response import CreateotpreturnapimodelResponse
|
|
211
|
+
from openapi_client.models.createsessionresponse_response import CreatesessionresponseResponse
|
|
212
|
+
from openapi_client.models.credit_card_information import CreditCardInformation
|
|
213
|
+
from openapi_client.models.customer_alert_status import CustomerAlertStatus
|
|
214
|
+
from openapi_client.models.customer_billing_type import CustomerBillingType
|
|
215
|
+
from openapi_client.models.dataplane_services import DataplaneServices
|
|
216
|
+
from openapi_client.models.dataset import Dataset
|
|
217
|
+
from openapi_client.models.dataset_list_response import DatasetListResponse
|
|
218
|
+
from openapi_client.models.dataset_response import DatasetResponse
|
|
219
|
+
from openapi_client.models.dataset_upload import DatasetUpload
|
|
220
|
+
from openapi_client.models.datasetupload_response import DatasetuploadResponse
|
|
221
|
+
from openapi_client.models.decorated_application_template import DecoratedApplicationTemplate
|
|
222
|
+
from openapi_client.models.decorated_build import DecoratedBuild
|
|
223
|
+
from openapi_client.models.decorated_compute_template import DecoratedComputeTemplate
|
|
224
|
+
from openapi_client.models.decorated_compute_template_config import DecoratedComputeTemplateConfig
|
|
225
|
+
from openapi_client.models.decorated_interactive_session import DecoratedInteractiveSession
|
|
226
|
+
from openapi_client.models.decorated_job import DecoratedJob
|
|
227
|
+
from openapi_client.models.decorated_job_queue import DecoratedJobQueue
|
|
228
|
+
from openapi_client.models.decorated_job_submission import DecoratedJobSubmission
|
|
229
|
+
from openapi_client.models.decorated_list_service_api_model import DecoratedListServiceAPIModel
|
|
230
|
+
from openapi_client.models.decorated_production_job import DecoratedProductionJob
|
|
231
|
+
from openapi_client.models.decorated_production_job_state_transition import DecoratedProductionJobStateTransition
|
|
232
|
+
from openapi_client.models.decorated_production_service_v2_api_model import DecoratedProductionServiceV2APIModel
|
|
233
|
+
from openapi_client.models.decorated_production_service_v2_version_api_model import DecoratedProductionServiceV2VersionAPIModel
|
|
234
|
+
from openapi_client.models.decorated_runtime_env import DecoratedRuntimeEnv
|
|
235
|
+
from openapi_client.models.decorated_schedule import DecoratedSchedule
|
|
236
|
+
from openapi_client.models.decorated_serve_deployment import DecoratedServeDeployment
|
|
237
|
+
from openapi_client.models.decorated_service_event_api_model import DecoratedServiceEventAPIModel
|
|
238
|
+
from openapi_client.models.decorated_session import DecoratedSession
|
|
239
|
+
from openapi_client.models.decorated_support_request import DecoratedSupportRequest
|
|
240
|
+
from openapi_client.models.decorated_unified_job import DecoratedUnifiedJob
|
|
241
|
+
from openapi_client.models.decoratedapplicationtemplate_list_response import DecoratedapplicationtemplateListResponse
|
|
242
|
+
from openapi_client.models.decoratedapplicationtemplate_response import DecoratedapplicationtemplateResponse
|
|
243
|
+
from openapi_client.models.decoratedbuild_list_response import DecoratedbuildListResponse
|
|
244
|
+
from openapi_client.models.decoratedbuild_response import DecoratedbuildResponse
|
|
245
|
+
from openapi_client.models.decoratedcomputetemplate_list_response import DecoratedcomputetemplateListResponse
|
|
246
|
+
from openapi_client.models.decoratedcomputetemplate_response import DecoratedcomputetemplateResponse
|
|
247
|
+
from openapi_client.models.decoratedinteractivesession_list_response import DecoratedinteractivesessionListResponse
|
|
248
|
+
from openapi_client.models.decoratedinteractivesession_response import DecoratedinteractivesessionResponse
|
|
249
|
+
from openapi_client.models.decoratedjob_list_response import DecoratedjobListResponse
|
|
250
|
+
from openapi_client.models.decoratedjob_response import DecoratedjobResponse
|
|
251
|
+
from openapi_client.models.decoratedjobqueue_list_response import DecoratedjobqueueListResponse
|
|
252
|
+
from openapi_client.models.decoratedjobqueue_response import DecoratedjobqueueResponse
|
|
253
|
+
from openapi_client.models.decoratedjobsubmission_list_response import DecoratedjobsubmissionListResponse
|
|
254
|
+
from openapi_client.models.decoratedjobsubmission_response import DecoratedjobsubmissionResponse
|
|
255
|
+
from openapi_client.models.decoratedlistserviceapimodel_list_response import DecoratedlistserviceapimodelListResponse
|
|
256
|
+
from openapi_client.models.decoratedproductionjob_list_response import DecoratedproductionjobListResponse
|
|
257
|
+
from openapi_client.models.decoratedproductionjob_response import DecoratedproductionjobResponse
|
|
258
|
+
from openapi_client.models.decoratedproductionjobstatetransition_list_response import DecoratedproductionjobstatetransitionListResponse
|
|
259
|
+
from openapi_client.models.decoratedproductionservicev2_apimodel_response import Decoratedproductionservicev2ApimodelResponse
|
|
260
|
+
from openapi_client.models.decoratedproductionservicev2_versionapimodel_list_response import Decoratedproductionservicev2VersionapimodelListResponse
|
|
261
|
+
from openapi_client.models.decoratedruntimeenv_list_response import DecoratedruntimeenvListResponse
|
|
262
|
+
from openapi_client.models.decoratedruntimeenv_response import DecoratedruntimeenvResponse
|
|
263
|
+
from openapi_client.models.decoratedschedule_list_response import DecoratedscheduleListResponse
|
|
264
|
+
from openapi_client.models.decoratedschedule_response import DecoratedscheduleResponse
|
|
265
|
+
from openapi_client.models.decoratedservedeployment_list_response import DecoratedservedeploymentListResponse
|
|
266
|
+
from openapi_client.models.decoratedservedeployment_response import DecoratedservedeploymentResponse
|
|
267
|
+
from openapi_client.models.decoratedserviceeventapimodel_list_response import DecoratedserviceeventapimodelListResponse
|
|
268
|
+
from openapi_client.models.decoratedsession_list_response import DecoratedsessionListResponse
|
|
269
|
+
from openapi_client.models.decoratedsession_response import DecoratedsessionResponse
|
|
270
|
+
from openapi_client.models.decoratedsupportrequest_list_response import DecoratedsupportrequestListResponse
|
|
271
|
+
from openapi_client.models.decoratedsupportrequest_response import DecoratedsupportrequestResponse
|
|
272
|
+
from openapi_client.models.decoratedunifiedjob_list_response import DecoratedunifiedjobListResponse
|
|
273
|
+
from openapi_client.models.decoratedunifiedjob_response import DecoratedunifiedjobResponse
|
|
274
|
+
from openapi_client.models.delete_machine_pool_request import DeleteMachinePoolRequest
|
|
275
|
+
from openapi_client.models.delete_machine_request import DeleteMachineRequest
|
|
276
|
+
from openapi_client.models.deleted_platform_fine_tuned_model import DeletedPlatformFineTunedModel
|
|
277
|
+
from openapi_client.models.deletedplatformfinetunedmodel_response import DeletedplatformfinetunedmodelResponse
|
|
278
|
+
from openapi_client.models.deletemachinepoolresponse_response import DeletemachinepoolresponseResponse
|
|
279
|
+
from openapi_client.models.detach_machine_pool_from_cloud_request import DetachMachinePoolFromCloudRequest
|
|
280
|
+
from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
|
|
281
|
+
from openapi_client.models.dismissal_type import DismissalType
|
|
282
|
+
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
|
283
|
+
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
|
284
|
+
from openapi_client.models.error import Error
|
|
285
|
+
from openapi_client.models.event_level import EventLevel
|
|
286
|
+
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
|
287
|
+
from openapi_client.models.execute_interactive_command_options import ExecuteInteractiveCommandOptions
|
|
288
|
+
from openapi_client.models.execute_shell_command_options import ExecuteShellCommandOptions
|
|
289
|
+
from openapi_client.models.executecommandresponse_response import ExecutecommandresponseResponse
|
|
290
|
+
from openapi_client.models.experimental_workspace import ExperimentalWorkspace
|
|
291
|
+
from openapi_client.models.experimental_workspaces_sort_field import ExperimentalWorkspacesSortField
|
|
292
|
+
from openapi_client.models.experimentalworkspace_list_response import ExperimentalworkspaceListResponse
|
|
293
|
+
from openapi_client.models.experimentalworkspace_response import ExperimentalworkspaceResponse
|
|
294
|
+
from openapi_client.models.external_service_status import ExternalServiceStatus
|
|
295
|
+
from openapi_client.models.external_service_status_response import ExternalServiceStatusResponse
|
|
296
|
+
from openapi_client.models.external_terminal_command import ExternalTerminalCommand
|
|
297
|
+
from openapi_client.models.externalservicestatusresponse_response import ExternalservicestatusresponseResponse
|
|
298
|
+
from openapi_client.models.feature_compatibility import FeatureCompatibility
|
|
299
|
+
from openapi_client.models.feature_flag_response import FeatureFlagResponse
|
|
300
|
+
from openapi_client.models.featureflagresponse_response import FeatureflagresponseResponse
|
|
301
|
+
from openapi_client.models.fine_tune_type import FineTuneType
|
|
302
|
+
from openapi_client.models.fine_tuned_model import FineTunedModel
|
|
303
|
+
from openapi_client.models.fine_tuning_job_status import FineTuningJobStatus
|
|
304
|
+
from openapi_client.models.finetunedmodel_list_response import FinetunedmodelListResponse
|
|
305
|
+
from openapi_client.models.finetunedmodel_response import FinetunedmodelResponse
|
|
306
|
+
from openapi_client.models.finish_ft_job_request import FinishFTJobRequest
|
|
307
|
+
from openapi_client.models.finish_ft_job_request_v2 import FinishFTJobRequestV2
|
|
308
|
+
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|
|
309
|
+
from openapi_client.models.gcp_memorystore_instance_config import GCPMemorystoreInstanceConfig
|
|
310
|
+
from openapi_client.models.grafana_dashboard import GrafanaDashboard
|
|
311
|
+
from openapi_client.models.grpc_protocol_config import GrpcProtocolConfig
|
|
312
|
+
from openapi_client.models.http_validation_error import HTTPValidationError
|
|
313
|
+
from openapi_client.models.ha_job_error_types import HaJobErrorTypes
|
|
314
|
+
from openapi_client.models.ha_job_event_level import HaJobEventLevel
|
|
315
|
+
from openapi_client.models.ha_job_event_origin import HaJobEventOrigin
|
|
316
|
+
from openapi_client.models.ha_job_goal_states import HaJobGoalStates
|
|
317
|
+
from openapi_client.models.ha_job_states import HaJobStates
|
|
318
|
+
from openapi_client.models.ha_job_type import HaJobType
|
|
319
|
+
from openapi_client.models.ha_jobs_sort_field import HaJobsSortField
|
|
320
|
+
from openapi_client.models.head_ip import HeadIp
|
|
321
|
+
from openapi_client.models.headip_response import HeadipResponse
|
|
322
|
+
from openapi_client.models.http_protocol_config import HttpProtocolConfig
|
|
323
|
+
from openapi_client.models.idle_termination_status import IdleTerminationStatus
|
|
324
|
+
from openapi_client.models.import_aica_model import ImportAicaModel
|
|
325
|
+
from openapi_client.models.instance_usage_budget import InstanceUsageBudget
|
|
326
|
+
from openapi_client.models.instance_usage_budget_evaluation_period import InstanceUsageBudgetEvaluationPeriod
|
|
327
|
+
from openapi_client.models.instanceusagebudget_list_response import InstanceusagebudgetListResponse
|
|
328
|
+
from openapi_client.models.instanceusagebudget_response import InstanceusagebudgetResponse
|
|
329
|
+
from openapi_client.models.integration_details import IntegrationDetails
|
|
330
|
+
from openapi_client.models.interactive_session_logs import InteractiveSessionLogs
|
|
331
|
+
from openapi_client.models.interactivesessionlogs_response import InteractivesessionlogsResponse
|
|
332
|
+
from openapi_client.models.internal_production_job import InternalProductionJob
|
|
333
|
+
from openapi_client.models.internalproductionjob_response import InternalproductionjobResponse
|
|
334
|
+
from openapi_client.models.invoice import Invoice
|
|
335
|
+
from openapi_client.models.invoice_list_response import InvoiceListResponse
|
|
336
|
+
from openapi_client.models.invoice_status import InvoiceStatus
|
|
337
|
+
from openapi_client.models.invoices_query import InvoicesQuery
|
|
338
|
+
from openapi_client.models.job_access import JobAccess
|
|
339
|
+
from openapi_client.models.job_queue import JobQueue
|
|
340
|
+
from openapi_client.models.job_queue_config import JobQueueConfig
|
|
341
|
+
from openapi_client.models.job_queue_execution_mode import JobQueueExecutionMode
|
|
342
|
+
from openapi_client.models.job_queue_spec import JobQueueSpec
|
|
343
|
+
from openapi_client.models.job_queue_state import JobQueueState
|
|
344
|
+
from openapi_client.models.job_queues_query import JobQueuesQuery
|
|
345
|
+
from openapi_client.models.job_run_type import JobRunType
|
|
346
|
+
from openapi_client.models.job_state_log_level_types import JobStateLogLevelTypes
|
|
347
|
+
from openapi_client.models.job_status import JobStatus
|
|
348
|
+
from openapi_client.models.job_submissions_sort_field import JobSubmissionsSortField
|
|
349
|
+
from openapi_client.models.jobqueue_response import JobqueueResponse
|
|
350
|
+
from openapi_client.models.jobs_logs import JobsLogs
|
|
351
|
+
from openapi_client.models.jobs_logs_query_info import JobsLogsQueryInfo
|
|
352
|
+
from openapi_client.models.jobs_sort_field import JobsSortField
|
|
353
|
+
from openapi_client.models.jobslogs_response import JobslogsResponse
|
|
354
|
+
from openapi_client.models.jobslogsqueryinfo_response import JobslogsqueryinfoResponse
|
|
355
|
+
from openapi_client.models.json_patch_operation import JsonPatchOperation
|
|
356
|
+
from openapi_client.models.kubernetes_manager_registration_request import KubernetesManagerRegistrationRequest
|
|
357
|
+
from openapi_client.models.kubernetes_manager_registration_response import KubernetesManagerRegistrationResponse
|
|
358
|
+
from openapi_client.models.kubernetesmanagerregistrationresponse_response import KubernetesmanagerregistrationresponseResponse
|
|
359
|
+
from openapi_client.models.lb_resource import LBResource
|
|
360
|
+
from openapi_client.models.lbresource_response import LbresourceResponse
|
|
361
|
+
from openapi_client.models.list_machine_pools_response import ListMachinePoolsResponse
|
|
362
|
+
from openapi_client.models.list_machines_response import ListMachinesResponse
|
|
363
|
+
from openapi_client.models.list_resource_quotas_query import ListResourceQuotasQuery
|
|
364
|
+
from openapi_client.models.list_response_metadata import ListResponseMetadata
|
|
365
|
+
from openapi_client.models.listmachinepoolsresponse_response import ListmachinepoolsresponseResponse
|
|
366
|
+
from openapi_client.models.listmachinesresponse_response import ListmachinesresponseResponse
|
|
367
|
+
from openapi_client.models.log_detail import LogDetail
|
|
368
|
+
from openapi_client.models.log_details import LogDetails
|
|
369
|
+
from openapi_client.models.log_download_config import LogDownloadConfig
|
|
370
|
+
from openapi_client.models.log_download_request import LogDownloadRequest
|
|
371
|
+
from openapi_client.models.log_download_result import LogDownloadResult
|
|
372
|
+
from openapi_client.models.log_file_chunk import LogFileChunk
|
|
373
|
+
from openapi_client.models.log_filter import LogFilter
|
|
374
|
+
from openapi_client.models.log_item import LogItem
|
|
375
|
+
from openapi_client.models.log_item_batch import LogItemBatch
|
|
376
|
+
from openapi_client.models.log_level_types import LogLevelTypes
|
|
377
|
+
from openapi_client.models.log_stream import LogStream
|
|
378
|
+
from openapi_client.models.logdetails_response import LogdetailsResponse
|
|
379
|
+
from openapi_client.models.logdownloadresult_response import LogdownloadresultResponse
|
|
380
|
+
from openapi_client.models.login_user_params import LoginUserParams
|
|
381
|
+
from openapi_client.models.logitembatch_response import LogitembatchResponse
|
|
382
|
+
from openapi_client.models.logs_output import LogsOutput
|
|
383
|
+
from openapi_client.models.logsoutput_response import LogsoutputResponse
|
|
384
|
+
from openapi_client.models.logstream_response import LogstreamResponse
|
|
385
|
+
from openapi_client.models.long_running_workload import LongRunningWorkload
|
|
386
|
+
from openapi_client.models.longrunningworkload_list_response import LongrunningworkloadListResponse
|
|
387
|
+
from openapi_client.models.machine_allocation_state import MachineAllocationState
|
|
388
|
+
from openapi_client.models.machine_connection_state import MachineConnectionState
|
|
389
|
+
from openapi_client.models.machine_info import MachineInfo
|
|
390
|
+
from openapi_client.models.machine_pool import MachinePool
|
|
391
|
+
from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
|
|
392
|
+
from openapi_client.models.metronome_dashboard_type import MetronomeDashboardType
|
|
393
|
+
from openapi_client.models.metronomecustomerinfomodel_list_response import MetronomecustomerinfomodelListResponse
|
|
394
|
+
from openapi_client.models.metronomecustomerinfomodel_response import MetronomecustomerinfomodelResponse
|
|
395
|
+
from openapi_client.models.mini_build import MiniBuild
|
|
396
|
+
from openapi_client.models.mini_cloud import MiniCloud
|
|
397
|
+
from openapi_client.models.mini_cluster import MiniCluster
|
|
398
|
+
from openapi_client.models.mini_compute_template import MiniComputeTemplate
|
|
399
|
+
from openapi_client.models.mini_compute_template_config import MiniComputeTemplateConfig
|
|
400
|
+
from openapi_client.models.mini_job_run import MiniJobRun
|
|
401
|
+
from openapi_client.models.mini_namespace import MiniNamespace
|
|
402
|
+
from openapi_client.models.mini_organization import MiniOrganization
|
|
403
|
+
from openapi_client.models.mini_production_job import MiniProductionJob
|
|
404
|
+
from openapi_client.models.mini_project import MiniProject
|
|
405
|
+
from openapi_client.models.mini_runtime_environment import MiniRuntimeEnvironment
|
|
406
|
+
from openapi_client.models.mini_schedule import MiniSchedule
|
|
407
|
+
from openapi_client.models.mini_user import MiniUser
|
|
408
|
+
from openapi_client.models.minibuild_list_response import MinibuildListResponse
|
|
409
|
+
from openapi_client.models.minicomputetemplate_list_response import MinicomputetemplateListResponse
|
|
410
|
+
from openapi_client.models.miniproject_list_response import MiniprojectListResponse
|
|
411
|
+
from openapi_client.models.monitor_logs_extension import MonitorLogsExtension
|
|
412
|
+
from openapi_client.models.nfs_mount_target import NFSMountTarget
|
|
413
|
+
from openapi_client.models.named_entity import NamedEntity
|
|
414
|
+
from openapi_client.models.node_registration_aws import NodeRegistrationAWS
|
|
415
|
+
from openapi_client.models.node_registration_gcp import NodeRegistrationGCP
|
|
416
|
+
from openapi_client.models.node_registration_k8_s import NodeRegistrationK8S
|
|
417
|
+
from openapi_client.models.node_registration_provisioned import NodeRegistrationProvisioned
|
|
418
|
+
from openapi_client.models.node_registration_v2 import NodeRegistrationV2
|
|
419
|
+
from openapi_client.models.node_type import NodeType
|
|
420
|
+
from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
|
|
421
|
+
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
|
422
|
+
from openapi_client.models.onboarding_user_cards_query import OnboardingUserCardsQuery
|
|
423
|
+
from openapi_client.models.organization import Organization
|
|
424
|
+
from openapi_client.models.organization_availability import OrganizationAvailability
|
|
425
|
+
from openapi_client.models.organization_collaborator import OrganizationCollaborator
|
|
426
|
+
from openapi_client.models.organization_configuration import OrganizationConfiguration
|
|
427
|
+
from openapi_client.models.organization_configuration_response import OrganizationConfigurationResponse
|
|
428
|
+
from openapi_client.models.organization_invitation import OrganizationInvitation
|
|
429
|
+
from openapi_client.models.organization_invitation_base import OrganizationInvitationBase
|
|
430
|
+
from openapi_client.models.organization_marketing_questions import OrganizationMarketingQuestions
|
|
431
|
+
from openapi_client.models.organization_permission_level import OrganizationPermissionLevel
|
|
432
|
+
from openapi_client.models.organization_project_collaborator import OrganizationProjectCollaborator
|
|
433
|
+
from openapi_client.models.organization_project_collaborator_value import OrganizationProjectCollaboratorValue
|
|
434
|
+
from openapi_client.models.organization_public_identifier import OrganizationPublicIdentifier
|
|
435
|
+
from openapi_client.models.organization_response import OrganizationResponse
|
|
436
|
+
from openapi_client.models.organization_summary import OrganizationSummary
|
|
437
|
+
from openapi_client.models.organization_usage_alert import OrganizationUsageAlert
|
|
438
|
+
from openapi_client.models.organization_usage_alert_severity import OrganizationUsageAlertSeverity
|
|
439
|
+
from openapi_client.models.organizationavailability_response import OrganizationavailabilityResponse
|
|
440
|
+
from openapi_client.models.organizationcollaborator_list_response import OrganizationcollaboratorListResponse
|
|
441
|
+
from openapi_client.models.organizationconfiguration_list_response import OrganizationconfigurationListResponse
|
|
442
|
+
from openapi_client.models.organizationconfigurationresponse_response import OrganizationconfigurationresponseResponse
|
|
443
|
+
from openapi_client.models.organizationinvitation_list_response import OrganizationinvitationListResponse
|
|
444
|
+
from openapi_client.models.organizationinvitation_response import OrganizationinvitationResponse
|
|
445
|
+
from openapi_client.models.organizationinvitationbase_response import OrganizationinvitationbaseResponse
|
|
446
|
+
from openapi_client.models.organizationprojectcollaborator_list_response import OrganizationprojectcollaboratorListResponse
|
|
447
|
+
from openapi_client.models.organizationpublicidentifier_response import OrganizationpublicidentifierResponse
|
|
448
|
+
from openapi_client.models.organizationusagealert_list_response import OrganizationusagealertListResponse
|
|
449
|
+
from openapi_client.models.page_query import PageQuery
|
|
450
|
+
from openapi_client.models.pause_schedule import PauseSchedule
|
|
451
|
+
from openapi_client.models.permission_level import PermissionLevel
|
|
452
|
+
from openapi_client.models.platform_fine_tuning_job import PlatformFineTuningJob
|
|
453
|
+
from openapi_client.models.platformfinetuningjob_list_response import PlatformfinetuningjobListResponse
|
|
454
|
+
from openapi_client.models.platformfinetuningjob_response import PlatformfinetuningjobResponse
|
|
455
|
+
from openapi_client.models.product_autoscaler_flag import ProductAutoscalerFlag
|
|
456
|
+
from openapi_client.models.product_type import ProductType
|
|
457
|
+
from openapi_client.models.productautoscalerflag_response import ProductautoscalerflagResponse
|
|
458
|
+
from openapi_client.models.production_job import ProductionJob
|
|
459
|
+
from openapi_client.models.production_job_config import ProductionJobConfig
|
|
460
|
+
from openapi_client.models.production_job_event import ProductionJobEvent
|
|
461
|
+
from openapi_client.models.production_job_event_scope_filter import ProductionJobEventScopeFilter
|
|
462
|
+
from openapi_client.models.production_job_state_transition import ProductionJobStateTransition
|
|
463
|
+
from openapi_client.models.productionjob_response import ProductionjobResponse
|
|
464
|
+
from openapi_client.models.productionjobevent_list_response import ProductionjobeventListResponse
|
|
465
|
+
from openapi_client.models.project import Project
|
|
466
|
+
from openapi_client.models.project_base import ProjectBase
|
|
467
|
+
from openapi_client.models.project_collaborator import ProjectCollaborator
|
|
468
|
+
from openapi_client.models.project_collaborator_value import ProjectCollaboratorValue
|
|
469
|
+
from openapi_client.models.project_collaborators_put_message import ProjectCollaboratorsPutMessage
|
|
470
|
+
from openapi_client.models.project_create_message import ProjectCreateMessage
|
|
471
|
+
from openapi_client.models.project_default_session_name import ProjectDefaultSessionName
|
|
472
|
+
from openapi_client.models.project_delete_message import ProjectDeleteMessage
|
|
473
|
+
from openapi_client.models.project_list_response import ProjectListResponse
|
|
474
|
+
from openapi_client.models.project_patch_message import ProjectPatchMessage
|
|
475
|
+
from openapi_client.models.project_response import ProjectResponse
|
|
476
|
+
from openapi_client.models.projectbase_response import ProjectbaseResponse
|
|
477
|
+
from openapi_client.models.projectcollaborator_list_response import ProjectcollaboratorListResponse
|
|
478
|
+
from openapi_client.models.projectdefaultsessionname_response import ProjectdefaultsessionnameResponse
|
|
479
|
+
from openapi_client.models.projects_sort_field import ProjectsSortField
|
|
480
|
+
from openapi_client.models.projects_violating_tree_hierarchy_response import ProjectsViolatingTreeHierarchyResponse
|
|
481
|
+
from openapi_client.models.projectsviolatingtreehierarchyresponse_response import ProjectsviolatingtreehierarchyresponseResponse
|
|
482
|
+
from openapi_client.models.protocols import Protocols
|
|
483
|
+
from openapi_client.models.provider_metadata import ProviderMetadata
|
|
484
|
+
from openapi_client.models.providermetadata_response import ProvidermetadataResponse
|
|
485
|
+
from openapi_client.models.python_modules import PythonModules
|
|
486
|
+
from openapi_client.models.quota import Quota
|
|
487
|
+
from openapi_client.models.ray_gcs_external_storage_config import RayGCSExternalStorageConfig
|
|
488
|
+
from openapi_client.models.ray_runtime_env_config import RayRuntimeEnvConfig
|
|
489
|
+
from openapi_client.models.read_billing_version import ReadBillingVersion
|
|
490
|
+
from openapi_client.models.readbillingversion_list_response import ReadbillingversionListResponse
|
|
491
|
+
from openapi_client.models.replica_details import ReplicaDetails
|
|
492
|
+
from openapi_client.models.replica_state import ReplicaState
|
|
493
|
+
from openapi_client.models.request_email_magic_link_response import RequestEmailMagicLinkResponse
|
|
494
|
+
from openapi_client.models.request_otp_return_api_model import RequestOTPReturnApiModel
|
|
495
|
+
from openapi_client.models.request_password_reset_params import RequestPasswordResetParams
|
|
496
|
+
from openapi_client.models.requestemailmagiclinkresponse_response import RequestemailmagiclinkresponseResponse
|
|
497
|
+
from openapi_client.models.requestotpreturnapimodel_response import RequestotpreturnapimodelResponse
|
|
498
|
+
from openapi_client.models.reset_password_params import ResetPasswordParams
|
|
499
|
+
from openapi_client.models.resource_quota import ResourceQuota
|
|
500
|
+
from openapi_client.models.resource_quota_status import ResourceQuotaStatus
|
|
501
|
+
from openapi_client.models.resourcequota_list_response import ResourcequotaListResponse
|
|
502
|
+
from openapi_client.models.resourcequota_response import ResourcequotaResponse
|
|
503
|
+
from openapi_client.models.resources import Resources
|
|
504
|
+
from openapi_client.models.resubmit_ft_job_request import ResubmitFTJobRequest
|
|
505
|
+
from openapi_client.models.rollback_service_model import RollbackServiceModel
|
|
506
|
+
from openapi_client.models.rollout_strategy import RolloutStrategy
|
|
507
|
+
from openapi_client.models.s3_download_location import S3DownloadLocation
|
|
508
|
+
from openapi_client.models.sso_login_info import SSOLoginInfo
|
|
509
|
+
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
|
510
|
+
from openapi_client.models.schedule_config import ScheduleConfig
|
|
511
|
+
from openapi_client.models.serve_deployment_grafana_dashboard_status import ServeDeploymentGrafanaDashboardStatus
|
|
512
|
+
from openapi_client.models.serve_deployment_logs import ServeDeploymentLogs
|
|
513
|
+
from openapi_client.models.serve_deployment_state import ServeDeploymentState
|
|
514
|
+
from openapi_client.models.servedeploymentlogs_response import ServedeploymentlogsResponse
|
|
515
|
+
from openapi_client.models.server_session_token import ServerSessionToken
|
|
516
|
+
from openapi_client.models.serversessiontoken_response import ServersessiontokenResponse
|
|
517
|
+
from openapi_client.models.service_config import ServiceConfig
|
|
518
|
+
from openapi_client.models.service_event_current_state import ServiceEventCurrentState
|
|
519
|
+
from openapi_client.models.service_event_level import ServiceEventLevel
|
|
520
|
+
from openapi_client.models.service_event_origin import ServiceEventOrigin
|
|
521
|
+
from openapi_client.models.service_event_scope import ServiceEventScope
|
|
522
|
+
from openapi_client.models.service_event_scope_filter import ServiceEventScopeFilter
|
|
523
|
+
from openapi_client.models.service_event_type import ServiceEventType
|
|
524
|
+
from openapi_client.models.service_event_verbose_message_model import ServiceEventVerboseMessageModel
|
|
525
|
+
from openapi_client.models.service_goal_states import ServiceGoalStates
|
|
526
|
+
from openapi_client.models.service_observability_urls import ServiceObservabilityUrls
|
|
527
|
+
from openapi_client.models.service_sort_field import ServiceSortField
|
|
528
|
+
from openapi_client.models.service_type import ServiceType
|
|
529
|
+
from openapi_client.models.service_usage import ServiceUsage
|
|
530
|
+
from openapi_client.models.service_version_state import ServiceVersionState
|
|
531
|
+
from openapi_client.models.serviceeventverbosemessagemodel_list_response import ServiceeventverbosemessagemodelListResponse
|
|
532
|
+
from openapi_client.models.session import Session
|
|
533
|
+
from openapi_client.models.session_access import SessionAccess
|
|
534
|
+
from openapi_client.models.session_autosync_sessions_update_message import SessionAutosyncSessionsUpdateMessage
|
|
535
|
+
from openapi_client.models.session_command import SessionCommand
|
|
536
|
+
from openapi_client.models.session_command_finish_options import SessionCommandFinishOptions
|
|
537
|
+
from openapi_client.models.session_command_id import SessionCommandId
|
|
538
|
+
from openapi_client.models.session_command_types import SessionCommandTypes
|
|
539
|
+
from openapi_client.models.session_create_message import SessionCreateMessage
|
|
540
|
+
from openapi_client.models.session_delete_message import SessionDeleteMessage
|
|
541
|
+
from openapi_client.models.session_describe import SessionDescribe
|
|
542
|
+
from openapi_client.models.session_details import SessionDetails
|
|
543
|
+
from openapi_client.models.session_event import SessionEvent
|
|
544
|
+
from openapi_client.models.session_event_cause import SessionEventCause
|
|
545
|
+
from openapi_client.models.session_event_types import SessionEventTypes
|
|
546
|
+
from openapi_client.models.session_execute_message import SessionExecuteMessage
|
|
547
|
+
from openapi_client.models.session_finish_command_message import SessionFinishCommandMessage
|
|
548
|
+
from openapi_client.models.session_history_item import SessionHistoryItem
|
|
549
|
+
from openapi_client.models.session_kill_command_message import SessionKillCommandMessage
|
|
550
|
+
from openapi_client.models.session_list_response import SessionListResponse
|
|
551
|
+
from openapi_client.models.session_patch_message import SessionPatchMessage
|
|
552
|
+
from openapi_client.models.session_response import SessionResponse
|
|
553
|
+
from openapi_client.models.session_ssh_key import SessionSshKey
|
|
554
|
+
from openapi_client.models.session_starting_up_data import SessionStartingUpData
|
|
555
|
+
from openapi_client.models.session_state import SessionState
|
|
556
|
+
from openapi_client.models.session_state_change_message import SessionStateChangeMessage
|
|
557
|
+
from openapi_client.models.session_state_data import SessionStateData
|
|
558
|
+
from openapi_client.models.session_stopping_data import SessionStoppingData
|
|
559
|
+
from openapi_client.models.sessioncommand_list_response import SessioncommandListResponse
|
|
560
|
+
from openapi_client.models.sessioncommandid_response import SessioncommandidResponse
|
|
561
|
+
from openapi_client.models.sessiondescribe_response import SessiondescribeResponse
|
|
562
|
+
from openapi_client.models.sessiondetails_response import SessiondetailsResponse
|
|
563
|
+
from openapi_client.models.sessionevent_list_response import SessioneventListResponse
|
|
564
|
+
from openapi_client.models.sessionhistoryitem_list_response import SessionhistoryitemListResponse
|
|
565
|
+
from openapi_client.models.sessions_sort_field import SessionsSortField
|
|
566
|
+
from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
|
|
567
|
+
from openapi_client.models.setup_initialize_session_options import SetupInitializeSessionOptions
|
|
568
|
+
from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
|
|
569
|
+
from openapi_client.models.showotpsourcereturnapimodel_response import ShowotpsourcereturnapimodelResponse
|
|
570
|
+
from openapi_client.models.snapshot_create_message import SnapshotCreateMessage
|
|
571
|
+
from openapi_client.models.snapshot_delete_message import SnapshotDeleteMessage
|
|
572
|
+
from openapi_client.models.snapshot_patch_message import SnapshotPatchMessage
|
|
573
|
+
from openapi_client.models.socket_message_schemas import SocketMessageSchemas
|
|
574
|
+
from openapi_client.models.socket_message_types import SocketMessageTypes
|
|
575
|
+
from openapi_client.models.socketmessageschemas_response import SocketmessageschemasResponse
|
|
576
|
+
from openapi_client.models.socketmessagetypes_response import SocketmessagetypesResponse
|
|
577
|
+
from openapi_client.models.sort_order import SortOrder
|
|
578
|
+
from openapi_client.models.ssologininfo_response import SsologininfoResponse
|
|
579
|
+
from openapi_client.models.start_session_options import StartSessionOptions
|
|
580
|
+
from openapi_client.models.stop_session_options import StopSessionOptions
|
|
581
|
+
from openapi_client.models.stream_publish_request import StreamPublishRequest
|
|
582
|
+
from openapi_client.models.subnet_id_with_availability_zone_aws import SubnetIdWithAvailabilityZoneAWS
|
|
583
|
+
from openapi_client.models.support_requests_query import SupportRequestsQuery
|
|
584
|
+
from openapi_client.models.templatized_compute_configs import TemplatizedComputeConfigs
|
|
585
|
+
from openapi_client.models.templatized_decorated_application_templates import TemplatizedDecoratedApplicationTemplates
|
|
586
|
+
from openapi_client.models.templatizedcomputeconfigs_response import TemplatizedcomputeconfigsResponse
|
|
587
|
+
from openapi_client.models.templatizeddecoratedapplicationtemplates_response import TemplatizeddecoratedapplicationtemplatesResponse
|
|
588
|
+
from openapi_client.models.text_query import TextQuery
|
|
589
|
+
from openapi_client.models.timestamped_logs_output import TimestampedLogsOutput
|
|
590
|
+
from openapi_client.models.timestampedlogsoutput_response import TimestampedlogsoutputResponse
|
|
591
|
+
from openapi_client.models.tool import Tool
|
|
592
|
+
from openapi_client.models.tracing_config import TracingConfig
|
|
593
|
+
from openapi_client.models.try_login_email_response import TryLoginEmailResponse
|
|
594
|
+
from openapi_client.models.tryloginemailresponse_response import TryloginemailresponseResponse
|
|
595
|
+
from openapi_client.models.ux_instance import UXInstance
|
|
596
|
+
from openapi_client.models.unified_job_sort_field import UnifiedJobSortField
|
|
597
|
+
from openapi_client.models.unified_job_status import UnifiedJobStatus
|
|
598
|
+
from openapi_client.models.unified_job_type import UnifiedJobType
|
|
599
|
+
from openapi_client.models.update_cloud_with_cloud_resource import UpdateCloudWithCloudResource
|
|
600
|
+
from openapi_client.models.update_cloud_with_cloud_resource_gcp import UpdateCloudWithCloudResourceGCP
|
|
601
|
+
from openapi_client.models.update_cluster_dns import UpdateClusterDns
|
|
602
|
+
from openapi_client.models.update_compute_template import UpdateComputeTemplate
|
|
603
|
+
from openapi_client.models.update_compute_template_config import UpdateComputeTemplateConfig
|
|
604
|
+
from openapi_client.models.update_endpoint import UpdateEndpoint
|
|
605
|
+
from openapi_client.models.update_machine_pool_request import UpdateMachinePoolRequest
|
|
606
|
+
from openapi_client.models.update_model_deployment import UpdateModelDeployment
|
|
607
|
+
from openapi_client.models.update_organization_collaborator import UpdateOrganizationCollaborator
|
|
608
|
+
from openapi_client.models.update_project_collaborator import UpdateProjectCollaborator
|
|
609
|
+
from openapi_client.models.update_resource_quota import UpdateResourceQuota
|
|
610
|
+
from openapi_client.models.updatemachinepoolresponse_response import UpdatemachinepoolresponseResponse
|
|
611
|
+
from openapi_client.models.upload_session_command_logs_locations import UploadSessionCommandLogsLocations
|
|
612
|
+
from openapi_client.models.uploadsessioncommandlogslocations_response import UploadsessioncommandlogslocationsResponse
|
|
613
|
+
from openapi_client.models.user_info import UserInfo
|
|
614
|
+
from openapi_client.models.user_resend_email_options import UserResendEmailOptions
|
|
615
|
+
from openapi_client.models.user_service_access_types import UserServiceAccessTypes
|
|
616
|
+
from openapi_client.models.userinfo_response import UserinfoResponse
|
|
617
|
+
from openapi_client.models.utm_fields import UtmFields
|
|
618
|
+
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
|
619
|
+
from openapi_client.models.validation_error import ValidationError
|
|
620
|
+
from openapi_client.models.verify_response import VerifyResponse
|
|
621
|
+
from openapi_client.models.verifyresponse_response import VerifyresponseResponse
|
|
622
|
+
from openapi_client.models.visibility import Visibility
|
|
623
|
+
from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
|
|
624
|
+
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
|
625
|
+
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|
|
626
|
+
from openapi_client.models.wand_b_run_details import WandBRunDetails
|
|
627
|
+
from openapi_client.models.web_terminal import WebTerminal
|
|
628
|
+
from openapi_client.models.webterminal_list_response import WebterminalListResponse
|
|
629
|
+
from openapi_client.models.webterminal_response import WebterminalResponse
|
|
630
|
+
from openapi_client.models.worker_node_type import WorkerNodeType
|
|
631
|
+
from openapi_client.models.workload_type import WorkloadType
|
|
632
|
+
from openapi_client.models.workspace_dataplane_artifact import WorkspaceDataplaneArtifact
|
|
633
|
+
from openapi_client.models.workspace_dataplane_artifacts import WorkspaceDataplaneArtifacts
|
|
634
|
+
from openapi_client.models.workspace_dataplane_proxied_artifacts import WorkspaceDataplaneProxiedArtifacts
|
|
635
|
+
from openapi_client.models.workspace_event import WorkspaceEvent
|
|
636
|
+
from openapi_client.models.workspace_event_source import WorkspaceEventSource
|
|
637
|
+
from openapi_client.models.workspace_event_source_filter import WorkspaceEventSourceFilter
|
|
638
|
+
from openapi_client.models.workspace_readme import WorkspaceReadme
|
|
639
|
+
from openapi_client.models.workspace_snapshot_states import WorkspaceSnapshotStates
|
|
640
|
+
from openapi_client.models.workspace_template import WorkspaceTemplate
|
|
641
|
+
from openapi_client.models.workspace_template_cluster_environment_metadata import WorkspaceTemplateClusterEnvironmentMetadata
|
|
642
|
+
from openapi_client.models.workspacedataplaneartifacts_response import WorkspacedataplaneartifactsResponse
|
|
643
|
+
from openapi_client.models.workspacedataplaneproxiedartifacts_response import WorkspacedataplaneproxiedartifactsResponse
|
|
644
|
+
from openapi_client.models.workspaceevent_list_response import WorkspaceeventListResponse
|
|
645
|
+
from openapi_client.models.workspacereadme_response import WorkspacereadmeResponse
|
|
646
|
+
from openapi_client.models.workspacetemplate_list_response import WorkspacetemplateListResponse
|
|
647
|
+
from openapi_client.models.workspacetemplateclusterenvironmentmetadata_response import WorkspacetemplateclusterenvironmentmetadataResponse
|
|
648
|
+
from openapi_client.models.write_cloud import WriteCloud
|
|
649
|
+
from openapi_client.models.write_cluster_config import WriteClusterConfig
|
|
650
|
+
from openapi_client.models.write_project import WriteProject
|
|
651
|
+
from openapi_client.models.write_session import WriteSession
|
|
652
|
+
from openapi_client.models.write_support_request import WriteSupportRequest
|