anyscale 0.24.10__tar.gz → 0.24.12__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.10 → anyscale-0.24.12}/PKG-INFO +1 -1
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/anyscale_client/anyscale_client.py +97 -26
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/anyscale_client/common.py +35 -7
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/anyscale_client/fake_anyscale_client.py +83 -18
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/models/__init__.py +0 -1
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/models/model_base.py +42 -7
- anyscale-0.24.12/anyscale/_private/sdk/base_sdk.py +28 -0
- anyscale-0.24.12/anyscale/_private/workload/__init__.py +2 -0
- {anyscale-0.24.10/anyscale/_private/models → anyscale-0.24.12/anyscale/_private/workload}/workload_config.py +16 -4
- {anyscale-0.24.10/anyscale/_private/sdk → anyscale-0.24.12/anyscale/_private/workload}/workload_sdk.py +33 -55
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/README.md +3 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/__init__.py +2 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/api/default_api.py +118 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/__init__.py +2 -0
- anyscale-0.24.12/anyscale/client/openapi_client/models/appconfig_list_response.py +147 -0
- anyscale-0.24.12/anyscale/client/openapi_client/models/cluster_environments_query.py +262 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +3 -3
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +5 -5
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/job_commands.py +67 -22
- anyscale-0.24.12/anyscale/compute_config/__init__.py +5 -0
- anyscale-0.24.12/anyscale/compute_config/_private/compute_config_sdk.py +248 -0
- anyscale-0.24.12/anyscale/compute_config/models.py +219 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/job/_private/job_sdk.py +30 -6
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/job/models.py +8 -5
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +3 -3
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/service/_private/service_sdk.py +50 -25
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/service/models.py +122 -33
- anyscale-0.24.12/anyscale/version.py +1 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/PKG-INFO +1 -1
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/SOURCES.txt +15 -2
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_job_controller.py +1 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/BUILD.bazel +1 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/common.py +3 -8
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_anyscale_client.py +134 -17
- anyscale-0.24.12/tests/unit/test_compute_config_models.py +405 -0
- anyscale-0.24.12/tests/unit/test_compute_config_sdk.py +663 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/BUILD.bazel +8 -0
- anyscale-0.24.12/tests/unit/test_files/compute_config_files/full.yaml +34 -0
- anyscale-0.24.12/tests/unit/test_files/compute_config_files/minimal.yaml +1 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/full.yaml +4 -1
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_job_cli.py +73 -5
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_job_sdk.py +42 -6
- anyscale-0.24.12/tests/unit/test_model_base.py +324 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_service_cli.py +13 -5
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_service_models.py +51 -26
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_service_sdk.py +85 -24
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_workload_config.py +17 -4
- anyscale-0.24.10/anyscale/version.py +0 -1
- anyscale-0.24.10/tests/unit/test_model_base.py +0 -148
- {anyscale-0.24.10 → anyscale-0.24.12}/.covrc +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/LICENSE +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/NOTICE +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/README.md +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/models/image_uri.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/MANIFEST.in +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/authenticate.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/background/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/cli_logger.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/.gitignore +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/access_mode.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_endpoint.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_endpoint_event.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_endpoint_event_level.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_endpoint_event_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_endpoint_scope.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_model_configuration.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aica_observability_urls.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aicamodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aicamodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/alert_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/autosync_session_id.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/autosyncsessionid_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/autosyncsessionid_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_credentials.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/baseimagesenum.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/body_upload_file_api_v2_files_post.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/buffer_registration.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/file_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/filemodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/fine_tuning_job_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/finish_ft_job_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/import_aica_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/migration_result.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/migrationresult_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/named_entity.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/node_registration_sagemaker.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_public_identifier.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationpublicidentifier_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/platform_fine_tuning_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/platformfinetuningjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/presigned_upload_file.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/presigned_upload_file_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/product_autoscaler_flag.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/productautoscalerflag_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/service_version_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/stripe_checkout_session_url_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/templatized_compute_configs.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_endpoint.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_model_deployment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/verify_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/verifyresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/setup.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/client/tox.ini +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/cluster_env.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/cloud_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/fine_tune_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/conf.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/connect.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/cloud_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/fine_tune_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/feature_flags.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/fingerprint.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/integrations.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/job/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/job/commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/links.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/models/fine_tune_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/models/job_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/models/service_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/scripts.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/apply_service_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/service_version_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/service/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/service/commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/snapshot.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/snapshot_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/tables.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/s3.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale/workspace.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/requirements.in +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/setup.cfg +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/setup.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/api_utils/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/api_utils/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/api_utils/test_logs_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/cloud_formation_template_oa.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/commands/test_cloud_command.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/conftest.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/__init__.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_cloud_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_cluster_env_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_compute_config_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_machine_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_machine_pool_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/controllers/test_service_controller.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/formatters/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/deployment_manager_resources_get.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/global_firewall_with_private_service_rule.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/global_firewall_with_service_rule.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/global_firewall_without_service_rule.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_apis_disabled.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/proxy_only_subnet_missing.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/proxy_only_subnet_no_subnets.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/proxy_only_subnet_present.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/proxy_only_subnet_wrong_vpc.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_memorystore.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_memorystore_happy.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_memorystore_read_replica_disabled.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_memorystore_standard_tier.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/regional_memorystore_tls_enabled.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/service_get.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/sdk/test_upload_working_dir.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_authenticate.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_aws_iam_policies.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cli_logger.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cli_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cloud.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cloud_resource.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cluster.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_cluster_env.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_component_activity.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_connect.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_imports_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_integrations.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_network_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_project.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_runtime_env.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_s3.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_snapshot_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/test_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/containerfiles/Containerfile +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/job_config_files/empty.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/job_config_files/full.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/job_config_files/minimal.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/job_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/job_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/requirements_files/comments.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/requirements_files/empty.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/requirements_files/multi_line.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/requirements_files/multi_line_with_whitespace.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/requirements_files/single_line.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/requirements_files/test_workspace_requirements.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/empty.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/minimal.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/multiple_applications.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/name_and_gibberish.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/service_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/working_dirs/basic/hi.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/working_dirs/basic/main.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/working_dirs/nested/requirements.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/working_dirs/nested/subdir/app.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/working_dirs/symlink_to_basic/hi.txt +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_files/working_dirs/symlink_to_basic/main.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_image_uri.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/unit/test_job_models.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/utils/BUILD.bazel +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/utils/test_cli_version_check_util.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/utils/test_cloud_update_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/utils/test_cloud_utils.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/utils/test_cluster_debug.py +0 -0
- {anyscale-0.24.10 → anyscale-0.24.12}/tests/utils/test_workspace_utils.py +0 -0
|
@@ -18,9 +18,11 @@ from anyscale.cli_logger import BlockLogger
|
|
|
18
18
|
from anyscale.client.openapi_client.api.default_api import DefaultApi as InternalApi
|
|
19
19
|
from anyscale.client.openapi_client.models import (
|
|
20
20
|
ArchiveStatus,
|
|
21
|
+
Cloud,
|
|
21
22
|
CloudDataBucketFileType,
|
|
22
23
|
CloudDataBucketPresignedUploadInfo,
|
|
23
24
|
CloudDataBucketPresignedUploadRequest,
|
|
25
|
+
CloudNameOptions,
|
|
24
26
|
ComputeTemplateConfig,
|
|
25
27
|
ComputeTemplateQuery,
|
|
26
28
|
CreateComputeTemplate,
|
|
@@ -28,11 +30,11 @@ from anyscale.client.openapi_client.models import (
|
|
|
28
30
|
DecoratedComputeTemplate,
|
|
29
31
|
InternalProductionJob,
|
|
30
32
|
)
|
|
33
|
+
from anyscale.client.openapi_client.rest import ApiException as InternalApiException
|
|
31
34
|
from anyscale.cluster_compute import parse_cluster_compute_name_version
|
|
32
35
|
from anyscale.sdk.anyscale_client.api.default_api import DefaultApi as ExternalApi
|
|
33
36
|
from anyscale.sdk.anyscale_client.models import (
|
|
34
37
|
ApplyServiceModel,
|
|
35
|
-
Cloud,
|
|
36
38
|
Cluster,
|
|
37
39
|
ClusterCompute,
|
|
38
40
|
ClusterComputeConfig,
|
|
@@ -49,7 +51,8 @@ from anyscale.sdk.anyscale_client.models.create_cluster_environment import (
|
|
|
49
51
|
from anyscale.sdk.anyscale_client.models.create_cluster_environment_build import (
|
|
50
52
|
CreateClusterEnvironmentBuild,
|
|
51
53
|
)
|
|
52
|
-
from anyscale.sdk.anyscale_client.rest import ApiException
|
|
54
|
+
from anyscale.sdk.anyscale_client.rest import ApiException as ExternalApiException
|
|
55
|
+
from anyscale.shared_anyscale_utils.conf import ANYSCALE_HOST
|
|
53
56
|
from anyscale.util import (
|
|
54
57
|
get_cluster_model_for_current_workspace,
|
|
55
58
|
get_endpoint,
|
|
@@ -70,6 +73,8 @@ WORKSPACE_ID_ENV_VAR = "ANYSCALE_EXPERIMENTAL_WORKSPACE_ID"
|
|
|
70
73
|
OVERWRITE_EXISTING_CLOUD_STORAGE_FILES = (
|
|
71
74
|
os.environ.get("ANYSCALE_OVERWRITE_EXISTING_CLOUD_STORAGE_FILES", "0") == "1"
|
|
72
75
|
)
|
|
76
|
+
|
|
77
|
+
# internal_logger is used for logging internal errors or debug messages that we do not expect users to see.
|
|
73
78
|
internal_logger = logging.getLogger(__name__)
|
|
74
79
|
|
|
75
80
|
|
|
@@ -84,6 +89,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
84
89
|
sleep: Optional[Callable[[float], None]] = None,
|
|
85
90
|
workspace_requirements_file_path: str = WORKSPACE_REQUIREMENTS_FILE_PATH,
|
|
86
91
|
logger: Optional[BlockLogger] = None,
|
|
92
|
+
host: Optional[str] = None,
|
|
87
93
|
):
|
|
88
94
|
if api_clients is None:
|
|
89
95
|
auth_block: AuthenticationBlock = get_auth_api_client(
|
|
@@ -100,19 +106,26 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
100
106
|
self._cloud_id_cache: Dict[Optional[str], str] = {}
|
|
101
107
|
self._current_workspace_cluster: Optional[Cluster] = None
|
|
102
108
|
self._logger = logger or BlockLogger()
|
|
109
|
+
self._host = host or ANYSCALE_HOST
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
def host(self) -> str:
|
|
113
|
+
return self._host
|
|
103
114
|
|
|
104
115
|
@property
|
|
105
116
|
def logger(self) -> BlockLogger:
|
|
106
117
|
return self._logger
|
|
107
118
|
|
|
108
119
|
def get_job_ui_url(self, job_id: str) -> str:
|
|
109
|
-
return get_endpoint(f"/jobs/{job_id}")
|
|
120
|
+
return get_endpoint(f"/jobs/{job_id}", host=self.host)
|
|
110
121
|
|
|
111
122
|
def get_service_ui_url(self, service_id: str) -> str:
|
|
112
|
-
return get_endpoint(f"/services/{service_id}")
|
|
123
|
+
return get_endpoint(f"/services/{service_id}", host=self.host)
|
|
113
124
|
|
|
114
125
|
def get_build_ui_url(self, cluster_env_id, build_id: str) -> str:
|
|
115
|
-
return get_endpoint(
|
|
126
|
+
return get_endpoint(
|
|
127
|
+
f"/container-images/{cluster_env_id}/versions/{build_id}", host=self.host
|
|
128
|
+
)
|
|
116
129
|
|
|
117
130
|
def get_current_workspace_id(self) -> Optional[str]:
|
|
118
131
|
return os.environ.get(WORKSPACE_ID_ENV_VAR, None)
|
|
@@ -161,11 +174,24 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
161
174
|
cluster_compute_config: ClusterComputeConfig = cluster_compute.config
|
|
162
175
|
return cluster_compute_config.cloud_id
|
|
163
176
|
|
|
177
|
+
def _get_cloud_id_by_name(self, cloud_name: str) -> Optional[str]:
|
|
178
|
+
try:
|
|
179
|
+
return self._internal_api_client.find_cloud_by_name_api_v2_clouds_find_by_name_post(
|
|
180
|
+
CloudNameOptions(name=cloud_name),
|
|
181
|
+
).result.id
|
|
182
|
+
except InternalApiException as e:
|
|
183
|
+
if e.status == 404:
|
|
184
|
+
return None
|
|
185
|
+
|
|
186
|
+
raise e from None
|
|
187
|
+
|
|
164
188
|
def get_cloud_id(
|
|
165
189
|
self, cloud_name: Optional[str] = None, compute_config_id: Optional[str] = None
|
|
166
|
-
) ->
|
|
167
|
-
if cloud_name is not None:
|
|
168
|
-
raise
|
|
190
|
+
) -> str:
|
|
191
|
+
if cloud_name is not None and compute_config_id is not None:
|
|
192
|
+
raise ValueError(
|
|
193
|
+
"Only one of cloud_name or compute_config_id should be provided."
|
|
194
|
+
)
|
|
169
195
|
|
|
170
196
|
if compute_config_id is not None:
|
|
171
197
|
return self._get_cloud_id_for_compute_config_id(compute_config_id)
|
|
@@ -173,8 +199,13 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
173
199
|
if cloud_name in self._cloud_id_cache:
|
|
174
200
|
return self._cloud_id_cache[cloud_name]
|
|
175
201
|
|
|
176
|
-
|
|
177
|
-
|
|
202
|
+
if cloud_name is not None:
|
|
203
|
+
cloud_id = self._get_cloud_id_by_name(cloud_name)
|
|
204
|
+
if cloud_id is None:
|
|
205
|
+
raise RuntimeError(f"Cloud '{cloud_name}' not found.")
|
|
206
|
+
elif self.inside_workspace():
|
|
207
|
+
workspace_cluster = self.get_current_workspace_cluster()
|
|
208
|
+
assert workspace_cluster is not None
|
|
178
209
|
# NOTE(edoakes): the Cluster model has a compute_config_config model that includes
|
|
179
210
|
# its cloud ID, but it's not always populated.
|
|
180
211
|
# TODO(edoakes): add cloud_id to the Cluster model to avoid a second RTT.
|
|
@@ -182,16 +213,30 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
182
213
|
workspace_cluster.cluster_compute_id
|
|
183
214
|
)
|
|
184
215
|
else:
|
|
185
|
-
|
|
186
|
-
cloud_id = result.id
|
|
216
|
+
cloud_id = self._external_api_client.get_default_cloud().result.id
|
|
187
217
|
|
|
218
|
+
assert cloud_id is not None
|
|
188
219
|
self._cloud_id_cache[cloud_name] = cloud_id
|
|
189
220
|
return cloud_id
|
|
190
221
|
|
|
191
|
-
def
|
|
222
|
+
def get_cloud(self, *, cloud_id: str) -> Optional[Cloud]:
|
|
223
|
+
try:
|
|
224
|
+
cloud: Cloud = self._internal_api_client.get_cloud_api_v2_clouds_cloud_id_get(
|
|
225
|
+
cloud_id
|
|
226
|
+
).result
|
|
227
|
+
return cloud
|
|
228
|
+
except InternalApiException as e:
|
|
229
|
+
if e.status == 404:
|
|
230
|
+
return None
|
|
231
|
+
|
|
232
|
+
raise e from None
|
|
233
|
+
|
|
234
|
+
def create_compute_config(
|
|
235
|
+
self, config: ComputeTemplateConfig, *, name: Optional[str] = None
|
|
236
|
+
) -> str:
|
|
192
237
|
return self._internal_api_client.create_compute_template_api_v2_compute_templates_post(
|
|
193
238
|
create_compute_template=CreateComputeTemplate(
|
|
194
|
-
config=config, anonymous=
|
|
239
|
+
config=config, name=name, anonymous=name is None
|
|
195
240
|
)
|
|
196
241
|
).result.id
|
|
197
242
|
|
|
@@ -203,7 +248,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
203
248
|
compute_config_id
|
|
204
249
|
).result
|
|
205
250
|
return cluster_compute
|
|
206
|
-
except
|
|
251
|
+
except InternalApiException as e:
|
|
207
252
|
if e.status == 404:
|
|
208
253
|
return None
|
|
209
254
|
|
|
@@ -253,13 +298,16 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
253
298
|
standard_template = self._build_standard_compute_template_from_existing_auto_config(
|
|
254
299
|
workspace_config
|
|
255
300
|
)
|
|
256
|
-
return self.
|
|
301
|
+
return self.create_compute_config(standard_template,)
|
|
257
302
|
else:
|
|
258
303
|
return workspace_cluster.cluster_compute_id
|
|
259
304
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
305
|
+
return self.get_default_compute_config(cloud_id=self.get_cloud_id()).id
|
|
306
|
+
|
|
307
|
+
def get_default_compute_config(self, *, cloud_id: str) -> ClusterCompute:
|
|
308
|
+
return self._external_api_client.get_default_cluster_compute(
|
|
309
|
+
cloud_id=cloud_id,
|
|
310
|
+
).result
|
|
263
311
|
|
|
264
312
|
def _build_standard_compute_template_from_existing_auto_config(
|
|
265
313
|
self, compute_config: ClusterComputeConfig
|
|
@@ -303,18 +351,41 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
303
351
|
cluster_env_build_id
|
|
304
352
|
).result
|
|
305
353
|
return ImageURI.from_str(build.docker_image_name)
|
|
306
|
-
except
|
|
354
|
+
except ExternalApiException as e:
|
|
307
355
|
if e.status == 404:
|
|
308
356
|
return None
|
|
309
357
|
|
|
310
358
|
raise e from None
|
|
311
359
|
|
|
312
|
-
def
|
|
313
|
-
|
|
360
|
+
def build_image_from_requirements(
|
|
361
|
+
self, cluster_env_name: str, base_build_id: str, requirements: List[str]
|
|
362
|
+
) -> str:
|
|
363
|
+
if requirements:
|
|
364
|
+
self.logger.info(f"Building image with requirements: {requirements}.")
|
|
365
|
+
base_build = self._external_api_client.get_cluster_environment_build(
|
|
366
|
+
base_build_id
|
|
367
|
+
).result
|
|
368
|
+
if (
|
|
369
|
+
base_build.status == ClusterEnvironmentBuildStatus.SUCCEEDED
|
|
370
|
+
and base_build.docker_image_name
|
|
371
|
+
):
|
|
372
|
+
lines = [
|
|
373
|
+
"# syntax=docker/dockerfile:1",
|
|
374
|
+
f"FROM {base_build.docker_image_name}",
|
|
375
|
+
]
|
|
376
|
+
for requirement in requirements:
|
|
377
|
+
lines.append(f'RUN pip install "{requirement}"')
|
|
378
|
+
return self.get_cluster_env_build_id_from_containerfile(
|
|
379
|
+
cluster_env_name, "\n".join(lines)
|
|
380
|
+
)
|
|
381
|
+
else:
|
|
382
|
+
raise RuntimeError(
|
|
383
|
+
f"Base build {base_build_id} is not a successful build."
|
|
384
|
+
)
|
|
385
|
+
else:
|
|
386
|
+
return base_build_id
|
|
314
387
|
|
|
315
|
-
|
|
316
|
-
Else it will return the default cluster environment build ID.
|
|
317
|
-
"""
|
|
388
|
+
def get_default_build_id(self) -> str:
|
|
318
389
|
workspace_cluster = self.get_current_workspace_cluster()
|
|
319
390
|
if workspace_cluster is not None:
|
|
320
391
|
return workspace_cluster.cluster_environment_build_id
|
|
@@ -420,7 +491,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
420
491
|
raise RuntimeError(
|
|
421
492
|
f"Legacy cluster environment build '{identifier}' is not a successful build."
|
|
422
493
|
)
|
|
423
|
-
except
|
|
494
|
+
except ExternalApiException as e:
|
|
424
495
|
if e.status == 404:
|
|
425
496
|
raise RuntimeError(
|
|
426
497
|
f"Legacy cluster environment '{identifier}' is not found."
|
|
@@ -3,6 +3,7 @@ from typing import List, Optional
|
|
|
3
3
|
|
|
4
4
|
from anyscale._private.models.image_uri import ImageURI
|
|
5
5
|
from anyscale.client.openapi_client.models import (
|
|
6
|
+
Cloud,
|
|
6
7
|
ComputeTemplateConfig,
|
|
7
8
|
CreateInternalProductionJob,
|
|
8
9
|
DecoratedComputeTemplate,
|
|
@@ -11,6 +12,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
11
12
|
from anyscale.sdk.anyscale_client.models import (
|
|
12
13
|
ApplyServiceModel,
|
|
13
14
|
Cluster,
|
|
15
|
+
ClusterCompute,
|
|
14
16
|
ServiceModel,
|
|
15
17
|
)
|
|
16
18
|
from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
@@ -20,7 +22,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
|
20
22
|
# Maybe just make it part of the release process to update it, or fetch the
|
|
21
23
|
# default builds and get the latest one. The best thing to do is probably
|
|
22
24
|
# to populate this in the backend.
|
|
23
|
-
DEFAULT_RAY_VERSION = "2.
|
|
25
|
+
DEFAULT_RAY_VERSION = "2.10.0"
|
|
24
26
|
DEFAULT_PYTHON_VERSION = "py310"
|
|
25
27
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
|
26
28
|
|
|
@@ -53,7 +55,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
53
55
|
def get_workspace_requirements_path(self) -> Optional[str]:
|
|
54
56
|
"""Returns the path to the workspace-managed requirements file.
|
|
55
57
|
|
|
56
|
-
Returns None if dependency tracking is disable or the file does not exist.
|
|
58
|
+
Returns None if dependency tracking is disable or the file does not exist or is not in a workspace.
|
|
57
59
|
"""
|
|
58
60
|
raise NotImplementedError
|
|
59
61
|
|
|
@@ -83,7 +85,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
83
85
|
@abstractmethod
|
|
84
86
|
def get_cloud_id(
|
|
85
87
|
self, *, cloud_name: Optional[str] = None, compute_config_id: Optional[str]
|
|
86
|
-
) ->
|
|
88
|
+
) -> str:
|
|
87
89
|
"""Get the cloud ID for the provided cloud name or compute config ID.
|
|
88
90
|
|
|
89
91
|
If both arguments are None:
|
|
@@ -93,8 +95,21 @@ class AnyscaleClientInterface(ABC):
|
|
|
93
95
|
raise NotImplementedError
|
|
94
96
|
|
|
95
97
|
@abstractmethod
|
|
96
|
-
def
|
|
97
|
-
"""
|
|
98
|
+
def get_cloud(self, *, cloud_id: str) -> Optional[Cloud]:
|
|
99
|
+
"""Get the cloud model for the provided cloud ID.
|
|
100
|
+
|
|
101
|
+
Returns `None` if the cloud ID was not found.
|
|
102
|
+
"""
|
|
103
|
+
raise NotImplementedError
|
|
104
|
+
|
|
105
|
+
@abstractmethod
|
|
106
|
+
def create_compute_config(
|
|
107
|
+
self, config: ComputeTemplateConfig, *, name: Optional[str] = None
|
|
108
|
+
) -> str:
|
|
109
|
+
"""Create a compute config and return its ID.
|
|
110
|
+
|
|
111
|
+
If a name is not provided, the compute config will be "anonymous."
|
|
112
|
+
"""
|
|
98
113
|
raise NotImplementedError
|
|
99
114
|
|
|
100
115
|
@abstractmethod
|
|
@@ -121,12 +136,25 @@ class AnyscaleClientInterface(ABC):
|
|
|
121
136
|
"""
|
|
122
137
|
raise NotImplementedError
|
|
123
138
|
|
|
139
|
+
@abstractmethod
|
|
140
|
+
def get_default_compute_config(self, *, cloud_id: str) -> ClusterCompute:
|
|
141
|
+
"""Get the default compute config for the provided cloud ID."""
|
|
142
|
+
raise NotImplementedError
|
|
143
|
+
|
|
124
144
|
@abstractmethod
|
|
125
145
|
def get_default_build_id(self) -> str:
|
|
126
146
|
"""Get the default build id.
|
|
127
147
|
|
|
128
|
-
If running in a workspace, it
|
|
129
|
-
Else it
|
|
148
|
+
If running in a workspace, it returns the workspace build id.
|
|
149
|
+
Else it returns the default build id.
|
|
150
|
+
"""
|
|
151
|
+
raise NotImplementedError
|
|
152
|
+
|
|
153
|
+
@abstractmethod
|
|
154
|
+
def build_image_from_requirements(
|
|
155
|
+
self, cluster_env_name: str, base_build_id: str, requirements: List[str]
|
|
156
|
+
) -> str:
|
|
157
|
+
"""Build an image with the provided requirements and base_build_id.
|
|
130
158
|
"""
|
|
131
159
|
raise NotImplementedError
|
|
132
160
|
|
{anyscale-0.24.10 → anyscale-0.24.12}/anyscale/_private/anyscale_client/fake_anyscale_client.py
RENAMED
|
@@ -9,6 +9,7 @@ from anyscale._private.anyscale_client.common import (
|
|
|
9
9
|
from anyscale._private.models.image_uri import ImageURI
|
|
10
10
|
from anyscale.cli_logger import BlockLogger
|
|
11
11
|
from anyscale.client.openapi_client.models import (
|
|
12
|
+
Cloud,
|
|
12
13
|
ComputeTemplateConfig,
|
|
13
14
|
CreateInternalProductionJob,
|
|
14
15
|
DecoratedComputeTemplate,
|
|
@@ -22,6 +23,8 @@ from anyscale.sdk.anyscale_client.models import (
|
|
|
22
23
|
ApplyServiceModel,
|
|
23
24
|
Cluster,
|
|
24
25
|
ClusterCompute,
|
|
26
|
+
ClusterComputeConfig,
|
|
27
|
+
ComputeNodeType,
|
|
25
28
|
ServiceEventCurrentState,
|
|
26
29
|
ServiceModel,
|
|
27
30
|
)
|
|
@@ -39,6 +42,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
39
42
|
BASE_UI_URL = "http://fake.com"
|
|
40
43
|
CLOUD_BUCKET = "s3://fake-bucket/{cloud_id}"
|
|
41
44
|
DEFAULT_CLOUD_ID = "fake-default-cloud-id"
|
|
45
|
+
DEFAULT_CLOUD_NAME = "fake-default-cloud"
|
|
42
46
|
DEFAULT_PROJECT_ID = "fake-default-project-id"
|
|
43
47
|
DEFAULT_CLUSTER_COMPUTE_ID = "fake-default-cluster-compute-id"
|
|
44
48
|
DEFAULT_CLUSTER_ENV_BUILD_ID = "fake-default-cluster-env-build-id"
|
|
@@ -68,6 +72,32 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
68
72
|
self._upload_uri_mapping: Dict[str, str] = {}
|
|
69
73
|
self._submitted_job: Optional[CreateInternalProductionJob] = None
|
|
70
74
|
|
|
75
|
+
# Cloud ID -> Cloud.
|
|
76
|
+
self._clouds: Dict[str, Cloud] = {
|
|
77
|
+
self.DEFAULT_CLOUD_ID: Cloud(
|
|
78
|
+
id=self.DEFAULT_CLOUD_ID,
|
|
79
|
+
name=self.DEFAULT_CLOUD_NAME,
|
|
80
|
+
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
81
|
+
),
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
# Cloud ID -> default ClusterCompute.
|
|
85
|
+
self._default_compute_configs: Dict[str, ClusterCompute] = {
|
|
86
|
+
self.DEFAULT_CLOUD_ID: ClusterCompute(
|
|
87
|
+
id=self.DEFAULT_CLUSTER_COMPUTE_ID,
|
|
88
|
+
config=ClusterComputeConfig(
|
|
89
|
+
cloud_id=self.DEFAULT_CLOUD_ID,
|
|
90
|
+
head_node_type=ComputeNodeType(
|
|
91
|
+
name="default-head-node",
|
|
92
|
+
instance_type="m5.2xlarge",
|
|
93
|
+
resources={"CPU": 8, "GPU": 1},
|
|
94
|
+
),
|
|
95
|
+
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
96
|
+
),
|
|
97
|
+
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
98
|
+
),
|
|
99
|
+
}
|
|
100
|
+
|
|
71
101
|
def get_job_ui_url(self, job_id: str) -> str:
|
|
72
102
|
return f"{self.BASE_UI_URL}/jobs/{job_id}"
|
|
73
103
|
|
|
@@ -107,7 +137,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
107
137
|
return self.get_current_workspace_cluster() is not None
|
|
108
138
|
|
|
109
139
|
def get_workspace_requirements_path(self) -> Optional[str]:
|
|
110
|
-
|
|
140
|
+
if self.inside_workspace():
|
|
141
|
+
return self._requirements_path
|
|
142
|
+
return None
|
|
111
143
|
|
|
112
144
|
def get_current_workspace_cluster(self) -> Optional[Cluster]:
|
|
113
145
|
return self._workspace_cluster
|
|
@@ -127,44 +159,52 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
127
159
|
|
|
128
160
|
return self.DEFAULT_PROJECT_ID
|
|
129
161
|
|
|
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
162
|
def get_cloud_id(
|
|
136
163
|
self,
|
|
137
164
|
*,
|
|
138
165
|
cloud_name: Optional[str] = None,
|
|
139
166
|
compute_config_id: Optional[str] = None,
|
|
140
|
-
) ->
|
|
167
|
+
) -> str:
|
|
141
168
|
assert not (cloud_name and compute_config_id)
|
|
142
169
|
workspace_cluster = self.get_current_workspace_cluster()
|
|
143
170
|
if workspace_cluster is not None:
|
|
144
171
|
return self.WORKSPACE_CLOUD_ID
|
|
145
172
|
|
|
146
173
|
if compute_config_id is not None:
|
|
147
|
-
return self.
|
|
174
|
+
return self._compute_configs[compute_config_id].config.cloud_id
|
|
148
175
|
|
|
149
176
|
if cloud_name is None:
|
|
150
177
|
return self.DEFAULT_CLOUD_ID
|
|
151
178
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
179
|
+
return f"cloud-{cloud_name}-id"
|
|
180
|
+
|
|
181
|
+
def add_cloud(self, cloud: Cloud):
|
|
182
|
+
self._clouds[cloud.id] = cloud
|
|
183
|
+
|
|
184
|
+
def get_cloud(self, *, cloud_id: str) -> Optional[Cloud]:
|
|
185
|
+
return self._clouds.get(cloud_id, None)
|
|
155
186
|
|
|
156
187
|
def add_compute_config(self, compute_config: DecoratedComputeTemplate):
|
|
157
188
|
self._compute_configs[compute_config.id] = compute_config
|
|
158
189
|
self._compute_config_name_to_id[compute_config.name] = compute_config.id
|
|
159
190
|
|
|
160
|
-
def
|
|
161
|
-
|
|
191
|
+
def create_compute_config(
|
|
192
|
+
self, config: ComputeTemplateConfig, *, name: Optional[str] = None
|
|
193
|
+
) -> str:
|
|
194
|
+
unique_id = str(uuid.uuid4())
|
|
195
|
+
compute_config_id = f"compute-config-id-{unique_id}"
|
|
196
|
+
if name is None:
|
|
197
|
+
anonymous = True
|
|
198
|
+
name = f"anonymous-compute-config-{unique_id}"
|
|
199
|
+
else:
|
|
200
|
+
anonymous = False
|
|
201
|
+
|
|
162
202
|
self.add_compute_config(
|
|
163
203
|
DecoratedComputeTemplate(
|
|
164
204
|
id=compute_config_id,
|
|
165
|
-
name=
|
|
205
|
+
name=name,
|
|
166
206
|
config=config,
|
|
167
|
-
anonymous=
|
|
207
|
+
anonymous=anonymous,
|
|
168
208
|
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
169
209
|
),
|
|
170
210
|
)
|
|
@@ -185,7 +225,15 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
185
225
|
if workspace_cluster is not None:
|
|
186
226
|
return workspace_cluster.cluster_compute_id
|
|
187
227
|
|
|
188
|
-
return self.
|
|
228
|
+
return self.get_default_compute_config(cloud_id=self.get_cloud_id()).id
|
|
229
|
+
|
|
230
|
+
def set_default_compute_config(
|
|
231
|
+
self, compute_config: ClusterCompute, *, cloud_id: str
|
|
232
|
+
):
|
|
233
|
+
self._default_compute_configs[cloud_id] = compute_config
|
|
234
|
+
|
|
235
|
+
def get_default_compute_config(self, *, cloud_id: str) -> ClusterCompute:
|
|
236
|
+
return self._default_compute_configs[cloud_id]
|
|
189
237
|
|
|
190
238
|
def set_image_uri_mapping(self, image_uri: ImageURI, build_id: str):
|
|
191
239
|
self._image_uri_to_build_id[image_uri] = build_id
|
|
@@ -198,9 +246,26 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
198
246
|
workspace_cluster = self.get_current_workspace_cluster()
|
|
199
247
|
if workspace_cluster is not None:
|
|
200
248
|
return workspace_cluster.cluster_environment_build_id
|
|
201
|
-
|
|
202
249
|
return self.DEFAULT_CLUSTER_ENV_BUILD_ID
|
|
203
250
|
|
|
251
|
+
def build_image_from_requirements(
|
|
252
|
+
self, cluster_env_name: str, base_build_id: str, requirements: List[str]
|
|
253
|
+
) -> str:
|
|
254
|
+
if not requirements:
|
|
255
|
+
return base_build_id
|
|
256
|
+
|
|
257
|
+
image_uri = self.get_cluster_env_build_image_uri(base_build_id)
|
|
258
|
+
lines = [
|
|
259
|
+
"# syntax=docker/dockerfile:1",
|
|
260
|
+
f"FROM {image_uri}",
|
|
261
|
+
]
|
|
262
|
+
for requirement in requirements:
|
|
263
|
+
lines.append(f'RUN pip install "{requirement}"')
|
|
264
|
+
|
|
265
|
+
return self.get_cluster_env_build_id_from_containerfile(
|
|
266
|
+
cluster_env_name=cluster_env_name, containerfile="\n".join(lines),
|
|
267
|
+
)
|
|
268
|
+
|
|
204
269
|
def get_cluster_env_build_id_from_containerfile(
|
|
205
270
|
self, cluster_env_name: str, containerfile: str # noqa: ARG002
|
|
206
271
|
) -> str:
|
|
@@ -218,7 +283,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
218
283
|
def get_cluster_env_build_image_uri(
|
|
219
284
|
self, cluster_env_build_id: str
|
|
220
285
|
) -> Optional[ImageURI]:
|
|
221
|
-
return self._build_id_to_image_uri.get(cluster_env_build_id
|
|
286
|
+
return self._build_id_to_image_uri.get(cluster_env_build_id)
|
|
222
287
|
|
|
223
288
|
def update_service(self, model: ServiceModel):
|
|
224
289
|
self._services[model.id] = model
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from dataclasses import asdict, fields
|
|
2
2
|
from enum import Enum
|
|
3
|
-
|
|
3
|
+
import inspect
|
|
4
|
+
from typing import Any, Dict, Iterable, Optional, Tuple, TypeVar
|
|
4
5
|
|
|
5
6
|
import yaml
|
|
6
7
|
|
|
@@ -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,45 @@ 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(
|
|
75
|
+
cls, path: str, override: Optional[Dict[str, Any]] = None
|
|
76
|
+
) -> "ModelBase":
|
|
46
77
|
with open(path) as f:
|
|
47
|
-
|
|
78
|
+
args = yaml.safe_load(f) or {}
|
|
79
|
+
if override:
|
|
80
|
+
args.update(override)
|
|
81
|
+
return cls.from_dict(args)
|
|
48
82
|
|
|
49
83
|
def to_dict(self, *, exclude_none: bool = True) -> Dict[str, Any]:
|
|
50
84
|
"""Convert the model to a dictionary representation.
|
|
@@ -74,10 +108,11 @@ class ModelBase:
|
|
|
74
108
|
|
|
75
109
|
All fields in the constructor are supported. Those not provided will be unchanged.
|
|
76
110
|
"""
|
|
77
|
-
self_dict = self.to_dict(exclude_none=False)
|
|
78
111
|
new_instance_kwargs = {
|
|
79
|
-
field: kwargs.pop(field)
|
|
80
|
-
|
|
112
|
+
field.name: kwargs.pop(field.name)
|
|
113
|
+
if field.name in kwargs
|
|
114
|
+
else getattr(self, field.name)
|
|
115
|
+
for field in fields(self)
|
|
81
116
|
}
|
|
82
117
|
if len(kwargs) > 0:
|
|
83
118
|
raise ValueError(
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from anyscale._private.anyscale_client import (
|
|
4
|
+
AnyscaleClient,
|
|
5
|
+
AnyscaleClientInterface,
|
|
6
|
+
)
|
|
7
|
+
from anyscale.cli_logger import BlockLogger
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class BaseSDK:
|
|
11
|
+
"""Shared parent class for all SDKs."""
|
|
12
|
+
|
|
13
|
+
def __init__(
|
|
14
|
+
self,
|
|
15
|
+
*,
|
|
16
|
+
logger: Optional[BlockLogger] = None,
|
|
17
|
+
client: Optional[AnyscaleClientInterface] = None,
|
|
18
|
+
):
|
|
19
|
+
self._logger = logger or BlockLogger()
|
|
20
|
+
self._client = client or AnyscaleClient()
|
|
21
|
+
|
|
22
|
+
@property
|
|
23
|
+
def logger(self) -> BlockLogger:
|
|
24
|
+
return self._logger
|
|
25
|
+
|
|
26
|
+
@property
|
|
27
|
+
def client(self) -> AnyscaleClientInterface:
|
|
28
|
+
return self._client
|