anyscale 0.24.5__tar.gz → 0.24.7__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.24.5 → anyscale-0.24.7}/BUILD.bazel +2 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/PKG-INFO +1 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/__init__.py +0 -2
- anyscale-0.24.7/anyscale/_private/anyscale_client/README.md +16 -0
- anyscale-0.24.7/anyscale/_private/anyscale_client/__init__.py +8 -0
- anyscale-0.24.7/anyscale/_private/anyscale_client/anyscale_client.py +523 -0
- anyscale-0.24.7/anyscale/_private/anyscale_client/common.py +217 -0
- anyscale-0.24.7/anyscale/_private/anyscale_client/fake_anyscale_client.py +306 -0
- anyscale-0.24.7/anyscale/_private/models/__init__.py +2 -0
- anyscale-0.24.7/anyscale/_private/models/model_base.py +87 -0
- anyscale-0.24.7/anyscale/_private/models/workload_config.py +85 -0
- anyscale-0.24.7/anyscale/_private/sdk/__init__.py +25 -0
- anyscale-0.24.7/anyscale/_private/sdk/workload_sdk.py +271 -0
- anyscale-0.24.7/anyscale/anyscale-cloud-setup-gcp-oa.yaml +122 -0
- anyscale-0.24.7/anyscale/anyscale-cloud-setup-oa.yaml +269 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/logs_util.py +1 -25
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/README.md +2 -5
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/__init__.py +2 -3
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/api/default_api.py +16 -238
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/__init__.py +2 -3
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/baseimagesenum.py +31 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/compute_template_query.py +2 -2
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_user.py +29 -3
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_queue_config.py +23 -23
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/replica_state.py +2 -1
- anyscale-0.24.7/anyscale/client/openapi_client/models/request_email_magic_link_response.py +147 -0
- anyscale-0.24.7/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +121 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +31 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/job_commands.py +46 -94
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/service_commands.py +61 -24
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/cloud_controller.py +14 -3
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/cloud_functional_verification_controller.py +5 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/compute_config_controller.py +12 -4
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/job_controller.py +14 -141
- anyscale-0.24.7/anyscale/job/__init__.py +2 -0
- anyscale-0.24.7/anyscale/job/_private/job_sdk.py +117 -0
- anyscale-0.24.7/anyscale/job/commands.py +11 -0
- anyscale-0.24.7/anyscale/job/models.py +34 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/models/job_model.py +6 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +31 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +2 -2
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/compute_template_query.py +2 -2
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job_queue_config.py +23 -23
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +31 -1
- anyscale-0.24.7/anyscale/service/__init__.py +2 -0
- anyscale-0.24.7/anyscale/service/_private/service_sdk.py +362 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/service/commands.py +8 -21
- anyscale-0.24.7/anyscale/service/models.py +194 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/util.py +10 -14
- anyscale-0.24.7/anyscale/version.py +1 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/PKG-INFO +1 -1
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/SOURCES.txt +59 -34
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/BUILD.bazel +1 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/api_utils/test_logs_util.py +1 -28
- anyscale-0.24.7/tests/cloud_formation_template_oa.txt +507 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_cloud_controller.py +4 -3
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_job_controller.py +37 -165
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_util.py +11 -6
- anyscale-0.24.7/tests/unit/BUILD.bazel +23 -0
- anyscale-0.24.7/tests/unit/common.py +86 -0
- {anyscale-0.24.5/tests/service → anyscale-0.24.7/tests/unit}/test_anyscale_client.py +352 -72
- anyscale-0.24.7/tests/unit/test_files/BUILD.bazel +47 -0
- anyscale-0.24.7/tests/unit/test_files/containerfiles/Containerfile +2 -0
- anyscale-0.24.7/tests/unit/test_files/job_config_files/full.yaml +10 -0
- anyscale-0.24.7/tests/unit/test_files/job_config_files/minimal.yaml +1 -0
- anyscale-0.24.7/tests/unit/test_files/job_config_files/points_to_requirements_file.yaml +2 -0
- anyscale-0.24.7/tests/unit/test_files/job_config_files/unrecognized_option.yaml +2 -0
- anyscale-0.24.7/tests/unit/test_files/service_config_files/empty.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/service_config_files}/full.yaml +2 -0
- anyscale-0.24.7/tests/unit/test_files/working_dirs/symlink_to_basic/hi.txt +1 -0
- anyscale-0.24.7/tests/unit/test_files/working_dirs/symlink_to_basic/main.py +7 -0
- anyscale-0.24.7/tests/unit/test_job_cli.py +209 -0
- anyscale-0.24.7/tests/unit/test_job_models.py +198 -0
- anyscale-0.24.7/tests/unit/test_job_sdk.py +659 -0
- anyscale-0.24.7/tests/unit/test_model_base.py +148 -0
- anyscale-0.24.5/tests/service/test_cli.py → anyscale-0.24.7/tests/unit/test_service_cli.py +70 -26
- anyscale-0.24.5/tests/service/test_models.py → anyscale-0.24.7/tests/unit/test_service_models.py +78 -181
- anyscale-0.24.5/tests/service/test_sdk.py → anyscale-0.24.7/tests/unit/test_service_sdk.py +515 -187
- anyscale-0.24.7/tests/unit/test_workload_config.py +129 -0
- anyscale-0.24.5/anyscale/client/openapi_client/models/create_structured_output.py +0 -181
- anyscale-0.24.5/anyscale/client/openapi_client/models/structured_output.py +0 -297
- anyscale-0.24.5/anyscale/client/openapi_client/models/structuredoutput_response.py +0 -121
- anyscale-0.24.5/anyscale/job.py +0 -108
- anyscale-0.24.5/anyscale/service/__init__.py +0 -2
- anyscale-0.24.5/anyscale/service/_private/anyscale_client.py +0 -833
- anyscale-0.24.5/anyscale/service/_private/sdk.py +0 -467
- anyscale-0.24.5/anyscale/service/models.py +0 -459
- anyscale-0.24.5/anyscale/version.py +0 -1
- anyscale-0.24.5/tests/service/BUILD.bazel +0 -44
- anyscale-0.24.5/tests/test_init.py +0 -5
- anyscale-0.24.5/tests/test_job_output.py +0 -113
- {anyscale-0.24.5 → anyscale-0.24.7}/.covrc +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/LICENSE +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/NOTICE +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/README.md +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/MANIFEST.in +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/exceptions/log_retrieval_errors.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/authenticate.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/background/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/cli_logger.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/.gitignore +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/access_mode.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_endpoint.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_endpoint_event.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_endpoint_event_level.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_endpoint_event_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_endpoint_scope.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_model_configuration.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aica_observability_urls.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aicamodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aicamodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/alert_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/autosync_session_id.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/autosyncsessionid_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/autosyncsessionid_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_credentials.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/body_upload_file_api_v2_files_post.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/buffer_registration.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/file_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/filemodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/fine_tuning_job_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/finish_ft_job_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/import_aica_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/named_entity.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/node_registration_sagemaker.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_public_identifier.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationpublicidentifier_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/platform_fine_tuning_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/platformfinetuningjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/presigned_upload_file.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/presigned_upload_file_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/product_autoscaler_flag.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/productautoscalerflag_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/stripe_checkout_session_url_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/templatized_compute_configs.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_endpoint.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_model_deployment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/verify_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/verifyresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/setup.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/client/tox.ini +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/cluster_env.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/cloud_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/fine_tune_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/conf.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/connect.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/fine_tune_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/feature_flags.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/fingerprint.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/integrations.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/links.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/models/fine_tune_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/models/service_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/scripts.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/apply_service_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/snapshot.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/snapshot_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/tables.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/s3.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale/workspace.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/requirements.in +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/setup.cfg +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/setup.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/api_utils/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/api_utils/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/api_utils/test_job_logs_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/commands/test_cloud_command.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/conftest.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/__init__.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_cluster_env_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_compute_config_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_machine_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_machine_pool_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/controllers/test_service_controller.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/formatters/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/deployment_manager_resources_get.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/global_firewall_with_private_service_rule.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/global_firewall_with_service_rule.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/global_firewall_without_service_rule.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_apis_disabled.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/proxy_only_subnet_missing.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/proxy_only_subnet_no_subnets.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/proxy_only_subnet_present.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/proxy_only_subnet_wrong_vpc.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_memorystore.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_memorystore_happy.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_memorystore_read_replica_disabled.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_memorystore_standard_tier.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/regional_memorystore_tls_enabled.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/service_get.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/sdk/test_upload_working_dir.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_authenticate.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_aws_iam_policies.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cli_logger.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cli_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cloud.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cloud_resource.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cluster.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_cluster_env.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_component_activity.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_connect.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_imports_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_integrations.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_network_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_project.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_runtime_env.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_s3.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/test_snapshot_util.py +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/job_config_files}/empty.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_requirements_files → anyscale-0.24.7/tests/unit/test_files/requirements_files}/comments.txt +0 -0
- {anyscale-0.24.5/tests/service/test_requirements_files → anyscale-0.24.7/tests/unit/test_files/requirements_files}/empty.txt +0 -0
- {anyscale-0.24.5/tests/service/test_requirements_files → anyscale-0.24.7/tests/unit/test_files/requirements_files}/multi_line.txt +0 -0
- {anyscale-0.24.5/tests/service/test_requirements_files → anyscale-0.24.7/tests/unit/test_files/requirements_files}/multi_line_with_whitespace.txt +0 -0
- {anyscale-0.24.5/tests/service/test_requirements_files → anyscale-0.24.7/tests/unit/test_files/requirements_files}/single_line.txt +0 -0
- {anyscale-0.24.5/tests/service/test_requirements_files → anyscale-0.24.7/tests/unit/test_files/requirements_files}/test_workspace_requirements.txt +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/service_config_files}/minimal.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/service_config_files}/multiple_applications.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/service_config_files}/name_and_gibberish.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/service_config_files}/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_config_files → anyscale-0.24.7/tests/unit/test_files/service_config_files}/unrecognized_option.yaml +0 -0
- {anyscale-0.24.5/tests/service/test_working_dirs → anyscale-0.24.7/tests/unit/test_files/working_dirs}/basic/hi.txt +0 -0
- {anyscale-0.24.5/tests/service/test_working_dirs → anyscale-0.24.7/tests/unit/test_files/working_dirs}/basic/main.py +0 -0
- {anyscale-0.24.5/tests/service/test_working_dirs → anyscale-0.24.7/tests/unit/test_files/working_dirs}/nested/requirements.txt +0 -0
- {anyscale-0.24.5/tests/service/test_working_dirs → anyscale-0.24.7/tests/unit/test_files/working_dirs}/nested/subdir/app.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/utils/BUILD.bazel +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/utils/test_cli_version_check_util.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/utils/test_cloud_update_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/utils/test_cloud_utils.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/utils/test_cluster_debug.py +0 -0
- {anyscale-0.24.5 → anyscale-0.24.7}/tests/utils/test_workspace_utils.py +0 -0
|
@@ -7,6 +7,7 @@ filegroup(
|
|
|
7
7
|
"README.md",
|
|
8
8
|
"anyscale/anyscale-cloud-setup.yaml",
|
|
9
9
|
"anyscale/anyscale-cloud-setup-gcp.yaml",
|
|
10
|
+
"anyscale/anyscale-cloud-setup-oa.yaml",
|
|
10
11
|
"anyscale/webterminal/bash-preexec.sh",
|
|
11
12
|
"requirements.in",
|
|
12
13
|
"setup.py",
|
|
@@ -20,6 +21,7 @@ py_library(
|
|
|
20
21
|
data = [
|
|
21
22
|
"anyscale/anyscale-cloud-setup.yaml",
|
|
22
23
|
"anyscale/anyscale-cloud-setup-gcp.yaml",
|
|
24
|
+
"anyscale/anyscale-cloud-setup-oa.yaml",
|
|
23
25
|
"anyscale/shared_anyscale_utils/default_anyscale_aws.yaml",
|
|
24
26
|
"anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml",
|
|
25
27
|
"anyscale/webterminal/bash-preexec.sh",
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Anyscale Client
|
|
2
|
+
|
|
3
|
+
This directory contains a client wrapper that should be used for all communication with the Anyscale HTTP REST API.
|
|
4
|
+
The purpose of centralizing this logic is to:
|
|
5
|
+
|
|
6
|
+
- Avoid duplicating code.
|
|
7
|
+
- Keep all external dependencies in one place.
|
|
8
|
+
- Enable writing comprehensive unit tests for upstream components (without using mocks!) using the `FakeAnyscaleClient`.
|
|
9
|
+
|
|
10
|
+
## Testing
|
|
11
|
+
|
|
12
|
+
The `AnyscaleClient` is tested using a fake version of the internal and external OpenAPI clients.
|
|
13
|
+
|
|
14
|
+
Upstream components should use the `FakeAnyscaleClient` to write their tests.
|
|
15
|
+
This client should mirror the behavior of the real `AnyscaleClient` as closely as possible (avoid making methods and functionality
|
|
16
|
+
complete "dummies").
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
from anyscale._private.anyscale_client.anyscale_client import AnyscaleClient
|
|
2
|
+
from anyscale._private.anyscale_client.common import (
|
|
3
|
+
AnyscaleClientInterface,
|
|
4
|
+
DEFAULT_PYTHON_VERSION,
|
|
5
|
+
DEFAULT_RAY_VERSION,
|
|
6
|
+
WORKSPACE_CLUSTER_NAME_PREFIX,
|
|
7
|
+
)
|
|
8
|
+
from anyscale._private.anyscale_client.fake_anyscale_client import FakeAnyscaleClient
|
|
@@ -0,0 +1,523 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import os
|
|
3
|
+
import pathlib
|
|
4
|
+
import re
|
|
5
|
+
import time
|
|
6
|
+
from typing import Callable, Dict, List, Optional, Tuple
|
|
7
|
+
|
|
8
|
+
import requests
|
|
9
|
+
|
|
10
|
+
from anyscale._private.anyscale_client.common import (
|
|
11
|
+
AnyscaleClientInterface,
|
|
12
|
+
DEFAULT_PYTHON_VERSION,
|
|
13
|
+
DEFAULT_RAY_VERSION,
|
|
14
|
+
RUNTIME_ENV_PACKAGE_FORMAT,
|
|
15
|
+
)
|
|
16
|
+
from anyscale.authenticate import AuthenticationBlock, get_auth_api_client
|
|
17
|
+
from anyscale.cli_logger import BlockLogger
|
|
18
|
+
from anyscale.client.openapi_client.api.default_api import DefaultApi as InternalApi
|
|
19
|
+
from anyscale.client.openapi_client.models import (
|
|
20
|
+
ArchiveStatus,
|
|
21
|
+
CloudDataBucketFileType,
|
|
22
|
+
CloudDataBucketPresignedUploadInfo,
|
|
23
|
+
CloudDataBucketPresignedUploadRequest,
|
|
24
|
+
ComputeTemplateConfig,
|
|
25
|
+
ComputeTemplateQuery,
|
|
26
|
+
CreateComputeTemplate,
|
|
27
|
+
CreateInternalProductionJob,
|
|
28
|
+
DecoratedComputeTemplate,
|
|
29
|
+
InternalProductionJob,
|
|
30
|
+
)
|
|
31
|
+
from anyscale.cluster_compute import parse_cluster_compute_name_version
|
|
32
|
+
from anyscale.sdk.anyscale_client.api.default_api import DefaultApi as ExternalApi
|
|
33
|
+
from anyscale.sdk.anyscale_client.models import (
|
|
34
|
+
ApplyServiceModel,
|
|
35
|
+
Cloud,
|
|
36
|
+
Cluster,
|
|
37
|
+
ClusterCompute,
|
|
38
|
+
ClusterComputeConfig,
|
|
39
|
+
ClusterEnvironment,
|
|
40
|
+
ClusterEnvironmentBuild,
|
|
41
|
+
ClusterEnvironmentBuildStatus,
|
|
42
|
+
Project,
|
|
43
|
+
RollbackServiceModel,
|
|
44
|
+
ServiceModel,
|
|
45
|
+
)
|
|
46
|
+
from anyscale.sdk.anyscale_client.models.create_cluster_environment import (
|
|
47
|
+
CreateClusterEnvironment,
|
|
48
|
+
)
|
|
49
|
+
from anyscale.sdk.anyscale_client.models.create_cluster_environment_build import (
|
|
50
|
+
CreateClusterEnvironmentBuild,
|
|
51
|
+
)
|
|
52
|
+
from anyscale.sdk.anyscale_client.rest import ApiException
|
|
53
|
+
from anyscale.util import (
|
|
54
|
+
get_cluster_model_for_current_workspace,
|
|
55
|
+
get_endpoint,
|
|
56
|
+
is_anyscale_workspace,
|
|
57
|
+
)
|
|
58
|
+
from anyscale.utils.runtime_env import (
|
|
59
|
+
is_workspace_dependency_tracking_disabled,
|
|
60
|
+
WORKSPACE_REQUIREMENTS_FILE_PATH,
|
|
61
|
+
zip_local_dir,
|
|
62
|
+
)
|
|
63
|
+
from anyscale.utils.workspace_notification import (
|
|
64
|
+
WORKSPACE_NOTIFICATION_ADDRESS,
|
|
65
|
+
WorkspaceNotification,
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
block_logger = BlockLogger()
|
|
70
|
+
logger = logging.getLogger(__name__)
|
|
71
|
+
|
|
72
|
+
WORKSPACE_ID_ENV_VAR = "ANYSCALE_EXPERIMENTAL_WORKSPACE_ID"
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
class AnyscaleClient(AnyscaleClientInterface):
|
|
76
|
+
# Number of entries to fetch per request for list endpoints.
|
|
77
|
+
LIST_ENDPOINT_COUNT = 50
|
|
78
|
+
|
|
79
|
+
def __init__(
|
|
80
|
+
self,
|
|
81
|
+
*,
|
|
82
|
+
api_clients: Optional[Tuple[ExternalApi, InternalApi]] = None,
|
|
83
|
+
sleep: Optional[Callable[[float], None]] = None,
|
|
84
|
+
workspace_requirements_file_path: str = WORKSPACE_REQUIREMENTS_FILE_PATH,
|
|
85
|
+
):
|
|
86
|
+
if api_clients is None:
|
|
87
|
+
auth_block: AuthenticationBlock = get_auth_api_client(
|
|
88
|
+
raise_structured_exception=True
|
|
89
|
+
)
|
|
90
|
+
api_clients = (auth_block.anyscale_api_client, auth_block.api_client)
|
|
91
|
+
|
|
92
|
+
self._external_api_client, self._internal_api_client = api_clients
|
|
93
|
+
self._workspace_requirements_file_path = workspace_requirements_file_path
|
|
94
|
+
self._sleep = sleep or time.sleep
|
|
95
|
+
|
|
96
|
+
# Cached IDs and models to avoid duplicate lookups.
|
|
97
|
+
self._default_project_id: Optional[str] = None
|
|
98
|
+
self._cloud_id_cache: Dict[Optional[str], str] = {}
|
|
99
|
+
self._current_workspace_cluster: Optional[Cluster] = None
|
|
100
|
+
|
|
101
|
+
def get_job_ui_url(self, job_id: str) -> str:
|
|
102
|
+
return get_endpoint(f"/jobs/{job_id}")
|
|
103
|
+
|
|
104
|
+
def get_service_ui_url(self, service_id: str) -> str:
|
|
105
|
+
return get_endpoint(f"/services/{service_id}")
|
|
106
|
+
|
|
107
|
+
def get_current_workspace_id(self) -> Optional[str]:
|
|
108
|
+
return os.environ.get(WORKSPACE_ID_ENV_VAR, None)
|
|
109
|
+
|
|
110
|
+
def inside_workspace(self) -> bool:
|
|
111
|
+
return self.get_current_workspace_id() is not None
|
|
112
|
+
|
|
113
|
+
def get_workspace_requirements_path(self) -> Optional[str]:
|
|
114
|
+
if (
|
|
115
|
+
not self.inside_workspace()
|
|
116
|
+
or is_workspace_dependency_tracking_disabled()
|
|
117
|
+
or not pathlib.Path(self._workspace_requirements_file_path).is_file()
|
|
118
|
+
):
|
|
119
|
+
return None
|
|
120
|
+
|
|
121
|
+
return self._workspace_requirements_file_path
|
|
122
|
+
|
|
123
|
+
def get_current_workspace_cluster(self) -> Optional[Cluster]:
|
|
124
|
+
# Checks for the existence of the ANYSCALE_EXPERIMENTAL_WORKSPACE_ID env var.
|
|
125
|
+
if not is_anyscale_workspace():
|
|
126
|
+
return None
|
|
127
|
+
|
|
128
|
+
if self._current_workspace_cluster is None:
|
|
129
|
+
# Picks up the cluster ID from the ANYSCALE_SESSION_ID env var.
|
|
130
|
+
self._current_workspace_cluster = get_cluster_model_for_current_workspace(
|
|
131
|
+
self._external_api_client
|
|
132
|
+
)
|
|
133
|
+
|
|
134
|
+
return self._current_workspace_cluster
|
|
135
|
+
|
|
136
|
+
def get_project_id(self) -> str:
|
|
137
|
+
workspace_cluster = self.get_current_workspace_cluster()
|
|
138
|
+
if workspace_cluster is not None:
|
|
139
|
+
return workspace_cluster.project_id
|
|
140
|
+
|
|
141
|
+
if self._default_project_id is None:
|
|
142
|
+
default_project: Project = self._external_api_client.get_default_project().result
|
|
143
|
+
self._default_project_id = default_project.id
|
|
144
|
+
|
|
145
|
+
return self._default_project_id
|
|
146
|
+
|
|
147
|
+
def _get_cloud_id_for_compute_config_id(self, compute_config_id: str) -> str:
|
|
148
|
+
cluster_compute: ClusterCompute = self._external_api_client.get_cluster_compute(
|
|
149
|
+
compute_config_id
|
|
150
|
+
).result
|
|
151
|
+
cluster_compute_config: ClusterComputeConfig = cluster_compute.config
|
|
152
|
+
return cluster_compute_config.cloud_id
|
|
153
|
+
|
|
154
|
+
def get_cloud_id(
|
|
155
|
+
self, cloud_name: Optional[str] = None, compute_config_id: Optional[str] = None
|
|
156
|
+
) -> Optional[str]:
|
|
157
|
+
if cloud_name is not None:
|
|
158
|
+
raise NotImplementedError("Only default cloud is currently implemented.")
|
|
159
|
+
|
|
160
|
+
if compute_config_id is not None:
|
|
161
|
+
return self._get_cloud_id_for_compute_config_id(compute_config_id)
|
|
162
|
+
|
|
163
|
+
if cloud_name in self._cloud_id_cache:
|
|
164
|
+
return self._cloud_id_cache[cloud_name]
|
|
165
|
+
|
|
166
|
+
workspace_cluster = self.get_current_workspace_cluster()
|
|
167
|
+
if workspace_cluster is not None:
|
|
168
|
+
# NOTE(edoakes): the Cluster model has a compute_config_config model that includes
|
|
169
|
+
# its cloud ID, but it's not always populated.
|
|
170
|
+
# TODO(edoakes): add cloud_id to the Cluster model to avoid a second RTT.
|
|
171
|
+
cloud_id = self._get_cloud_id_for_compute_config_id(
|
|
172
|
+
workspace_cluster.cluster_compute_id
|
|
173
|
+
)
|
|
174
|
+
else:
|
|
175
|
+
result: Cloud = self._external_api_client.get_default_cloud().result
|
|
176
|
+
cloud_id = result.id
|
|
177
|
+
|
|
178
|
+
self._cloud_id_cache[cloud_name] = cloud_id
|
|
179
|
+
return cloud_id
|
|
180
|
+
|
|
181
|
+
def create_anonymous_compute_config(self, config: ComputeTemplateConfig) -> str:
|
|
182
|
+
return self._internal_api_client.create_compute_template_api_v2_compute_templates_post(
|
|
183
|
+
create_compute_template=CreateComputeTemplate(
|
|
184
|
+
config=config, anonymous=True,
|
|
185
|
+
)
|
|
186
|
+
).result.id
|
|
187
|
+
|
|
188
|
+
def get_compute_config(
|
|
189
|
+
self, compute_config_id: str
|
|
190
|
+
) -> Optional[DecoratedComputeTemplate]:
|
|
191
|
+
try:
|
|
192
|
+
cluster_compute: ClusterCompute = self._internal_api_client.get_compute_template_api_v2_compute_templates_template_id_get(
|
|
193
|
+
compute_config_id
|
|
194
|
+
).result
|
|
195
|
+
return cluster_compute
|
|
196
|
+
except ApiException as e:
|
|
197
|
+
if e.status == 404:
|
|
198
|
+
return None
|
|
199
|
+
|
|
200
|
+
raise e from None
|
|
201
|
+
|
|
202
|
+
def get_compute_config_id(
|
|
203
|
+
self, compute_config_name: Optional[str] = None
|
|
204
|
+
) -> Optional[str]:
|
|
205
|
+
if compute_config_name is not None:
|
|
206
|
+
name, version = parse_cluster_compute_name_version(compute_config_name)
|
|
207
|
+
if version is None:
|
|
208
|
+
# Setting `version=-1` will return only the latest version if there are multiple.
|
|
209
|
+
version = -1
|
|
210
|
+
cluster_computes = self._internal_api_client.search_compute_templates_api_v2_compute_templates_search_post(
|
|
211
|
+
ComputeTemplateQuery(
|
|
212
|
+
orgwide=True,
|
|
213
|
+
name={"equals": name},
|
|
214
|
+
include_anonymous=True,
|
|
215
|
+
archive_status=ArchiveStatus.NOT_ARCHIVED,
|
|
216
|
+
version=version,
|
|
217
|
+
)
|
|
218
|
+
).results
|
|
219
|
+
|
|
220
|
+
if len(cluster_computes) == 0:
|
|
221
|
+
return None
|
|
222
|
+
|
|
223
|
+
compute_template: DecoratedComputeTemplate = cluster_computes[0]
|
|
224
|
+
return compute_template.id
|
|
225
|
+
|
|
226
|
+
# If the compute config name is not provided, we pick an appropriate default.
|
|
227
|
+
#
|
|
228
|
+
# - If running in a workspace:
|
|
229
|
+
# * If auto_select_worker_config enabled: we switch over to a standardized
|
|
230
|
+
# default compute config (copying over any cluster-level attributes, e.g.
|
|
231
|
+
# max-gpus).
|
|
232
|
+
# * Otherwise, we use the workspace's compute config.
|
|
233
|
+
#
|
|
234
|
+
# - Otherwise, we use the default compute config provided by the API.
|
|
235
|
+
|
|
236
|
+
workspace_cluster = self.get_current_workspace_cluster()
|
|
237
|
+
if workspace_cluster is not None:
|
|
238
|
+
workspace_compute_config: DecoratedComputeTemplate = self.get_compute_config(
|
|
239
|
+
workspace_cluster.cluster_compute_id
|
|
240
|
+
)
|
|
241
|
+
workspace_config: ClusterComputeConfig = workspace_compute_config.config
|
|
242
|
+
if workspace_config.auto_select_worker_config:
|
|
243
|
+
standard_template = self._build_standard_compute_template_from_existing_auto_config(
|
|
244
|
+
workspace_config
|
|
245
|
+
)
|
|
246
|
+
return self.create_anonymous_compute_config(standard_template)
|
|
247
|
+
else:
|
|
248
|
+
return workspace_cluster.cluster_compute_id
|
|
249
|
+
|
|
250
|
+
# NOTE(edoakes): for some reason the API endpoint is called "cluster compute" but this
|
|
251
|
+
# is the non-deprecated API to use for compute configs.
|
|
252
|
+
return self._external_api_client.get_default_cluster_compute().result.id
|
|
253
|
+
|
|
254
|
+
def _build_standard_compute_template_from_existing_auto_config(
|
|
255
|
+
self, compute_config: ClusterComputeConfig
|
|
256
|
+
) -> ComputeTemplateConfig:
|
|
257
|
+
"""
|
|
258
|
+
Build a standard compute template config from an existing compute config.
|
|
259
|
+
|
|
260
|
+
1. Pull the default compute template config.
|
|
261
|
+
2. Disable scheduling on the head node.
|
|
262
|
+
3. Enable auto_select_worker_config.
|
|
263
|
+
4. Copy any cluster-level flags from the provided compute config to the template.
|
|
264
|
+
"""
|
|
265
|
+
# Retrieve the default cluster compute config for the cloud.
|
|
266
|
+
default_compute_template: DecoratedComputeTemplate = self._external_api_client.get_default_cluster_compute(
|
|
267
|
+
cloud_id=compute_config.cloud_id,
|
|
268
|
+
).result.config
|
|
269
|
+
|
|
270
|
+
# Disable head node scheduling.
|
|
271
|
+
if default_compute_template.head_node_type.resources is None:
|
|
272
|
+
default_compute_template.head_node_type.resources = {}
|
|
273
|
+
default_compute_template.head_node_type.resources["CPU"] = 0
|
|
274
|
+
|
|
275
|
+
# Ensure auto_select_worker_config is enabled.
|
|
276
|
+
default_compute_template.auto_select_worker_config = True
|
|
277
|
+
|
|
278
|
+
# Copy flags set at a cluster level over to the workspace.
|
|
279
|
+
#
|
|
280
|
+
# NOTE (shomilj): If there are more attributes we want to
|
|
281
|
+
# persist from the provided compute config --> the compute
|
|
282
|
+
# config used for deploying the service, we should copy them
|
|
283
|
+
# over here.
|
|
284
|
+
default_compute_template.flags = compute_config.flags
|
|
285
|
+
|
|
286
|
+
return default_compute_template
|
|
287
|
+
|
|
288
|
+
def get_cluster_env_build_image_uri(
|
|
289
|
+
self, cluster_env_build_id: str
|
|
290
|
+
) -> Optional[str]:
|
|
291
|
+
try:
|
|
292
|
+
build: ClusterEnvironmentBuild = self._external_api_client.get_cluster_environment_build(
|
|
293
|
+
cluster_env_build_id
|
|
294
|
+
).result
|
|
295
|
+
return build.docker_image_name
|
|
296
|
+
except ApiException as e:
|
|
297
|
+
if e.status == 404:
|
|
298
|
+
return None
|
|
299
|
+
|
|
300
|
+
raise e from None
|
|
301
|
+
|
|
302
|
+
def get_default_build_id(self) -> str:
|
|
303
|
+
"""Get default build id.
|
|
304
|
+
|
|
305
|
+
If running in a workspace, it will return the workspace's cluster environment build ID.
|
|
306
|
+
Else it will return the default cluster environment build ID.
|
|
307
|
+
"""
|
|
308
|
+
workspace_cluster = self.get_current_workspace_cluster()
|
|
309
|
+
if workspace_cluster is not None:
|
|
310
|
+
return workspace_cluster.cluster_environment_build_id
|
|
311
|
+
result: ClusterEnvironmentBuild = self._external_api_client.get_default_cluster_environment_build(
|
|
312
|
+
DEFAULT_PYTHON_VERSION, DEFAULT_RAY_VERSION,
|
|
313
|
+
).result
|
|
314
|
+
return result.id
|
|
315
|
+
|
|
316
|
+
@staticmethod
|
|
317
|
+
def _get_cluster_env_name_from_image_uri(image_uri: str) -> str:
|
|
318
|
+
if len(image_uri) == 0:
|
|
319
|
+
raise ValueError("image_uri cannot be empty.")
|
|
320
|
+
|
|
321
|
+
pattern = re.compile("^[A-Za-z0-9_-]+$")
|
|
322
|
+
# Keep only characters that match the pattern
|
|
323
|
+
escaped = []
|
|
324
|
+
for c in image_uri:
|
|
325
|
+
if not pattern.match(c):
|
|
326
|
+
escaped.append("-")
|
|
327
|
+
else:
|
|
328
|
+
escaped.append(c)
|
|
329
|
+
return "".join(escaped)
|
|
330
|
+
|
|
331
|
+
def _get_cluster_env_by_name(self, name: str) -> Optional[ClusterEnvironment]:
|
|
332
|
+
cluster_envs = self._external_api_client.search_cluster_environments(
|
|
333
|
+
{
|
|
334
|
+
"name": {"equals": name},
|
|
335
|
+
"paging": {"count": 1},
|
|
336
|
+
"include_anonymous": True,
|
|
337
|
+
}
|
|
338
|
+
).results
|
|
339
|
+
return cluster_envs[0] if cluster_envs else None
|
|
340
|
+
|
|
341
|
+
def _wait_for_build_to_succeed(
|
|
342
|
+
self, build_id: str, poll_interval_seconds=3, timeout_secs=3600,
|
|
343
|
+
):
|
|
344
|
+
"""Periodically check the status of the build operation until it completes.
|
|
345
|
+
Raise a RuntimeError if the build fails or cancelled.
|
|
346
|
+
Raise a TimeoutError if the build does not complete within the timeout.
|
|
347
|
+
"""
|
|
348
|
+
elapsed_secs = 0
|
|
349
|
+
block_logger.info(f"Waiting for image build ({build_id}) to complete.")
|
|
350
|
+
while elapsed_secs < timeout_secs:
|
|
351
|
+
build = self._external_api_client.get_cluster_environment_build(
|
|
352
|
+
build_id
|
|
353
|
+
).result
|
|
354
|
+
if build.status == ClusterEnvironmentBuildStatus.SUCCEEDED:
|
|
355
|
+
return
|
|
356
|
+
elif build.status == ClusterEnvironmentBuildStatus.FAILED:
|
|
357
|
+
raise RuntimeError(f"Image build {build_id} failed.")
|
|
358
|
+
elif build.status == ClusterEnvironmentBuildStatus.CANCELED:
|
|
359
|
+
raise RuntimeError(f"Image build {build_id} unexpectedly cancelled.")
|
|
360
|
+
|
|
361
|
+
elapsed_secs += poll_interval_seconds
|
|
362
|
+
block_logger.info(
|
|
363
|
+
f"Waiting for image build to complete. Elapsed time: {elapsed_secs} seconds",
|
|
364
|
+
)
|
|
365
|
+
self._sleep(poll_interval_seconds)
|
|
366
|
+
raise TimeoutError(
|
|
367
|
+
f"Timed out waiting for image build {build_id} to complete after {timeout_secs}s."
|
|
368
|
+
)
|
|
369
|
+
|
|
370
|
+
def _find_or_create_cluster_env(self, cluster_env_name: str) -> ClusterEnvironment:
|
|
371
|
+
existing_cluster_env = self._get_cluster_env_by_name(cluster_env_name)
|
|
372
|
+
if existing_cluster_env is not None:
|
|
373
|
+
return existing_cluster_env
|
|
374
|
+
|
|
375
|
+
# this creates a cluster env only and it does not trigger a build to avoid the race condition
|
|
376
|
+
# when creating a cluster environment and a build at the same time and then list builds for the cluster environment later.
|
|
377
|
+
# ```
|
|
378
|
+
# cluster_env == self._external_api_client.create_cluster_environment(..., image_uri=image_uri)
|
|
379
|
+
# build == self._external_api_client.create_cluster_environment_build(..., cluster_env_id=cluster_env.id)
|
|
380
|
+
# ```
|
|
381
|
+
# The race condition can happen if another build for the same cluster envrionment is created between the two calls.
|
|
382
|
+
cluster_environment = self._external_api_client.create_cluster_environment(
|
|
383
|
+
CreateClusterEnvironment(name=cluster_env_name, anonymous=True)
|
|
384
|
+
).result
|
|
385
|
+
return cluster_environment
|
|
386
|
+
|
|
387
|
+
def get_cluster_env_build_id_from_containerfile(
|
|
388
|
+
self, cluster_env_name: str, containerfile: str
|
|
389
|
+
) -> str:
|
|
390
|
+
cluster_env = self._find_or_create_cluster_env(cluster_env_name)
|
|
391
|
+
cluster_env_builds = self._external_api_client.list_cluster_environment_builds(
|
|
392
|
+
cluster_environment_id=cluster_env.id, count=self.LIST_ENDPOINT_COUNT
|
|
393
|
+
).results
|
|
394
|
+
for build in cluster_env_builds:
|
|
395
|
+
if (
|
|
396
|
+
build.status == ClusterEnvironmentBuildStatus.SUCCEEDED
|
|
397
|
+
and build.containerfile == containerfile
|
|
398
|
+
):
|
|
399
|
+
return build.id
|
|
400
|
+
|
|
401
|
+
build_op = self._external_api_client.create_cluster_environment_build(
|
|
402
|
+
CreateClusterEnvironmentBuild(
|
|
403
|
+
cluster_environment_id=cluster_env.id, containerfile=containerfile,
|
|
404
|
+
)
|
|
405
|
+
).result
|
|
406
|
+
|
|
407
|
+
self._wait_for_build_to_succeed(build_op.cluster_environment_build_id)
|
|
408
|
+
|
|
409
|
+
return build_op.cluster_environment_build_id
|
|
410
|
+
|
|
411
|
+
def get_cluster_env_build_id(self, image_uri: str) -> str:
|
|
412
|
+
cluster_env_name = self._get_cluster_env_name_from_image_uri(image_uri)
|
|
413
|
+
cluster_env = self._find_or_create_cluster_env(cluster_env_name)
|
|
414
|
+
|
|
415
|
+
# since we encode the image_uri into the cluster env name, there should exist one and only one build that matches the image_uri.
|
|
416
|
+
cluster_env_builds = self._external_api_client.list_cluster_environment_builds(
|
|
417
|
+
cluster_environment_id=cluster_env.id, count=1
|
|
418
|
+
).results
|
|
419
|
+
build = cluster_env_builds[0] if cluster_env_builds else None
|
|
420
|
+
if (
|
|
421
|
+
build is not None
|
|
422
|
+
and build.docker_image_name == image_uri
|
|
423
|
+
and build.status == ClusterEnvironmentBuildStatus.SUCCEEDED
|
|
424
|
+
):
|
|
425
|
+
return build.id
|
|
426
|
+
|
|
427
|
+
# Still create a new build if the cluster env already exists but the build does not match the image_uri.
|
|
428
|
+
result = self._external_api_client.create_cluster_environment_build(
|
|
429
|
+
CreateClusterEnvironmentBuild(
|
|
430
|
+
# For historical reasons, we have to use docker_image_name instead of image_uri; but it is just a URI to the image.
|
|
431
|
+
cluster_environment_id=cluster_env.id,
|
|
432
|
+
docker_image_name=image_uri,
|
|
433
|
+
)
|
|
434
|
+
).result
|
|
435
|
+
|
|
436
|
+
assert result.completed
|
|
437
|
+
return result.cluster_environment_build_id
|
|
438
|
+
|
|
439
|
+
def send_workspace_notification(
|
|
440
|
+
self, notification: WorkspaceNotification,
|
|
441
|
+
):
|
|
442
|
+
if not self.inside_workspace():
|
|
443
|
+
return
|
|
444
|
+
|
|
445
|
+
try:
|
|
446
|
+
r = requests.post(WORKSPACE_NOTIFICATION_ADDRESS, json=notification.dict())
|
|
447
|
+
r.raise_for_status()
|
|
448
|
+
except Exception:
|
|
449
|
+
logger.exception(
|
|
450
|
+
"Failed to send workspace notification. "
|
|
451
|
+
"This should not happen, so please contact Anyscale support."
|
|
452
|
+
)
|
|
453
|
+
|
|
454
|
+
def get_service(self, name: str) -> Optional[ServiceModel]:
|
|
455
|
+
# TODO(edoakes): this endpoint is very slow and there's no reason we should need
|
|
456
|
+
# to use this complex list endpoint just to fetch a service by name.
|
|
457
|
+
paging_token = None
|
|
458
|
+
project_id = self.get_project_id()
|
|
459
|
+
service: Optional[ServiceModel] = None
|
|
460
|
+
while True:
|
|
461
|
+
resp = self._external_api_client.list_services(
|
|
462
|
+
project_id=project_id,
|
|
463
|
+
name=name,
|
|
464
|
+
count=self.LIST_ENDPOINT_COUNT,
|
|
465
|
+
paging_token=paging_token,
|
|
466
|
+
)
|
|
467
|
+
for result in resp.results:
|
|
468
|
+
if result.name == name:
|
|
469
|
+
service = result
|
|
470
|
+
break
|
|
471
|
+
|
|
472
|
+
paging_token = resp.metadata.next_paging_token
|
|
473
|
+
if service is not None or paging_token is None:
|
|
474
|
+
break
|
|
475
|
+
|
|
476
|
+
return service
|
|
477
|
+
|
|
478
|
+
def rollout_service(self, model: ApplyServiceModel) -> ServiceModel:
|
|
479
|
+
result: ServiceModel = self._external_api_client.rollout_service(model).result
|
|
480
|
+
return result
|
|
481
|
+
|
|
482
|
+
def rollback_service(
|
|
483
|
+
self, service_id: str, *, max_surge_percent: Optional[int] = None
|
|
484
|
+
) -> ServiceModel:
|
|
485
|
+
result: ServiceModel = self._external_api_client.rollback_service(
|
|
486
|
+
service_id,
|
|
487
|
+
rollback_service_model=RollbackServiceModel(
|
|
488
|
+
max_surge_percent=max_surge_percent
|
|
489
|
+
),
|
|
490
|
+
)
|
|
491
|
+
return result
|
|
492
|
+
|
|
493
|
+
def terminate_service(self, service_id: str) -> ServiceModel:
|
|
494
|
+
result: ServiceModel = self._external_api_client.terminate_service(service_id)
|
|
495
|
+
return result
|
|
496
|
+
|
|
497
|
+
def submit_job(self, model: CreateInternalProductionJob) -> InternalProductionJob:
|
|
498
|
+
job: InternalProductionJob = self._internal_api_client.create_job_api_v2_decorated_ha_jobs_create_post(
|
|
499
|
+
model,
|
|
500
|
+
).result
|
|
501
|
+
return job
|
|
502
|
+
|
|
503
|
+
def upload_local_dir_to_cloud_storage(
|
|
504
|
+
self, local_dir: str, *, cloud_id: str, excludes: Optional[List[str]] = None
|
|
505
|
+
) -> str:
|
|
506
|
+
if not pathlib.Path(local_dir).is_dir():
|
|
507
|
+
raise RuntimeError(f"Path '{local_dir}' is not a valid directory.")
|
|
508
|
+
|
|
509
|
+
with zip_local_dir(local_dir, excludes=excludes) as (
|
|
510
|
+
_,
|
|
511
|
+
zip_file_bytes,
|
|
512
|
+
content_hash,
|
|
513
|
+
):
|
|
514
|
+
request = CloudDataBucketPresignedUploadRequest(
|
|
515
|
+
file_type=CloudDataBucketFileType.RUNTIME_ENV_PACKAGES,
|
|
516
|
+
file_name=RUNTIME_ENV_PACKAGE_FORMAT.format(content_hash=content_hash),
|
|
517
|
+
)
|
|
518
|
+
info: CloudDataBucketPresignedUploadInfo = self._internal_api_client.generate_cloud_data_bucket_presigned_upload_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_upload_url_post(
|
|
519
|
+
cloud_id, request
|
|
520
|
+
).result
|
|
521
|
+
requests.put(info.upload_url, data=zip_file_bytes).raise_for_status()
|
|
522
|
+
|
|
523
|
+
return info.file_uri
|