anyscale 0.24.9__tar.gz → 0.24.11__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.9 → anyscale-0.24.11}/PKG-INFO +1 -1
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/anyscale_client/anyscale_client.py +75 -22
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/anyscale_client/common.py +12 -4
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/anyscale_client/fake_anyscale_client.py +25 -13
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/models/image_uri.py +5 -5
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/models/model_base.py +36 -6
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/sdk/workload_sdk.py +17 -13
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/README.md +5 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/__init__.py +3 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/api/default_api.py +232 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/__init__.py +3 -0
- anyscale-0.24.11/anyscale/client/openapi_client/models/appconfig_list_response.py +147 -0
- anyscale-0.24.11/anyscale/client/openapi_client/models/cluster_environments_query.py +262 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +32 -3
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +31 -3
- anyscale-0.24.11/anyscale/client/openapi_client/models/service_version_state.py +106 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +31 -3
- anyscale-0.24.11/anyscale/compute_config/__init__.py +5 -0
- anyscale-0.24.11/anyscale/compute_config/models.py +213 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/job/_private/job_sdk.py +28 -3
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/job/models.py +1 -4
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/__init__.py +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/__init__.py +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +32 -3
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +31 -3
- anyscale-0.24.11/anyscale/sdk/anyscale_client/models/service_version_state.py +106 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/service/_private/service_sdk.py +48 -9
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/service/models.py +120 -32
- anyscale-0.24.11/anyscale/version.py +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/PKG-INFO +1 -1
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/SOURCES.txt +13 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/api_utils/BUILD.bazel +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/BUILD.bazel +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_cloud_controller.py +4 -4
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_cluster_env_controller.py +1 -3
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_job_controller.py +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_machine_controller.py +1 -1
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_machine_pool_controller.py +2 -4
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/BUILD.bazel +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_anyscale_client.py +113 -13
- anyscale-0.24.11/tests/unit/test_compute_config_models.py +369 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/BUILD.bazel +8 -0
- anyscale-0.24.11/tests/unit/test_files/compute_config_files/full.yaml +32 -0
- anyscale-0.24.11/tests/unit/test_files/compute_config_files/minimal.yaml +1 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_image_uri.py +2 -5
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_job_sdk.py +31 -4
- anyscale-0.24.11/tests/unit/test_model_base.py +324 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_service_cli.py +3 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_service_models.py +47 -25
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_service_sdk.py +59 -15
- anyscale-0.24.9/anyscale/version.py +0 -1
- anyscale-0.24.9/tests/unit/test_model_base.py +0 -148
- {anyscale-0.24.9 → anyscale-0.24.11}/.covrc +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/LICENSE +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/NOTICE +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/README.md +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/models/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/models/workload_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/MANIFEST.in +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/authenticate.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/background/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/cli_logger.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/.gitignore +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/access_mode.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_endpoint.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_endpoint_event.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_endpoint_event_level.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_endpoint_event_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_endpoint_scope.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_model_configuration.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aica_observability_urls.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aicamodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aicamodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/alert_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/autosync_session_id.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/autosyncsessionid_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/autosyncsessionid_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_credentials.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/baseimagesenum.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/body_upload_file_api_v2_files_post.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/buffer_registration.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/file_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/filemodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/fine_tuning_job_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/finish_ft_job_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/import_aica_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/migration_result.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/migrationresult_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/named_entity.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/node_registration_sagemaker.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_public_identifier.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationpublicidentifier_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/platform_fine_tuning_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/platformfinetuningjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/presigned_upload_file.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/presigned_upload_file_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/product_autoscaler_flag.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/productautoscalerflag_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/stripe_checkout_session_url_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/templatized_compute_configs.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_endpoint.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_model_deployment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/verify_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/verifyresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/setup.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/client/tox.ini +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/cluster_env.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/cloud_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/fine_tune_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/job_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/conf.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/connect.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/cloud_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/fine_tune_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/feature_flags.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/fingerprint.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/integrations.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/job/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/job/commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/links.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/models/fine_tune_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/models/job_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/models/service_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/scripts.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/apply_service_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/service/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/service/commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/snapshot.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/snapshot_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/tables.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/s3.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale/workspace.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/requirements.in +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/setup.cfg +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/setup.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/api_utils/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/api_utils/test_logs_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/cloud_formation_template_oa.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/commands/test_cloud_command.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/conftest.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/__init__.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_compute_config_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/controllers/test_service_controller.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/formatters/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/deployment_manager_resources_get.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/global_firewall_with_private_service_rule.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/global_firewall_with_service_rule.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/global_firewall_without_service_rule.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_apis_disabled.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/proxy_only_subnet_missing.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/proxy_only_subnet_no_subnets.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/proxy_only_subnet_present.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/proxy_only_subnet_wrong_vpc.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_memorystore.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_memorystore_happy.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_memorystore_read_replica_disabled.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_memorystore_standard_tier.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/regional_memorystore_tls_enabled.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/service_get.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/sdk/test_upload_working_dir.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_authenticate.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_aws_iam_policies.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cli_logger.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cli_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cloud.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cloud_resource.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cluster.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_cluster_env.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_component_activity.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_connect.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_imports_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_integrations.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_network_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_project.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_runtime_env.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_s3.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_snapshot_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/test_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/common.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/containerfiles/Containerfile +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/job_config_files/empty.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/job_config_files/full.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/job_config_files/minimal.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/job_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/job_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/requirements_files/comments.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/requirements_files/empty.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/requirements_files/multi_line.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/requirements_files/multi_line_with_whitespace.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/requirements_files/single_line.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/requirements_files/test_workspace_requirements.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/empty.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/full.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/minimal.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/multiple_applications.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/name_and_gibberish.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/service_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/working_dirs/basic/hi.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/working_dirs/basic/main.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/working_dirs/nested/requirements.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/working_dirs/nested/subdir/app.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/working_dirs/symlink_to_basic/hi.txt +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_files/working_dirs/symlink_to_basic/main.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_job_cli.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_job_models.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/unit/test_workload_config.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/utils/BUILD.bazel +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/utils/test_cli_version_check_util.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/utils/test_cloud_update_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/utils/test_cloud_utils.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/utils/test_cluster_debug.py +0 -0
- {anyscale-0.24.9 → anyscale-0.24.11}/tests/utils/test_workspace_utils.py +0 -0
|
@@ -21,6 +21,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
21
21
|
CloudDataBucketFileType,
|
|
22
22
|
CloudDataBucketPresignedUploadInfo,
|
|
23
23
|
CloudDataBucketPresignedUploadRequest,
|
|
24
|
+
CloudNameOptions,
|
|
24
25
|
ComputeTemplateConfig,
|
|
25
26
|
ComputeTemplateQuery,
|
|
26
27
|
CreateComputeTemplate,
|
|
@@ -28,11 +29,11 @@ from anyscale.client.openapi_client.models import (
|
|
|
28
29
|
DecoratedComputeTemplate,
|
|
29
30
|
InternalProductionJob,
|
|
30
31
|
)
|
|
32
|
+
from anyscale.client.openapi_client.rest import ApiException as InternalApiException
|
|
31
33
|
from anyscale.cluster_compute import parse_cluster_compute_name_version
|
|
32
34
|
from anyscale.sdk.anyscale_client.api.default_api import DefaultApi as ExternalApi
|
|
33
35
|
from anyscale.sdk.anyscale_client.models import (
|
|
34
36
|
ApplyServiceModel,
|
|
35
|
-
Cloud,
|
|
36
37
|
Cluster,
|
|
37
38
|
ClusterCompute,
|
|
38
39
|
ClusterComputeConfig,
|
|
@@ -49,7 +50,8 @@ from anyscale.sdk.anyscale_client.models.create_cluster_environment import (
|
|
|
49
50
|
from anyscale.sdk.anyscale_client.models.create_cluster_environment_build import (
|
|
50
51
|
CreateClusterEnvironmentBuild,
|
|
51
52
|
)
|
|
52
|
-
from anyscale.sdk.anyscale_client.rest import ApiException
|
|
53
|
+
from anyscale.sdk.anyscale_client.rest import ApiException as ExternalApiException
|
|
54
|
+
from anyscale.shared_anyscale_utils.conf import ANYSCALE_HOST
|
|
53
55
|
from anyscale.util import (
|
|
54
56
|
get_cluster_model_for_current_workspace,
|
|
55
57
|
get_endpoint,
|
|
@@ -70,6 +72,8 @@ WORKSPACE_ID_ENV_VAR = "ANYSCALE_EXPERIMENTAL_WORKSPACE_ID"
|
|
|
70
72
|
OVERWRITE_EXISTING_CLOUD_STORAGE_FILES = (
|
|
71
73
|
os.environ.get("ANYSCALE_OVERWRITE_EXISTING_CLOUD_STORAGE_FILES", "0") == "1"
|
|
72
74
|
)
|
|
75
|
+
|
|
76
|
+
# internal_logger is used for logging internal errors or debug messages that we do not expect users to see.
|
|
73
77
|
internal_logger = logging.getLogger(__name__)
|
|
74
78
|
|
|
75
79
|
|
|
@@ -84,6 +88,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
84
88
|
sleep: Optional[Callable[[float], None]] = None,
|
|
85
89
|
workspace_requirements_file_path: str = WORKSPACE_REQUIREMENTS_FILE_PATH,
|
|
86
90
|
logger: Optional[BlockLogger] = None,
|
|
91
|
+
host: Optional[str] = None,
|
|
87
92
|
):
|
|
88
93
|
if api_clients is None:
|
|
89
94
|
auth_block: AuthenticationBlock = get_auth_api_client(
|
|
@@ -100,19 +105,26 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
100
105
|
self._cloud_id_cache: Dict[Optional[str], str] = {}
|
|
101
106
|
self._current_workspace_cluster: Optional[Cluster] = None
|
|
102
107
|
self._logger = logger or BlockLogger()
|
|
108
|
+
self._host = host or ANYSCALE_HOST
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
def host(self) -> str:
|
|
112
|
+
return self._host
|
|
103
113
|
|
|
104
114
|
@property
|
|
105
115
|
def logger(self) -> BlockLogger:
|
|
106
116
|
return self._logger
|
|
107
117
|
|
|
108
118
|
def get_job_ui_url(self, job_id: str) -> str:
|
|
109
|
-
return get_endpoint(f"/jobs/{job_id}")
|
|
119
|
+
return get_endpoint(f"/jobs/{job_id}", host=self.host)
|
|
110
120
|
|
|
111
121
|
def get_service_ui_url(self, service_id: str) -> str:
|
|
112
|
-
return get_endpoint(f"/services/{service_id}")
|
|
122
|
+
return get_endpoint(f"/services/{service_id}", host=self.host)
|
|
113
123
|
|
|
114
124
|
def get_build_ui_url(self, cluster_env_id, build_id: str) -> str:
|
|
115
|
-
return get_endpoint(
|
|
125
|
+
return get_endpoint(
|
|
126
|
+
f"/container-images/{cluster_env_id}/versions/{build_id}", host=self.host
|
|
127
|
+
)
|
|
116
128
|
|
|
117
129
|
def get_current_workspace_id(self) -> Optional[str]:
|
|
118
130
|
return os.environ.get(WORKSPACE_ID_ENV_VAR, None)
|
|
@@ -161,11 +173,24 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
161
173
|
cluster_compute_config: ClusterComputeConfig = cluster_compute.config
|
|
162
174
|
return cluster_compute_config.cloud_id
|
|
163
175
|
|
|
176
|
+
def _get_cloud_id_by_name(self, cloud_name: str) -> Optional[str]:
|
|
177
|
+
try:
|
|
178
|
+
return self._internal_api_client.find_cloud_by_name_api_v2_clouds_find_by_name_post(
|
|
179
|
+
CloudNameOptions(name=cloud_name),
|
|
180
|
+
).result.id
|
|
181
|
+
except InternalApiException as e:
|
|
182
|
+
if e.status == 404:
|
|
183
|
+
return None
|
|
184
|
+
|
|
185
|
+
raise e from None
|
|
186
|
+
|
|
164
187
|
def get_cloud_id(
|
|
165
188
|
self, cloud_name: Optional[str] = None, compute_config_id: Optional[str] = None
|
|
166
|
-
) ->
|
|
167
|
-
if cloud_name is not None:
|
|
168
|
-
raise
|
|
189
|
+
) -> str:
|
|
190
|
+
if cloud_name is not None and compute_config_id is not None:
|
|
191
|
+
raise ValueError(
|
|
192
|
+
"Only one of cloud_name or compute_config_id should be provided."
|
|
193
|
+
)
|
|
169
194
|
|
|
170
195
|
if compute_config_id is not None:
|
|
171
196
|
return self._get_cloud_id_for_compute_config_id(compute_config_id)
|
|
@@ -173,8 +198,13 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
173
198
|
if cloud_name in self._cloud_id_cache:
|
|
174
199
|
return self._cloud_id_cache[cloud_name]
|
|
175
200
|
|
|
176
|
-
|
|
177
|
-
|
|
201
|
+
if cloud_name is not None:
|
|
202
|
+
cloud_id = self._get_cloud_id_by_name(cloud_name)
|
|
203
|
+
if cloud_id is None:
|
|
204
|
+
raise RuntimeError(f"Cloud '{cloud_name}' not found.")
|
|
205
|
+
elif self.inside_workspace():
|
|
206
|
+
workspace_cluster = self.get_current_workspace_cluster()
|
|
207
|
+
assert workspace_cluster is not None
|
|
178
208
|
# NOTE(edoakes): the Cluster model has a compute_config_config model that includes
|
|
179
209
|
# its cloud ID, but it's not always populated.
|
|
180
210
|
# TODO(edoakes): add cloud_id to the Cluster model to avoid a second RTT.
|
|
@@ -182,9 +212,9 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
182
212
|
workspace_cluster.cluster_compute_id
|
|
183
213
|
)
|
|
184
214
|
else:
|
|
185
|
-
|
|
186
|
-
cloud_id = result.id
|
|
215
|
+
cloud_id = self._external_api_client.get_default_cloud().result.id
|
|
187
216
|
|
|
217
|
+
assert cloud_id is not None
|
|
188
218
|
self._cloud_id_cache[cloud_name] = cloud_id
|
|
189
219
|
return cloud_id
|
|
190
220
|
|
|
@@ -203,7 +233,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
203
233
|
compute_config_id
|
|
204
234
|
).result
|
|
205
235
|
return cluster_compute
|
|
206
|
-
except
|
|
236
|
+
except InternalApiException as e:
|
|
207
237
|
if e.status == 404:
|
|
208
238
|
return None
|
|
209
239
|
|
|
@@ -303,18 +333,41 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
303
333
|
cluster_env_build_id
|
|
304
334
|
).result
|
|
305
335
|
return ImageURI.from_str(build.docker_image_name)
|
|
306
|
-
except
|
|
336
|
+
except ExternalApiException as e:
|
|
307
337
|
if e.status == 404:
|
|
308
338
|
return None
|
|
309
339
|
|
|
310
340
|
raise e from None
|
|
311
341
|
|
|
312
|
-
def
|
|
313
|
-
|
|
342
|
+
def build_image_from_requirements(
|
|
343
|
+
self, cluster_env_name: str, base_build_id: str, requirements: List[str]
|
|
344
|
+
) -> str:
|
|
345
|
+
if requirements:
|
|
346
|
+
self.logger.info(f"Building image with requirements: {requirements}.")
|
|
347
|
+
base_build = self._external_api_client.get_cluster_environment_build(
|
|
348
|
+
base_build_id
|
|
349
|
+
).result
|
|
350
|
+
if (
|
|
351
|
+
base_build.status == ClusterEnvironmentBuildStatus.SUCCEEDED
|
|
352
|
+
and base_build.docker_image_name
|
|
353
|
+
):
|
|
354
|
+
lines = [
|
|
355
|
+
"# syntax=docker/dockerfile:1",
|
|
356
|
+
f"FROM {base_build.docker_image_name}",
|
|
357
|
+
]
|
|
358
|
+
for requirement in requirements:
|
|
359
|
+
lines.append(f'RUN pip install "{requirement}"')
|
|
360
|
+
return self.get_cluster_env_build_id_from_containerfile(
|
|
361
|
+
cluster_env_name, "\n".join(lines)
|
|
362
|
+
)
|
|
363
|
+
else:
|
|
364
|
+
raise RuntimeError(
|
|
365
|
+
f"Base build {base_build_id} is not a successful build."
|
|
366
|
+
)
|
|
367
|
+
else:
|
|
368
|
+
return base_build_id
|
|
314
369
|
|
|
315
|
-
|
|
316
|
-
Else it will return the default cluster environment build ID.
|
|
317
|
-
"""
|
|
370
|
+
def get_default_build_id(self) -> str:
|
|
318
371
|
workspace_cluster = self.get_current_workspace_cluster()
|
|
319
372
|
if workspace_cluster is not None:
|
|
320
373
|
return workspace_cluster.cluster_environment_build_id
|
|
@@ -408,8 +461,8 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
408
461
|
return build_op.cluster_environment_build_id
|
|
409
462
|
|
|
410
463
|
def get_cluster_env_build_id_from_image_uri(self, image_uri: ImageURI) -> str:
|
|
411
|
-
if image_uri.
|
|
412
|
-
identifier = image_uri.
|
|
464
|
+
if image_uri.is_cluster_env_image():
|
|
465
|
+
identifier = image_uri.to_cluster_env_identifier()
|
|
413
466
|
try:
|
|
414
467
|
build = self._external_api_client.find_cluster_environment_build_by_identifier(
|
|
415
468
|
identifier=identifier
|
|
@@ -420,7 +473,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
420
473
|
raise RuntimeError(
|
|
421
474
|
f"Legacy cluster environment build '{identifier}' is not a successful build."
|
|
422
475
|
)
|
|
423
|
-
except
|
|
476
|
+
except ExternalApiException as e:
|
|
424
477
|
if e.status == 404:
|
|
425
478
|
raise RuntimeError(
|
|
426
479
|
f"Legacy cluster environment '{identifier}' is not found."
|
|
@@ -53,7 +53,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
53
53
|
def get_workspace_requirements_path(self) -> Optional[str]:
|
|
54
54
|
"""Returns the path to the workspace-managed requirements file.
|
|
55
55
|
|
|
56
|
-
Returns None if dependency tracking is disable or the file does not exist.
|
|
56
|
+
Returns None if dependency tracking is disable or the file does not exist or is not in a workspace.
|
|
57
57
|
"""
|
|
58
58
|
raise NotImplementedError
|
|
59
59
|
|
|
@@ -83,7 +83,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
83
83
|
@abstractmethod
|
|
84
84
|
def get_cloud_id(
|
|
85
85
|
self, *, cloud_name: Optional[str] = None, compute_config_id: Optional[str]
|
|
86
|
-
) ->
|
|
86
|
+
) -> str:
|
|
87
87
|
"""Get the cloud ID for the provided cloud name or compute config ID.
|
|
88
88
|
|
|
89
89
|
If both arguments are None:
|
|
@@ -125,8 +125,16 @@ class AnyscaleClientInterface(ABC):
|
|
|
125
125
|
def get_default_build_id(self) -> str:
|
|
126
126
|
"""Get the default build id.
|
|
127
127
|
|
|
128
|
-
If running in a workspace, it
|
|
129
|
-
Else it
|
|
128
|
+
If running in a workspace, it returns the workspace build id.
|
|
129
|
+
Else it returns the default build id.
|
|
130
|
+
"""
|
|
131
|
+
raise NotImplementedError
|
|
132
|
+
|
|
133
|
+
@abstractmethod
|
|
134
|
+
def build_image_from_requirements(
|
|
135
|
+
self, cluster_env_name: str, base_build_id: str, requirements: List[str]
|
|
136
|
+
) -> str:
|
|
137
|
+
"""Build an image with the provided requirements and base_build_id.
|
|
130
138
|
"""
|
|
131
139
|
raise NotImplementedError
|
|
132
140
|
|
{anyscale-0.24.9 → anyscale-0.24.11}/anyscale/_private/anyscale_client/fake_anyscale_client.py
RENAMED
|
@@ -107,7 +107,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
107
107
|
return self.get_current_workspace_cluster() is not None
|
|
108
108
|
|
|
109
109
|
def get_workspace_requirements_path(self) -> Optional[str]:
|
|
110
|
-
|
|
110
|
+
if self.inside_workspace():
|
|
111
|
+
return self._requirements_path
|
|
112
|
+
return None
|
|
111
113
|
|
|
112
114
|
def get_current_workspace_cluster(self) -> Optional[Cluster]:
|
|
113
115
|
return self._workspace_cluster
|
|
@@ -127,31 +129,24 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
127
129
|
|
|
128
130
|
return self.DEFAULT_PROJECT_ID
|
|
129
131
|
|
|
130
|
-
def set_compute_config_id_to_cloud_id_mapping(
|
|
131
|
-
self, compute_config_id: str, cloud_id: str
|
|
132
|
-
):
|
|
133
|
-
self._compute_config_id_to_cloud_id[compute_config_id] = cloud_id
|
|
134
|
-
|
|
135
132
|
def get_cloud_id(
|
|
136
133
|
self,
|
|
137
134
|
*,
|
|
138
135
|
cloud_name: Optional[str] = None,
|
|
139
136
|
compute_config_id: Optional[str] = None,
|
|
140
|
-
) ->
|
|
137
|
+
) -> str:
|
|
141
138
|
assert not (cloud_name and compute_config_id)
|
|
142
139
|
workspace_cluster = self.get_current_workspace_cluster()
|
|
143
140
|
if workspace_cluster is not None:
|
|
144
141
|
return self.WORKSPACE_CLOUD_ID
|
|
145
142
|
|
|
146
143
|
if compute_config_id is not None:
|
|
147
|
-
return self.
|
|
144
|
+
return self._compute_configs[compute_config_id].config.cloud_id
|
|
148
145
|
|
|
149
146
|
if cloud_name is None:
|
|
150
147
|
return self.DEFAULT_CLOUD_ID
|
|
151
148
|
|
|
152
|
-
|
|
153
|
-
# return f"{cloud_name}-fake-id"
|
|
154
|
-
raise NotImplementedError("Only default cloud is currently implemented.")
|
|
149
|
+
return f"cloud-{cloud_name}-id"
|
|
155
150
|
|
|
156
151
|
def add_compute_config(self, compute_config: DecoratedComputeTemplate):
|
|
157
152
|
self._compute_configs[compute_config.id] = compute_config
|
|
@@ -198,9 +193,26 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
198
193
|
workspace_cluster = self.get_current_workspace_cluster()
|
|
199
194
|
if workspace_cluster is not None:
|
|
200
195
|
return workspace_cluster.cluster_environment_build_id
|
|
201
|
-
|
|
202
196
|
return self.DEFAULT_CLUSTER_ENV_BUILD_ID
|
|
203
197
|
|
|
198
|
+
def build_image_from_requirements(
|
|
199
|
+
self, cluster_env_name: str, base_build_id: str, requirements: List[str]
|
|
200
|
+
) -> str:
|
|
201
|
+
if not requirements:
|
|
202
|
+
return base_build_id
|
|
203
|
+
|
|
204
|
+
image_uri = self.get_cluster_env_build_image_uri(base_build_id)
|
|
205
|
+
lines = [
|
|
206
|
+
"# syntax=docker/dockerfile:1",
|
|
207
|
+
f"FROM {image_uri}",
|
|
208
|
+
]
|
|
209
|
+
for requirement in requirements:
|
|
210
|
+
lines.append(f'RUN pip install "{requirement}"')
|
|
211
|
+
|
|
212
|
+
return self.get_cluster_env_build_id_from_containerfile(
|
|
213
|
+
cluster_env_name=cluster_env_name, containerfile="\n".join(lines),
|
|
214
|
+
)
|
|
215
|
+
|
|
204
216
|
def get_cluster_env_build_id_from_containerfile(
|
|
205
217
|
self, cluster_env_name: str, containerfile: str # noqa: ARG002
|
|
206
218
|
) -> str:
|
|
@@ -218,7 +230,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
218
230
|
def get_cluster_env_build_image_uri(
|
|
219
231
|
self, cluster_env_build_id: str
|
|
220
232
|
) -> Optional[ImageURI]:
|
|
221
|
-
return self._build_id_to_image_uri.get(cluster_env_build_id
|
|
233
|
+
return self._build_id_to_image_uri.get(cluster_env_build_id)
|
|
222
234
|
|
|
223
235
|
def update_service(self, model: ServiceModel):
|
|
224
236
|
self._services[model.id] = model
|
|
@@ -16,7 +16,7 @@ IMAGE_URI_PATTERN_RE = re.compile(
|
|
|
16
16
|
r"$"
|
|
17
17
|
)
|
|
18
18
|
|
|
19
|
-
ANYSCALE_CLUSTER_ENV_PREFIX = "anyscale/
|
|
19
|
+
ANYSCALE_CLUSTER_ENV_PREFIX = "anyscale/image/"
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
class ImageURI:
|
|
@@ -51,12 +51,12 @@ class ImageURI:
|
|
|
51
51
|
escaped.append(c)
|
|
52
52
|
return "".join(escaped)
|
|
53
53
|
|
|
54
|
-
def
|
|
55
|
-
"""Check if the image URI is a
|
|
54
|
+
def is_cluster_env_image(self) -> bool:
|
|
55
|
+
"""Check if the image URI is a cluster environment image."""
|
|
56
56
|
return self.image_uri.startswith(ANYSCALE_CLUSTER_ENV_PREFIX)
|
|
57
57
|
|
|
58
|
-
def
|
|
59
|
-
assert self.
|
|
58
|
+
def to_cluster_env_identifier(self) -> str:
|
|
59
|
+
assert self.is_cluster_env_image()
|
|
60
60
|
identifier = self.image_uri.split("/")[2]
|
|
61
61
|
return identifier
|
|
62
62
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from dataclasses import asdict, fields
|
|
2
2
|
from enum import Enum
|
|
3
|
+
import inspect
|
|
3
4
|
from typing import Any, Dict, Iterable, Tuple, TypeVar
|
|
4
5
|
|
|
5
6
|
import yaml
|
|
@@ -28,6 +29,9 @@ class ModelBase:
|
|
|
28
29
|
|
|
29
30
|
Looks for methods with the name: `_validate_{field}`. The method will be called
|
|
30
31
|
with the field value as its sole argument.
|
|
32
|
+
|
|
33
|
+
If the validator has a return type annotation, the field will be updated to the
|
|
34
|
+
returned value.
|
|
31
35
|
"""
|
|
32
36
|
for field in fields(self):
|
|
33
37
|
validator = getattr(self, f"_validate_{field.name}", None)
|
|
@@ -36,15 +40,40 @@ class ModelBase:
|
|
|
36
40
|
f"Model '{type(self).__name__}' is missing validator method for field '{field.name}'."
|
|
37
41
|
)
|
|
38
42
|
|
|
39
|
-
|
|
43
|
+
signature: inspect.Signature = inspect.signature(validator)
|
|
44
|
+
if len(signature.parameters) != 1:
|
|
45
|
+
raise TypeError(
|
|
46
|
+
f"Validator for field '{field.name}' must take the field value as its only argument."
|
|
47
|
+
)
|
|
48
|
+
elif field.name not in signature.parameters:
|
|
49
|
+
raise TypeError(
|
|
50
|
+
f"Validator for field '{field.name}' has invalid parameter name (must match the field name)."
|
|
51
|
+
)
|
|
52
|
+
elif signature.parameters[field.name].annotation == inspect.Parameter.empty:
|
|
53
|
+
raise TypeError(
|
|
54
|
+
f"Validator for field '{field.name}' is missing a type annotation (should be '{field.type}')."
|
|
55
|
+
)
|
|
56
|
+
elif signature.parameters[field.name].annotation != field.type:
|
|
57
|
+
raise TypeError(
|
|
58
|
+
f"Validator for field '{field.name}' has the wrong type annotation (should be '{field.type}')."
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
maybe_updated_field_value = validator(getattr(self, field.name))
|
|
62
|
+
if signature.return_annotation != inspect.Signature.empty:
|
|
63
|
+
# Only update the value if the validator has a return type annotation.
|
|
64
|
+
object.__setattr__(self, field.name, maybe_updated_field_value)
|
|
40
65
|
|
|
41
66
|
def __post_init__(self):
|
|
42
67
|
self._run_validators()
|
|
43
68
|
|
|
44
69
|
@classmethod
|
|
45
|
-
def
|
|
70
|
+
def from_dict(cls, d: Dict[str, Any]) -> "ModelBase":
|
|
71
|
+
return cls(**d)
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_yaml(cls, path: str) -> "ModelBase":
|
|
46
75
|
with open(path) as f:
|
|
47
|
-
return cls(
|
|
76
|
+
return cls.from_dict(yaml.safe_load(f))
|
|
48
77
|
|
|
49
78
|
def to_dict(self, *, exclude_none: bool = True) -> Dict[str, Any]:
|
|
50
79
|
"""Convert the model to a dictionary representation.
|
|
@@ -74,10 +103,11 @@ class ModelBase:
|
|
|
74
103
|
|
|
75
104
|
All fields in the constructor are supported. Those not provided will be unchanged.
|
|
76
105
|
"""
|
|
77
|
-
self_dict = self.to_dict(exclude_none=False)
|
|
78
106
|
new_instance_kwargs = {
|
|
79
|
-
field: kwargs.pop(field)
|
|
80
|
-
|
|
107
|
+
field.name: kwargs.pop(field.name)
|
|
108
|
+
if field.name in kwargs
|
|
109
|
+
else getattr(self, field.name)
|
|
110
|
+
for field in fields(self)
|
|
81
111
|
}
|
|
82
112
|
if len(kwargs) > 0:
|
|
83
113
|
raise ValueError(
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import copy
|
|
2
|
+
import os
|
|
2
3
|
import pathlib
|
|
3
4
|
from typing import Any, Dict, List, Optional, Union
|
|
4
5
|
|
|
@@ -15,6 +16,11 @@ from anyscale.client.openapi_client.models import (
|
|
|
15
16
|
from anyscale.utils.runtime_env import is_dir_remote_uri, parse_requirements_file
|
|
16
17
|
|
|
17
18
|
|
|
19
|
+
ENABLE_IMAGE_BUILD_FOR_TRACKED_REQUIREMENTS = (
|
|
20
|
+
os.environ.get("ANYSCALE_ENABLE_IMAGE_BUILD_FOR_TRACKED_REQUIREMENTS", "1") == "1"
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
|
|
18
24
|
class WorkloadSDK:
|
|
19
25
|
"""Shared parent class for job and service SDKs."""
|
|
20
26
|
|
|
@@ -26,6 +32,9 @@ class WorkloadSDK:
|
|
|
26
32
|
):
|
|
27
33
|
self._logger = logger or BlockLogger()
|
|
28
34
|
self._client = client or AnyscaleClient()
|
|
35
|
+
self._enable_image_build_for_tracked_requirements = (
|
|
36
|
+
ENABLE_IMAGE_BUILD_FOR_TRACKED_REQUIREMENTS
|
|
37
|
+
)
|
|
29
38
|
|
|
30
39
|
@property
|
|
31
40
|
def logger(self) -> BlockLogger:
|
|
@@ -35,12 +44,16 @@ class WorkloadSDK:
|
|
|
35
44
|
def client(self) -> AnyscaleClientInterface:
|
|
36
45
|
return self._client
|
|
37
46
|
|
|
47
|
+
@property
|
|
48
|
+
def enable_image_build_for_tracked_requirements(self) -> bool:
|
|
49
|
+
return self._enable_image_build_for_tracked_requirements
|
|
50
|
+
|
|
38
51
|
def override_and_load_requirements_files(
|
|
39
52
|
self,
|
|
40
53
|
runtime_envs: List[Dict[str, Any]],
|
|
41
54
|
*,
|
|
42
55
|
requirements_override: Union[None, str, List[str]],
|
|
43
|
-
|
|
56
|
+
workspace_requirements_path: Optional[str] = None,
|
|
44
57
|
) -> List[Dict[str, Any]]:
|
|
45
58
|
"""Replaces 'pip' fields in runtime_envs with their parsed file contents.
|
|
46
59
|
|
|
@@ -69,26 +82,17 @@ class WorkloadSDK:
|
|
|
69
82
|
else:
|
|
70
83
|
raise TypeError("pip field in runtime_env must be a list or string.")
|
|
71
84
|
|
|
72
|
-
return parsed_requirements
|
|
73
|
-
|
|
74
85
|
for runtime_env in new_runtime_envs:
|
|
75
86
|
if requirements_override is not None:
|
|
76
87
|
# Explicitly-specified override from the user.
|
|
77
88
|
runtime_env["pip"] = requirements_override
|
|
78
89
|
elif (
|
|
79
|
-
|
|
80
|
-
and self._client.inside_workspace()
|
|
90
|
+
workspace_requirements_path is not None
|
|
81
91
|
and "pip" not in runtime_env
|
|
82
92
|
and "conda" not in runtime_env
|
|
83
93
|
):
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
workspace_requirements_path = (
|
|
87
|
-
self._client.get_workspace_requirements_path()
|
|
88
|
-
)
|
|
89
|
-
if workspace_requirements_path is not None:
|
|
90
|
-
self.logger.info("Including workspace-managed pip dependencies.")
|
|
91
|
-
runtime_env["pip"] = workspace_requirements_path
|
|
94
|
+
self.logger.info("Including workspace-managed pip dependencies.")
|
|
95
|
+
runtime_env["pip"] = workspace_requirements_path
|
|
92
96
|
|
|
93
97
|
if runtime_env.get("pip", None) is not None:
|
|
94
98
|
# Load requirements from the file if necessary.
|
|
@@ -107,6 +107,7 @@ Class | Method | HTTP request | Description
|
|
|
107
107
|
*DefaultApi* | [**create_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_post**](docs/DefaultApi.md#create_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_post) | **POST** /api/v2/clouds_with_cloud_resource_router/ | Create Cloud With Cloud Resource
|
|
108
108
|
*DefaultApi* | [**create_compute_template_api_v2_compute_templates_post**](docs/DefaultApi.md#create_compute_template_api_v2_compute_templates_post) | **POST** /api/v2/compute_templates/ | Create Compute Template
|
|
109
109
|
*DefaultApi* | [**create_connect_session_api_v2_sessions_create_connect_session_post**](docs/DefaultApi.md#create_connect_session_api_v2_sessions_create_connect_session_post) | **POST** /api/v2/sessions/create_connect_session | Create Connect Session
|
|
110
|
+
*DefaultApi* | [**create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post**](docs/DefaultApi.md#create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post) | **POST** /api/v2/organizations/{organization_id}/create_endpoint_user | Create Endpoint User For Org
|
|
110
111
|
*DefaultApi* | [**create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post**](docs/DefaultApi.md#create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post) | **POST** /api/v2/fine_tuning/jobs/create | Create Fine Tuning Job
|
|
111
112
|
*DefaultApi* | [**create_invitation_api_v2_organization_invitations_post**](docs/DefaultApi.md#create_invitation_api_v2_organization_invitations_post) | **POST** /api/v2/organization_invitations/ | Create Invitation
|
|
112
113
|
*DefaultApi* | [**create_job_api_v2_decorated_ha_jobs_create_post**](docs/DefaultApi.md#create_job_api_v2_decorated_ha_jobs_create_post) | **POST** /api/v2/decorated_ha_jobs/create | Create Job
|
|
@@ -324,6 +325,7 @@ Class | Method | HTTP request | Description
|
|
|
324
325
|
*DefaultApi* | [**rotate_api_key_for_user_api_v2_organization_collaborators_rotate_api_key_for_user_user_id_post**](docs/DefaultApi.md#rotate_api_key_for_user_api_v2_organization_collaborators_rotate_api_key_for_user_user_id_post) | **POST** /api/v2/organization_collaborators/rotate_api_key_for_user/{user_id} | Rotate Api Key For User
|
|
325
326
|
*DefaultApi* | [**saml_acs_api_v2_organizations_organization_id_saml_acs_post**](docs/DefaultApi.md#saml_acs_api_v2_organizations_organization_id_saml_acs_post) | **POST** /api/v2/organizations/{organization_id}/saml_acs | Saml Acs
|
|
326
327
|
*DefaultApi* | [**search_cloud_collaborators_api_v2_clouds_cloud_id_collaborators_users_search_post**](docs/DefaultApi.md#search_cloud_collaborators_api_v2_clouds_cloud_id_collaborators_users_search_post) | **POST** /api/v2/clouds/{cloud_id}/collaborators/users/search | Search Cloud Collaborators
|
|
328
|
+
*DefaultApi* | [**search_cluster_environments_api_v2_application_templates_search_post**](docs/DefaultApi.md#search_cluster_environments_api_v2_application_templates_search_post) | **POST** /api/v2/application_templates/search | Search Cluster Environments
|
|
327
329
|
*DefaultApi* | [**search_compute_templates_api_v2_compute_templates_search_post**](docs/DefaultApi.md#search_compute_templates_api_v2_compute_templates_search_post) | **POST** /api/v2/compute_templates/search | Search Compute Templates
|
|
328
330
|
*DefaultApi* | [**search_invoices_api_v2_organization_billing_invoices_post**](docs/DefaultApi.md#search_invoices_api_v2_organization_billing_invoices_post) | **POST** /api/v2/organization_billing/invoices | Search Invoices
|
|
329
331
|
*DefaultApi* | [**search_support_requests_api_v2_support_requests_search_post**](docs/DefaultApi.md#search_support_requests_api_v2_support_requests_search_post) | **POST** /api/v2/support_requests/search | Search Support Requests
|
|
@@ -399,6 +401,7 @@ Class | Method | HTTP request | Description
|
|
|
399
401
|
- [ApiKeyParameters](docs/ApiKeyParameters.md)
|
|
400
402
|
- [AppConfig](docs/AppConfig.md)
|
|
401
403
|
- [AppConfigConfigSchema](docs/AppConfigConfigSchema.md)
|
|
404
|
+
- [AppconfigListResponse](docs/AppconfigListResponse.md)
|
|
402
405
|
- [AppconfigResponse](docs/AppconfigResponse.md)
|
|
403
406
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
404
407
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
@@ -476,6 +479,7 @@ Class | Method | HTTP request | Description
|
|
|
476
479
|
- [ClusterAuthResponse](docs/ClusterAuthResponse.md)
|
|
477
480
|
- [ClusterConfig](docs/ClusterConfig.md)
|
|
478
481
|
- [ClusterConfigWithSessionIdleTimeout](docs/ClusterConfigWithSessionIdleTimeout.md)
|
|
482
|
+
- [ClusterEnvironmentsQuery](docs/ClusterEnvironmentsQuery.md)
|
|
479
483
|
- [ClusterEvent](docs/ClusterEvent.md)
|
|
480
484
|
- [ClusterEventsOutput](docs/ClusterEventsOutput.md)
|
|
481
485
|
- [ClusterFeatures](docs/ClusterFeatures.md)
|
|
@@ -807,6 +811,7 @@ Class | Method | HTTP request | Description
|
|
|
807
811
|
- [ServiceSortField](docs/ServiceSortField.md)
|
|
808
812
|
- [ServiceType](docs/ServiceType.md)
|
|
809
813
|
- [ServiceUsage](docs/ServiceUsage.md)
|
|
814
|
+
- [ServiceVersionState](docs/ServiceVersionState.md)
|
|
810
815
|
- [Session](docs/Session.md)
|
|
811
816
|
- [SessionAccess](docs/SessionAccess.md)
|
|
812
817
|
- [SessionAutosyncSessionsUpdateMessage](docs/SessionAutosyncSessionsUpdateMessage.md)
|
|
@@ -61,6 +61,7 @@ from openapi_client.models.anyscaleversionresponse_response import Anyscaleversi
|
|
|
61
61
|
from openapi_client.models.api_key_parameters import ApiKeyParameters
|
|
62
62
|
from openapi_client.models.app_config import AppConfig
|
|
63
63
|
from openapi_client.models.app_config_config_schema import AppConfigConfigSchema
|
|
64
|
+
from openapi_client.models.appconfig_list_response import AppconfigListResponse
|
|
64
65
|
from openapi_client.models.appconfig_response import AppconfigResponse
|
|
65
66
|
from openapi_client.models.applied_snapshot import AppliedSnapshot
|
|
66
67
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
@@ -138,6 +139,7 @@ from openapi_client.models.cloudwithcloudresourcegcp_response import Cloudwithcl
|
|
|
138
139
|
from openapi_client.models.cluster_auth_response import ClusterAuthResponse
|
|
139
140
|
from openapi_client.models.cluster_config import ClusterConfig
|
|
140
141
|
from openapi_client.models.cluster_config_with_session_idle_timeout import ClusterConfigWithSessionIdleTimeout
|
|
142
|
+
from openapi_client.models.cluster_environments_query import ClusterEnvironmentsQuery
|
|
141
143
|
from openapi_client.models.cluster_event import ClusterEvent
|
|
142
144
|
from openapi_client.models.cluster_events_output import ClusterEventsOutput
|
|
143
145
|
from openapi_client.models.cluster_features import ClusterFeatures
|
|
@@ -469,6 +471,7 @@ from openapi_client.models.service_observability_urls import ServiceObservabilit
|
|
|
469
471
|
from openapi_client.models.service_sort_field import ServiceSortField
|
|
470
472
|
from openapi_client.models.service_type import ServiceType
|
|
471
473
|
from openapi_client.models.service_usage import ServiceUsage
|
|
474
|
+
from openapi_client.models.service_version_state import ServiceVersionState
|
|
472
475
|
from openapi_client.models.session import Session
|
|
473
476
|
from openapi_client.models.session_access import SessionAccess
|
|
474
477
|
from openapi_client.models.session_autosync_sessions_update_message import SessionAutosyncSessionsUpdateMessage
|