anyscale 0.5.149__tar.gz → 0.5.151__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anyscale-0.5.151/LICENSE +68 -0
- anyscale-0.5.151/NOTICE +6 -0
- {anyscale-0.5.149/anyscale.egg-info → anyscale-0.5.151}/PKG-INFO +2 -2
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/README.md +9 -7
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/__init__.py +7 -5
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/api/default_api.py +146 -159
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/__init__.py +7 -5
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_analytics_event.py +31 -3
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +2 -1
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +3 -1
- anyscale-0.5.151/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +670 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +29 -1
- anyscale-0.5.149/anyscale/client/openapi_client/models/fine_tuning_job_callback_product_request.py → anyscale-0.5.151/anyscale/client/openapi_client/models/finish_ft_job_request.py +46 -17
- anyscale-0.5.151/anyscale/client/openapi_client/models/grpc_protocol_config.py +178 -0
- anyscale-0.5.151/anyscale/client/openapi_client/models/http_protocol_config.py +150 -0
- anyscale-0.5.149/anyscale/client/openapi_client/models/product_fine_tuning_job.py → anyscale-0.5.151/anyscale/client/openapi_client/models/platform_fine_tuning_job.py +118 -63
- anyscale-0.5.149/anyscale/client/openapi_client/models/productfinetuningjob_list_response.py → anyscale-0.5.151/anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +15 -15
- anyscale-0.5.151/anyscale/client/openapi_client/models/platformfinetuningjob_response.py +121 -0
- anyscale-0.5.151/anyscale/client/openapi_client/models/protocols.py +150 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_config.py +31 -3
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/cloud_resource.py +40 -10
- anyscale-0.5.151/anyscale/commands/machine_commands.py +72 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/connect.py +1 -2
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/cloud_controller.py +124 -43
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/cloud_functional_verification_controller.py +3 -9
- anyscale-0.5.149/anyscale/controllers/machines_controller.py → anyscale-0.5.151/anyscale/controllers/machine_controller.py +8 -2
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/service_controller.py +3 -3
- anyscale-0.5.151/anyscale/formatters/service_formatter.py +29 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/scripts.py +2 -2
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/__init__.py +7 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/api/default_api.py +638 -28
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/__init__.py +7 -0
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/apply_service_model.py +406 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +2 -2
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +178 -0
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/http_protocol_config.py +150 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/list_service_model.py +34 -35
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +31 -3
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/protocols.py +150 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_config.py +31 -3
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/service_model.py +612 -0
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +147 -0
- anyscale-0.5.151/anyscale/sdk/anyscale_client/models/servicemodel_response.py +121 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/sdk.py +37 -8
- anyscale-0.5.151/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +40 -0
- anyscale-0.5.151/anyscale/shared_anyscale_utils/utils/ray_semver.py +63 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/util.py +1 -6
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/cloud_update_utils.py +5 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/cloud_utils.py +3 -1
- anyscale-0.5.151/anyscale/utils/ray_version_utils.py +45 -0
- anyscale-0.5.151/anyscale/version.py +1 -0
- {anyscale-0.5.149 → anyscale-0.5.151/anyscale.egg-info}/PKG-INFO +2 -2
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale.egg-info/SOURCES.txt +20 -7
- {anyscale-0.5.149 → anyscale-0.5.151}/setup.py +2 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_cloud_controller.py +2 -1
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_cloud_functional_verification_controller.py +1 -1
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_cluster_env_controller.py +22 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_machine_controller.py +4 -4
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_service_controller.py +4 -4
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/formatters/test_service_formatter.py +4 -4
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cloud_resource.py +51 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/utils/test_cloud_update_utils.py +3 -1
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/utils/test_cloud_utils.py +3 -1
- anyscale-0.5.149/anyscale/client/openapi_client/models/apply_service_config.py +0 -122
- anyscale-0.5.149/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -348
- anyscale-0.5.149/anyscale/client/openapi_client/models/productfinetuningjob_response.py +0 -121
- anyscale-0.5.149/anyscale/commands/machines_commands.py +0 -44
- anyscale-0.5.149/anyscale/formatters/service_formatter.py +0 -56
- anyscale-0.5.149/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -32
- anyscale-0.5.149/anyscale/version.py +0 -1
- {anyscale-0.5.149 → anyscale-0.5.151}/.covrc +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/README.md +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/exceptions/log_retrieval_errors.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/authenticate.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/background/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/cli_logger.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/.gitignore +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aica_endpoint.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aica_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aica_model_configuration.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/autosync_session_id.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/autosyncsessionid_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/autosyncsessionid_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_credentials.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/baseimagesenum.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/body_upload_file_api_v2_files_post.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_structured_output.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/file_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/filemodel_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/fine_tuning_job_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/historical_cost_granularity.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/historical_costs.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/historicalcosts_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/node_registration_sagemaker.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/product_autoscaler_flag.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/productautoscalerflag_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/resource_historical_costs.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/stripe_checkout_session_url_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/structured_output.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/structuredoutput_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/templatized_compute_configs.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_endpoint.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_model_deployment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/verify_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/verifyresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/setup.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/client/tox.ini +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/cluster_env.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/cloud_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/job_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/conf.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/feature_flags.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/fingerprint.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/integrations.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/links.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/models/job_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/models/service_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/compute_template_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/snapshot.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/snapshot_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/tables.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/s3.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale/workspace.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/requirements.in +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/setup.cfg +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/api_utils/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/api_utils/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/api_utils/test_job_logs_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/api_utils/test_logs_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/commands/test_cloud_command.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/conftest.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/__init__.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_compute_config_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_job_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/formatters/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/deployment_manager_resources_get.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_apis_disabled.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/proxy_only_subnet_missing.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/proxy_only_subnet_no_subnets.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/proxy_only_subnet_present.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/proxy_only_subnet_wrong_vpc.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_memorystore.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_memorystore_happy.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_memorystore_read_replica_disabled.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_memorystore_standard_tier.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/regional_memorystore_tls_enabled.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/service_get.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/sdk/test_upload_working_dir.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_authenticate.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_aws_iam_policies.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cli_logger.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cli_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cloud.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cluster.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_cluster_env.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_component_activity.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_connect.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_imports_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_init.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_integrations.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_job_output.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_network_utils.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_project.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_runtime_env.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_s3.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_snapshot_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/test_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/utils/BUILD.bazel +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/utils/test_cli_version_check_util.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/utils/test_cluster_debug.py +0 -0
- {anyscale-0.5.149 → anyscale-0.5.151}/tests/utils/test_workspace_utils.py +0 -0
anyscale-0.5.151/LICENSE
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
AS License
|
|
2
|
+
|
|
3
|
+
Copyright (2023) Anyscale, Inc.
|
|
4
|
+
|
|
5
|
+
Definitions.
|
|
6
|
+
|
|
7
|
+
Agreement: The agreement between Anyscale, Inc. and you governing the use of
|
|
8
|
+
the Anyscale Services, located at www.anyscale.com/terms unless you have
|
|
9
|
+
entered into a separate written agreement with Anyscale governing the use of
|
|
10
|
+
the applicable Anyscale Services, in which case such agreement shall be the
|
|
11
|
+
“Agreement”.
|
|
12
|
+
|
|
13
|
+
Documentation: any documentation provided with the Software.
|
|
14
|
+
|
|
15
|
+
Modification Right: if the Pointer File includes a statement indicating that
|
|
16
|
+
the modification right applies, the Scope of Use also includes a right to
|
|
17
|
+
modify the Software, subject to any restrictions set forth in the Pointer
|
|
18
|
+
File or Documentation; if the Pointer File is silent as to a Modification
|
|
19
|
+
Right applying or states that one does not apply, none shall apply.
|
|
20
|
+
|
|
21
|
+
Pointer File: the license and/or notice file that points to this AS-License
|
|
22
|
+
provided with or in connection with access to the Software.
|
|
23
|
+
|
|
24
|
+
Software: The source code and object code to which this license applies.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
General. Your downloading or use of the Software will be deemed your approval
|
|
28
|
+
of these terms (“AS-License”). You acknowledge and agree that Anyscale may
|
|
29
|
+
update this AS-License from time to time at any time by posting an updated
|
|
30
|
+
version of these terms on anyscale.com/as-license and that your continued use
|
|
31
|
+
of the Software following an updated version being posted will constitute
|
|
32
|
+
consent to such changes and such use shall be subject to the current published
|
|
33
|
+
version of the AS-License. If you do not agree to these AS-License terms, you
|
|
34
|
+
may not view or make any use of the Software.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Scope of Use. You may not use this Software except in connection with your use
|
|
38
|
+
of the Anyscale Services pursuant to the Agreement. Your use of the Software
|
|
39
|
+
must comply at all times with any restrictions applicable to the Anyscale
|
|
40
|
+
Services generally and must be used in accordance with any applicable
|
|
41
|
+
documentation. Without limiting the foregoing, you may view, use, and copy, and
|
|
42
|
+
if the Pointer File includes a Modification Right, modify (subject to any
|
|
43
|
+
restrictions set forth in the Modification Right), the Software solely for the
|
|
44
|
+
purposes of using the code within or connecting to the Anyscale Services in
|
|
45
|
+
compliance with the Documentation.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
Termination. This AS-License terminates automatically upon your breach of these
|
|
49
|
+
terms or upon the termination of your Agreement. Additionally, Anyscale may
|
|
50
|
+
terminate this AS-License at any time on notice (including by posting a notice
|
|
51
|
+
on anyscale.com/as-license). Upon termination, you must permanently delete the
|
|
52
|
+
Software and all copies thereof.
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
DISCLAIMER; LIMITATION OF LIABILITY.
|
|
57
|
+
|
|
58
|
+
THE SOFTWARE IS PROVIDED “AS-IS” AND WITH ALL FAULTS. ANYSCALE, ON BEHALF OF
|
|
59
|
+
ITSELF AND ITS LICENSORS, SPECIFICALLY DISCLAIMS ALL WARRANTIES RELATING TO THE
|
|
60
|
+
SOFTWARE, EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, IMPLIED
|
|
61
|
+
WARRANTIES, CONDITIONS AND OTHER TERMS OF MERCHANTABILITY, SATISFACTORY QUALITY
|
|
62
|
+
OR FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. ANYSCALE AND ITS
|
|
63
|
+
LICENSORS TOTAL AGGREGATE LIABILITY RELATING TO OR ARISING OUT OF YOUR USE OF
|
|
64
|
+
OR ANYSCALE’S PROVISIONING OF THE SOFTWARE SHALL BE LIMITED TO ONE THOUSAND
|
|
65
|
+
($1,000) DOLLARS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
66
|
+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
67
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
|
68
|
+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
anyscale-0.5.151/NOTICE
ADDED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: anyscale
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.151
|
|
4
4
|
Summary: Command Line Interface for Anyscale
|
|
5
5
|
Home-page: UNKNOWN
|
|
6
6
|
Author: Anyscale Inc.
|
|
7
|
-
License:
|
|
7
|
+
License: AS License
|
|
8
8
|
Description: # Anyscale
|
|
9
9
|
|
|
10
10
|
This package contains the command line interface and the sdk for the Anyscale platform.
|
|
@@ -78,8 +78,7 @@ Class | Method | HTTP request | Description
|
|
|
78
78
|
------------ | ------------- | ------------- | -------------
|
|
79
79
|
*DefaultApi* | [**alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put**](docs/DefaultApi.md#alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put) | **PUT** /api/v2/organization_collaborators/{identity_id} | Alter Organization Collaborator
|
|
80
80
|
*DefaultApi* | [**alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put**](docs/DefaultApi.md#alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put) | **PUT** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Alter Project Collaborator
|
|
81
|
-
*DefaultApi* | [**
|
|
82
|
-
*DefaultApi* | [**apply_service_v2_api_v2_services_v2_apply_put**](docs/DefaultApi.md#apply_service_v2_api_v2_services_v2_apply_put) | **PUT** /api/v2/services-v2/apply | Apply Service V2
|
|
81
|
+
*DefaultApi* | [**apply_service_api_v2_services_v2_apply_put**](docs/DefaultApi.md#apply_service_api_v2_services_v2_apply_put) | **PUT** /api/v2/services-v2/apply | Apply Service
|
|
83
82
|
*DefaultApi* | [**archive_aica_endpoint_api_v2_aica_endpoints_endpoint_id_delete**](docs/DefaultApi.md#archive_aica_endpoint_api_v2_aica_endpoints_endpoint_id_delete) | **DELETE** /api/v2/aica_endpoints/{endpoint_id} | Archive Aica Endpoint
|
|
84
83
|
*DefaultApi* | [**archive_cluster_api_v2_decorated_sessions_cluster_id_archive_post**](docs/DefaultApi.md#archive_cluster_api_v2_decorated_sessions_cluster_id_archive_post) | **POST** /api/v2/decorated_sessions/{cluster_id}/archive | Archive Cluster
|
|
85
84
|
*DefaultApi* | [**archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post**](docs/DefaultApi.md#archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post) | **POST** /api/v2/compute_templates/{compute_template_id}/archive | Archive Compute Template
|
|
@@ -192,6 +191,7 @@ Class | Method | HTTP request | Description
|
|
|
192
191
|
*DefaultApi* | [**get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get**](docs/DefaultApi.md#get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get) | **GET** /api/v2/logs/job_logs_stream/{job_id} | Get Job Logs Stream
|
|
193
192
|
*DefaultApi* | [**get_log_files_api_v2_logs_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_logs_get_log_files_post) | **POST** /api/v2/logs/get_log_files | Get Log Files
|
|
194
193
|
*DefaultApi* | [**get_log_files_api_v2_sessions_session_id_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_sessions_session_id_get_log_files_post) | **POST** /api/v2/sessions/{session_id}/get_log_files | Get Log Files
|
|
194
|
+
*DefaultApi* | [**get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get**](docs/DefaultApi.md#get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get) | **GET** /api/v2/organization_billing/manage_billing_url | Get Manage Billing Url
|
|
195
195
|
*DefaultApi* | [**get_model_configuration_api_v2_aica_endpoints_model_config_get**](docs/DefaultApi.md#get_model_configuration_api_v2_aica_endpoints_model_config_get) | **GET** /api/v2/aica_endpoints/model_config | Get Model Configuration
|
|
196
196
|
*DefaultApi* | [**get_model_schema_api_v2_aica_endpoints_model_schema_get**](docs/DefaultApi.md#get_model_schema_api_v2_aica_endpoints_model_schema_get) | **GET** /api/v2/aica_endpoints/model_schema | Get Model Schema
|
|
197
197
|
*DefaultApi* | [**get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get**](docs/DefaultApi.md#get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs | Get Monitor Logs
|
|
@@ -370,7 +370,6 @@ Class | Method | HTTP request | Description
|
|
|
370
370
|
- [AppconfigResponse](docs/AppconfigResponse.md)
|
|
371
371
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
372
372
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
373
|
-
- [ApplyServiceConfig](docs/ApplyServiceConfig.md)
|
|
374
373
|
- [ArchiveStatus](docs/ArchiveStatus.md)
|
|
375
374
|
- [ArchivedLogsInfo](docs/ArchivedLogsInfo.md)
|
|
376
375
|
- [ArchivedlogsinfoResponse](docs/ArchivedlogsinfoResponse.md)
|
|
@@ -567,12 +566,13 @@ Class | Method | HTTP request | Description
|
|
|
567
566
|
- [FeatureflagresponseResponse](docs/FeatureflagresponseResponse.md)
|
|
568
567
|
- [FileModel](docs/FileModel.md)
|
|
569
568
|
- [FilemodelResponse](docs/FilemodelResponse.md)
|
|
570
|
-
- [FineTuningJobCallbackProductRequest](docs/FineTuningJobCallbackProductRequest.md)
|
|
571
569
|
- [FineTuningJobStatus](docs/FineTuningJobStatus.md)
|
|
570
|
+
- [FinishFTJobRequest](docs/FinishFTJobRequest.md)
|
|
572
571
|
- [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
|
|
573
572
|
- [GCPMemorystoreInstanceConfig](docs/GCPMemorystoreInstanceConfig.md)
|
|
574
573
|
- [GCPNodeDisk](docs/GCPNodeDisk.md)
|
|
575
574
|
- [GCPNodeOptions](docs/GCPNodeOptions.md)
|
|
575
|
+
- [GrpcProtocolConfig](docs/GrpcProtocolConfig.md)
|
|
576
576
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
577
577
|
- [HaJobGoalStates](docs/HaJobGoalStates.md)
|
|
578
578
|
- [HaJobStates](docs/HaJobStates.md)
|
|
@@ -583,6 +583,7 @@ Class | Method | HTTP request | Description
|
|
|
583
583
|
- [HistoricalCostGranularity](docs/HistoricalCostGranularity.md)
|
|
584
584
|
- [HistoricalCosts](docs/HistoricalCosts.md)
|
|
585
585
|
- [HistoricalcostsListResponse](docs/HistoricalcostsListResponse.md)
|
|
586
|
+
- [HttpProtocolConfig](docs/HttpProtocolConfig.md)
|
|
586
587
|
- [IamInstanceProfileSpecification](docs/IamInstanceProfileSpecification.md)
|
|
587
588
|
- [IdleTerminationStatus](docs/IdleTerminationStatus.md)
|
|
588
589
|
- [IntegrationDetails](docs/IntegrationDetails.md)
|
|
@@ -668,12 +669,12 @@ Class | Method | HTTP request | Description
|
|
|
668
669
|
- [PageQuery](docs/PageQuery.md)
|
|
669
670
|
- [PauseSchedule](docs/PauseSchedule.md)
|
|
670
671
|
- [PermissionLevel](docs/PermissionLevel.md)
|
|
672
|
+
- [PlatformFineTuningJob](docs/PlatformFineTuningJob.md)
|
|
673
|
+
- [PlatformfinetuningjobListResponse](docs/PlatformfinetuningjobListResponse.md)
|
|
674
|
+
- [PlatformfinetuningjobResponse](docs/PlatformfinetuningjobResponse.md)
|
|
671
675
|
- [ProductAutoscalerFlag](docs/ProductAutoscalerFlag.md)
|
|
672
|
-
- [ProductFineTuningJob](docs/ProductFineTuningJob.md)
|
|
673
676
|
- [ProductType](docs/ProductType.md)
|
|
674
677
|
- [ProductautoscalerflagResponse](docs/ProductautoscalerflagResponse.md)
|
|
675
|
-
- [ProductfinetuningjobListResponse](docs/ProductfinetuningjobListResponse.md)
|
|
676
|
-
- [ProductfinetuningjobResponse](docs/ProductfinetuningjobResponse.md)
|
|
677
678
|
- [ProductionJob](docs/ProductionJob.md)
|
|
678
679
|
- [ProductionJobConfig](docs/ProductionJobConfig.md)
|
|
679
680
|
- [ProductionJobStateTransition](docs/ProductionJobStateTransition.md)
|
|
@@ -695,6 +696,7 @@ Class | Method | HTTP request | Description
|
|
|
695
696
|
- [ProjectsSortField](docs/ProjectsSortField.md)
|
|
696
697
|
- [ProjectsViolatingTreeHierarchyResponse](docs/ProjectsViolatingTreeHierarchyResponse.md)
|
|
697
698
|
- [ProjectsviolatingtreehierarchyresponseResponse](docs/ProjectsviolatingtreehierarchyresponseResponse.md)
|
|
699
|
+
- [Protocols](docs/Protocols.md)
|
|
698
700
|
- [ProviderMetadata](docs/ProviderMetadata.md)
|
|
699
701
|
- [ProvidermetadataResponse](docs/ProvidermetadataResponse.md)
|
|
700
702
|
- [PythonModules](docs/PythonModules.md)
|
|
@@ -52,7 +52,6 @@ from openapi_client.models.app_config_config_schema import AppConfigConfigSchema
|
|
|
52
52
|
from openapi_client.models.appconfig_response import AppconfigResponse
|
|
53
53
|
from openapi_client.models.applied_snapshot import AppliedSnapshot
|
|
54
54
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
55
|
-
from openapi_client.models.apply_service_config import ApplyServiceConfig
|
|
56
55
|
from openapi_client.models.archive_status import ArchiveStatus
|
|
57
56
|
from openapi_client.models.archived_logs_info import ArchivedLogsInfo
|
|
58
57
|
from openapi_client.models.archivedlogsinfo_response import ArchivedlogsinfoResponse
|
|
@@ -249,12 +248,13 @@ from openapi_client.models.feature_flag_response import FeatureFlagResponse
|
|
|
249
248
|
from openapi_client.models.featureflagresponse_response import FeatureflagresponseResponse
|
|
250
249
|
from openapi_client.models.file_model import FileModel
|
|
251
250
|
from openapi_client.models.filemodel_response import FilemodelResponse
|
|
252
|
-
from openapi_client.models.fine_tuning_job_callback_product_request import FineTuningJobCallbackProductRequest
|
|
253
251
|
from openapi_client.models.fine_tuning_job_status import FineTuningJobStatus
|
|
252
|
+
from openapi_client.models.finish_ft_job_request import FinishFTJobRequest
|
|
254
253
|
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|
|
255
254
|
from openapi_client.models.gcp_memorystore_instance_config import GCPMemorystoreInstanceConfig
|
|
256
255
|
from openapi_client.models.gcp_node_disk import GCPNodeDisk
|
|
257
256
|
from openapi_client.models.gcp_node_options import GCPNodeOptions
|
|
257
|
+
from openapi_client.models.grpc_protocol_config import GrpcProtocolConfig
|
|
258
258
|
from openapi_client.models.http_validation_error import HTTPValidationError
|
|
259
259
|
from openapi_client.models.ha_job_goal_states import HaJobGoalStates
|
|
260
260
|
from openapi_client.models.ha_job_states import HaJobStates
|
|
@@ -265,6 +265,7 @@ from openapi_client.models.headip_response import HeadipResponse
|
|
|
265
265
|
from openapi_client.models.historical_cost_granularity import HistoricalCostGranularity
|
|
266
266
|
from openapi_client.models.historical_costs import HistoricalCosts
|
|
267
267
|
from openapi_client.models.historicalcosts_list_response import HistoricalcostsListResponse
|
|
268
|
+
from openapi_client.models.http_protocol_config import HttpProtocolConfig
|
|
268
269
|
from openapi_client.models.iam_instance_profile_specification import IamInstanceProfileSpecification
|
|
269
270
|
from openapi_client.models.idle_termination_status import IdleTerminationStatus
|
|
270
271
|
from openapi_client.models.integration_details import IntegrationDetails
|
|
@@ -350,12 +351,12 @@ from openapi_client.models.organizationprojectcollaborator_list_response import
|
|
|
350
351
|
from openapi_client.models.page_query import PageQuery
|
|
351
352
|
from openapi_client.models.pause_schedule import PauseSchedule
|
|
352
353
|
from openapi_client.models.permission_level import PermissionLevel
|
|
354
|
+
from openapi_client.models.platform_fine_tuning_job import PlatformFineTuningJob
|
|
355
|
+
from openapi_client.models.platformfinetuningjob_list_response import PlatformfinetuningjobListResponse
|
|
356
|
+
from openapi_client.models.platformfinetuningjob_response import PlatformfinetuningjobResponse
|
|
353
357
|
from openapi_client.models.product_autoscaler_flag import ProductAutoscalerFlag
|
|
354
|
-
from openapi_client.models.product_fine_tuning_job import ProductFineTuningJob
|
|
355
358
|
from openapi_client.models.product_type import ProductType
|
|
356
359
|
from openapi_client.models.productautoscalerflag_response import ProductautoscalerflagResponse
|
|
357
|
-
from openapi_client.models.productfinetuningjob_list_response import ProductfinetuningjobListResponse
|
|
358
|
-
from openapi_client.models.productfinetuningjob_response import ProductfinetuningjobResponse
|
|
359
360
|
from openapi_client.models.production_job import ProductionJob
|
|
360
361
|
from openapi_client.models.production_job_config import ProductionJobConfig
|
|
361
362
|
from openapi_client.models.production_job_state_transition import ProductionJobStateTransition
|
|
@@ -377,6 +378,7 @@ from openapi_client.models.projectdefaultsessionname_response import Projectdefa
|
|
|
377
378
|
from openapi_client.models.projects_sort_field import ProjectsSortField
|
|
378
379
|
from openapi_client.models.projects_violating_tree_hierarchy_response import ProjectsViolatingTreeHierarchyResponse
|
|
379
380
|
from openapi_client.models.projectsviolatingtreehierarchyresponse_response import ProjectsviolatingtreehierarchyresponseResponse
|
|
381
|
+
from openapi_client.models.protocols import Protocols
|
|
380
382
|
from openapi_client.models.provider_metadata import ProviderMetadata
|
|
381
383
|
from openapi_client.models.providermetadata_response import ProvidermetadataResponse
|
|
382
384
|
from openapi_client.models.python_modules import PythonModules
|