anyscale 0.24.60__tar.gz → 0.24.61__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.60 → anyscale-0.24.61}/PKG-INFO +1 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/anyscale_client/anyscale_client.py +60 -67
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/anyscale_client/common.py +15 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/anyscale_client/fake_anyscale_client.py +29 -5
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/docgen/generator.py +21 -7
- anyscale-0.24.61/anyscale/api_utils/common_utils.py +81 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/README.md +2 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/__init__.py +1 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/api/default_api.py +122 -3
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/__init__.py +1 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aviary_model_config_v2.py +79 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/baseimagesenum.py +51 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/fine_tuned_model.py +136 -114
- anyscale-0.24.61/anyscale/client/openapi_client/models/finetunedmodel_response.py +121 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +49 -1
- anyscale-0.24.61/anyscale/commands/command_examples.py +11 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/job_commands.py +6 -2
- anyscale-0.24.61/anyscale/commands/llm/models_commands.py +111 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/util.py +11 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/cloud_controller.py +10 -4
- anyscale-0.24.61/anyscale/controllers/llm/models_controller.py +83 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/job/models.py +2 -11
- anyscale-0.24.61/anyscale/llm/models/__init__.py +2 -0
- anyscale-0.24.61/anyscale/llm/models/_private/models_sdk.py +38 -0
- anyscale-0.24.61/anyscale/llm/models/commands.py +93 -0
- anyscale-0.24.61/anyscale/llm/models/sdk.py +62 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +51 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/python_version.py +2 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +49 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/ray_utils.py +8 -0
- anyscale-0.24.61/anyscale/version.py +1 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/PKG-INFO +1 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/SOURCES.txt +4 -2
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/sdk/test_upload_working_dir.py +27 -3
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_docgen.py +4 -1
- anyscale-0.24.60/anyscale/client/openapi_client/models/endpoints_fine_tuned_model_status.py +0 -99
- anyscale-0.24.60/anyscale/commands/llm/models_commands.py +0 -25
- anyscale-0.24.60/anyscale/controllers/llm/models_controller.py +0 -21
- anyscale-0.24.60/anyscale/llm/models/__init__.py +0 -2
- anyscale-0.24.60/anyscale/llm/models/_private/models_sdk.py +0 -24
- anyscale-0.24.60/anyscale/llm/models/commands.py +0 -28
- anyscale-0.24.60/anyscale/llm/models/sdk.py +0 -31
- anyscale-0.24.60/anyscale/version.py +0 -1
- {anyscale-0.24.60 → anyscale-0.24.61}/.covrc +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/LICENSE +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/NOTICE +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/README.md +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/docgen/README.md +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/docgen/__main__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/models/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/models/image_uri.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/models/model_base.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/sdk/base_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/sdk/timer.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/workload/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/workload/workload_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/workload/workload_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/MANIFEST.in +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/authenticate.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/background/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/cli_logger.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/.gitignore +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/access_mode.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_endpoint.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_endpoint_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_endpoint_event_level.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_endpoint_event_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_endpoint_scope.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_model_configuration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aica_observability_urls.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aicamodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aicamodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/alert_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscale_service_account.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscaleserviceaccount_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/application_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_credentials.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/billing_version_code.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/body_upload_file_api_v2_files_post.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/buffer_registration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_waitlist_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/company_size.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/compute_stack.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_billing_version.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_instance_usage_budget.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_job_queue_requests.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_metronome_webhook_notification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_organization_configuration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_resource_quota.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/customer_billing_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_job_queue.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedjobqueue_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedjobqueue_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/event_level.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/file_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/filemodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/fine_tune_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/fine_tuning_job_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/finetunedmodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/finish_ft_job_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/finish_ft_job_request_v2.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/grafana_dashboard.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_job_error_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_job_event_level.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_job_event_origin.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/import_aica_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/instance_usage_budget.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/instanceusagebudget_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/instanceusagebudget_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_queue.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_queue_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_queues_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/jobqueue_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/list_resource_quotas_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/metronome_customer_info_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/named_entity.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_registration_k8_s.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_registration_sagemaker.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_configuration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_configuration_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_marketing_questions.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_public_identifier.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationconfiguration_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationconfigurationresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationpublicidentifier_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/platform_fine_tuning_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/platformfinetuningjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/presigned_upload_file.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/presigned_upload_file_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/product_autoscaler_flag.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/productautoscalerflag_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/production_job_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/production_job_event_scope_filter.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/productionjobevent_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/quota.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/read_billing_version.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/readbillingversion_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/resource_quota.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/resourcequota_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/resourcequota_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/resubmit_ft_job_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_scope.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_event_verbose_message_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/service_version_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/serviceeventverbosemessagemodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/templatized_compute_configs.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/tracing_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_endpoint.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_model_deployment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/utm_fields.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/ux_instance.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/verify_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/verifyresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/waitlist_status_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/waitliststatusresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_event_source.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_event_source_filter.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspaceevent_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/setup.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/client/tox.ini +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/cluster_env.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/cloud_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/fine_tune_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/image_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/llm/dataset_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/llm/group.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/service_account_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/commands/workspace_commands_v2.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/compute_config/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/compute_config/_private/compute_config_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/compute_config/commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/compute_config/models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/conf.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/connect.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/fine_tune_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/llm/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/service_account_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/feature_flags.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/fingerprint.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/image/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/image/_private/image_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/image/commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/image/models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/integrations.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/job/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/job/_private/job_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/job/commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/links.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/llm/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/llm/dataset/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/llm/dataset/_private/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/llm/dataset/_private/sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/llm/sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/memorydb_supported_zones.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/models/fine_tune_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/models/job_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/models/service_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/schedule/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/schedule/_private/schedule_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/schedule/commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/schedule/models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/scripts.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/apply_service_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/compute_stack.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/service_version_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/tracing_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/ux_instance.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/service/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/service/_private/service_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/service/commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/service/models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/snapshot.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/tables.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/s3.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/workspace/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/workspace/_private/workspace_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/workspace/commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/workspace/models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale/workspace_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/requirements.in +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/setup.cfg +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/setup.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/api_utils/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/api_utils/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/api_utils/test_logs_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/cloud_formation_template_oa.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/commands/test_cloud_command.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/commands/test_workspace_commands.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/conftest.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/__init__.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_cloud_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_cluster_env_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_compute_config_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_job_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_machine_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_machine_pool_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_service_account_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_service_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/controllers/test_workspace_controller.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/deployment_manager_resources_get.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/global_firewall_with_private_service_rule.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/global_firewall_with_service_rule.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/global_firewall_without_service_rule.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_apis_disabled.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/proxy_only_subnet_missing.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/proxy_only_subnet_no_subnets.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/proxy_only_subnet_present.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/proxy_only_subnet_wrong_vpc.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_memorystore.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_memorystore_happy.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_memorystore_read_replica_disabled.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_memorystore_standard_tier.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/regional_memorystore_tls_enabled.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/service_get.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/sdk/test_sdk_methods.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_authenticate.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_aws_iam_policies.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cli_logger.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cli_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cloud.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cloud_resource.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cluster.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_cluster_env.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_component_activity.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_connect.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_imports_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_integrations.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_network_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_project.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_runtime_env.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_s3.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/test_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/common.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/conftest.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_anyscale_client.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_anyscale_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_compute_config_cli.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_compute_config_models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_compute_config_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/compute_config_files/empty.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/compute_config_files/full.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/compute_config_files/minimal.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/containerfiles/Containerfile +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/empty.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/existing_job_queue.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/full.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/minimal.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/minimal_job_config +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/new_job_queue.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/job_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/requirements_files/comments.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/requirements_files/empty.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/requirements_files/multi_line.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/requirements_files/multi_line_with_whitespace.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/requirements_files/single_line.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/requirements_files/test_workspace_requirements.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/schedule_config_files/empty.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/schedule_config_files/full.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/schedule_config_files/minimal.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/schedule_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/empty.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/full.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/minimal.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/multiple_applications.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/name_and_gibberish.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/service_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/working_dirs/basic/hi.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/working_dirs/basic/main.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/working_dirs/nested/requirements.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/working_dirs/nested/subdir/app.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/working_dirs/symlink_to_basic/hi.txt +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/working_dirs/symlink_to_basic/main.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/workspace_config_files/empty.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/workspace_config_files/full.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_files/workspace_config_files/minimal.yaml +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_image_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_image_uri.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_job_cli.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_job_models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_job_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_model_base.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_schedule_cli.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_schedule_models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_schedule_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_service_cli.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_service_models.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_service_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_workload_config.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_workspace_cli.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/unit/test_workspace_sdk.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/utils/BUILD.bazel +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/utils/test_cli_version_check_util.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/utils/test_cloud_update_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/utils/test_cloud_utils.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/utils/test_cluster_debug.py +0 -0
- {anyscale-0.24.60 → anyscale-0.24.61}/tests/utils/test_workspace_utils.py +0 -0
|
@@ -19,6 +19,7 @@ from anyscale._private.anyscale_client.common import (
|
|
|
19
19
|
RUNTIME_ENV_PACKAGE_FORMAT,
|
|
20
20
|
)
|
|
21
21
|
from anyscale._private.models.image_uri import ImageURI
|
|
22
|
+
from anyscale.api_utils.common_utils import source_cloud_id_and_project_id
|
|
22
23
|
from anyscale.api_utils.logs_util import _download_log_from_s3_url_sync
|
|
23
24
|
from anyscale.authenticate import AuthenticationBlock, get_auth_api_client
|
|
24
25
|
from anyscale.cli_logger import BlockLogger
|
|
@@ -37,8 +38,10 @@ from anyscale.client.openapi_client.models import (
|
|
|
37
38
|
CreateExperimentalWorkspace,
|
|
38
39
|
CreateInternalProductionJob,
|
|
39
40
|
DecoratedComputeTemplate,
|
|
41
|
+
DeletedPlatformFineTunedModel,
|
|
40
42
|
ExperimentalWorkspace,
|
|
41
43
|
FineTunedModel,
|
|
44
|
+
FinetunedmodelListResponse,
|
|
42
45
|
InternalProductionJob,
|
|
43
46
|
SessionSshKey,
|
|
44
47
|
SessionState,
|
|
@@ -1115,8 +1118,11 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1115
1118
|
if not os.path.isfile(dataset_file):
|
|
1116
1119
|
raise ValueError(f"Path '{dataset_file}' is not a valid file.")
|
|
1117
1120
|
|
|
1118
|
-
cloud_id, project_id =
|
|
1119
|
-
|
|
1121
|
+
cloud_id, project_id = source_cloud_id_and_project_id(
|
|
1122
|
+
internal_api=self._internal_api_client,
|
|
1123
|
+
external_api=self._external_api_client,
|
|
1124
|
+
cloud_id=cloud_id,
|
|
1125
|
+
project_id=project_id,
|
|
1120
1126
|
)
|
|
1121
1127
|
print(existing_dataset_id_or_name, description)
|
|
1122
1128
|
|
|
@@ -1129,72 +1135,19 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1129
1135
|
dataset_bytes = response.content
|
|
1130
1136
|
return dataset_bytes
|
|
1131
1137
|
|
|
1132
|
-
def
|
|
1133
|
-
self,
|
|
1134
|
-
) ->
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
```
|
|
1144
|
-
Cloud -----------<- Project
|
|
1145
|
-
1 Many
|
|
1146
|
-
```
|
|
1147
|
-
- Each cloud will have at least one project (the default project).
|
|
1148
|
-
- Each project will belong to exactly one cloud.
|
|
1149
|
-
"""
|
|
1150
|
-
if not cloud_id:
|
|
1151
|
-
if project_id:
|
|
1152
|
-
# 1. No cloud, project
|
|
1153
|
-
# (Use the cloud of the project)
|
|
1154
|
-
project: Project = self._external_api_client.get_project(
|
|
1155
|
-
project_id
|
|
1156
|
-
).result
|
|
1157
|
-
cloud_id = project.cloud_id
|
|
1158
|
-
else:
|
|
1159
|
-
# 2. No cloud, no project
|
|
1160
|
-
# (Use the default cloud and its default project)
|
|
1161
|
-
# (unless we are in an Anyscale workspace, then use the workspace's cloud and project)
|
|
1162
|
-
workspace_id = self.get_current_workspace_id()
|
|
1163
|
-
is_anyscale_workspace = workspace_id is not None
|
|
1164
|
-
if is_anyscale_workspace:
|
|
1165
|
-
workspace: ExperimentalWorkspace = self._internal_api_client.get_workspace_api_v2_experimental_workspaces_workspace_id_get(
|
|
1166
|
-
workspace_id
|
|
1167
|
-
).result
|
|
1168
|
-
cloud_id = workspace.cloud_id
|
|
1169
|
-
project_id = workspace.project_id
|
|
1170
|
-
else:
|
|
1171
|
-
cloud: Cloud = self._external_api_client.get_default_cloud().result
|
|
1172
|
-
cloud_id = cloud.id
|
|
1173
|
-
project = self._external_api_client.get_default_project(
|
|
1174
|
-
parent_cloud_id=cloud_id
|
|
1175
|
-
).result
|
|
1176
|
-
project_id = project.id
|
|
1138
|
+
def get_finetuned_model(
|
|
1139
|
+
self, model_id: Optional[str], job_id: Optional[str]
|
|
1140
|
+
) -> FineTunedModel:
|
|
1141
|
+
if model_id:
|
|
1142
|
+
return self._internal_api_client.get_model_api_v2_llm_models_model_id_get(
|
|
1143
|
+
model_id
|
|
1144
|
+
).result
|
|
1145
|
+
elif job_id:
|
|
1146
|
+
return self._internal_api_client.get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get(
|
|
1147
|
+
job_id
|
|
1148
|
+
).result
|
|
1177
1149
|
else:
|
|
1178
|
-
|
|
1179
|
-
# 3. Cloud, no project
|
|
1180
|
-
# (Use the default project of the cloud)
|
|
1181
|
-
project = self._external_api_client.get_default_project(
|
|
1182
|
-
parent_cloud_id=cloud_id
|
|
1183
|
-
).result
|
|
1184
|
-
project_id = project.id
|
|
1185
|
-
else:
|
|
1186
|
-
# 4. Cloud, project
|
|
1187
|
-
# (Verify that the project is in the cloud)
|
|
1188
|
-
project = self._external_api_client.get_project(project_id).result
|
|
1189
|
-
assert (
|
|
1190
|
-
project.cloud_id == cloud_id
|
|
1191
|
-
), f"Project {project_id} is not in cloud {cloud_id}."
|
|
1192
|
-
return (cloud_id, project_id) # type: ignore
|
|
1193
|
-
|
|
1194
|
-
def retrieve_finetuned_model(self, model_id: str) -> FineTunedModel:
|
|
1195
|
-
return self._internal_api_client.get_model_api_v2_llm_models_model_id_get(
|
|
1196
|
-
model_id
|
|
1197
|
-
)
|
|
1150
|
+
raise ValueError("Atleast one of `model_id` or `job_id` must be provided")
|
|
1198
1151
|
|
|
1199
1152
|
@handle_api_exceptions
|
|
1200
1153
|
def create_workspace(self, model: CreateExperimentalWorkspace) -> str:
|
|
@@ -1330,3 +1283,43 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1330
1283
|
return project.directory_name
|
|
1331
1284
|
else:
|
|
1332
1285
|
return project.name
|
|
1286
|
+
|
|
1287
|
+
def delete_finetuned_model(self, model_id: str) -> DeletedPlatformFineTunedModel:
|
|
1288
|
+
deleted_model = self._internal_api_client.delete_model_api_v2_llm_models_model_id_delete(
|
|
1289
|
+
model_id
|
|
1290
|
+
).result
|
|
1291
|
+
return deleted_model
|
|
1292
|
+
|
|
1293
|
+
def list_finetuned_models(
|
|
1294
|
+
self, cloud_id: Optional[str], project_id: Optional[str], max_items: int,
|
|
1295
|
+
) -> List[FineTunedModel]:
|
|
1296
|
+
if self.inside_workspace():
|
|
1297
|
+
# Resolve `cloud_id` and `project_id`. If not provided and if this is being run in a workspace,
|
|
1298
|
+
# we use the `cloud_id` and `project_id` of the workspace
|
|
1299
|
+
cloud_id, project_id = source_cloud_id_and_project_id(
|
|
1300
|
+
internal_api=self._internal_api_client,
|
|
1301
|
+
external_api=self._external_api_client,
|
|
1302
|
+
cloud_id=cloud_id,
|
|
1303
|
+
project_id=project_id,
|
|
1304
|
+
)
|
|
1305
|
+
|
|
1306
|
+
paging_token = None
|
|
1307
|
+
results = []
|
|
1308
|
+
while True:
|
|
1309
|
+
count = min(self.LIST_ENDPOINT_COUNT, max_items)
|
|
1310
|
+
resp: FinetunedmodelListResponse = self._internal_api_client.list_models_api_v2_llm_models_get(
|
|
1311
|
+
cloud_id=cloud_id,
|
|
1312
|
+
project_id=project_id,
|
|
1313
|
+
paging_token=paging_token,
|
|
1314
|
+
count=count,
|
|
1315
|
+
)
|
|
1316
|
+
models = resp.results
|
|
1317
|
+
results.extend(models)
|
|
1318
|
+
if not len(models) or not resp.metadata.next_paging_token:
|
|
1319
|
+
break
|
|
1320
|
+
|
|
1321
|
+
if max_items and len(results) >= max_items:
|
|
1322
|
+
break
|
|
1323
|
+
paging_token = resp.metadata.next_paging_token
|
|
1324
|
+
|
|
1325
|
+
return results[:max_items] if max_items else results
|
|
@@ -8,6 +8,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
8
8
|
CreateExperimentalWorkspace,
|
|
9
9
|
CreateInternalProductionJob,
|
|
10
10
|
DecoratedComputeTemplate,
|
|
11
|
+
DeletedPlatformFineTunedModel,
|
|
11
12
|
FineTunedModel,
|
|
12
13
|
InternalProductionJob,
|
|
13
14
|
Project,
|
|
@@ -472,7 +473,9 @@ class AnyscaleClientInterface(ABC):
|
|
|
472
473
|
raise NotImplementedError
|
|
473
474
|
|
|
474
475
|
@abstractmethod
|
|
475
|
-
def
|
|
476
|
+
def get_finetuned_model(
|
|
477
|
+
self, model_id: Optional[str], job_id: Optional[str]
|
|
478
|
+
) -> FineTunedModel: # noqa: A002
|
|
476
479
|
"""Returns LLM model information for the given model ID"""
|
|
477
480
|
raise NotImplementedError
|
|
478
481
|
|
|
@@ -495,3 +498,14 @@ class AnyscaleClientInterface(ABC):
|
|
|
495
498
|
def get_workspace_default_dir_name(self, workspace_id) -> str:
|
|
496
499
|
"""Get the default directory name for a workspace."""
|
|
497
500
|
raise NotImplementedError
|
|
501
|
+
|
|
502
|
+
@abstractmethod
|
|
503
|
+
def delete_finetuned_model(self, model_id: str) -> DeletedPlatformFineTunedModel:
|
|
504
|
+
"""Deletes a finetuned model from the model registry given the model ID"""
|
|
505
|
+
raise NotImplementedError
|
|
506
|
+
|
|
507
|
+
@abstractmethod
|
|
508
|
+
def list_finetuned_models(
|
|
509
|
+
self, cloud_id: Optional[str], project_id: Optional[str], max_items: int,
|
|
510
|
+
) -> List[FineTunedModel]:
|
|
511
|
+
raise NotImplementedError
|
{anyscale-0.24.60 → anyscale-0.24.61}/anyscale/_private/anyscale_client/fake_anyscale_client.py
RENAMED
|
@@ -16,7 +16,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
16
16
|
CreateExperimentalWorkspace,
|
|
17
17
|
CreateInternalProductionJob,
|
|
18
18
|
DecoratedComputeTemplate,
|
|
19
|
-
|
|
19
|
+
DeletedPlatformFineTunedModel,
|
|
20
20
|
ExperimentalWorkspace,
|
|
21
21
|
FineTunedModel,
|
|
22
22
|
FineTuneType,
|
|
@@ -833,12 +833,13 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
833
833
|
) -> bytes:
|
|
834
834
|
return b""
|
|
835
835
|
|
|
836
|
-
def
|
|
836
|
+
def get_finetuned_model(
|
|
837
|
+
self, model_id: Optional[str], job_id: Optional[str] # noqa: ARG002
|
|
838
|
+
) -> FineTunedModel:
|
|
837
839
|
return FineTunedModel(
|
|
838
|
-
id=model_id,
|
|
839
|
-
model_id=model_id,
|
|
840
|
+
id=model_id if model_id else "test-model-id",
|
|
841
|
+
model_id=model_id if model_id else "test-model-id",
|
|
840
842
|
base_model_id="my_base_model_id",
|
|
841
|
-
status=EndpointsFineTunedModelStatus.READY,
|
|
842
843
|
ft_type=FineTuneType.LORA,
|
|
843
844
|
creator_id="",
|
|
844
845
|
creator_email="",
|
|
@@ -944,3 +945,26 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
944
945
|
if workspace is None:
|
|
945
946
|
raise ValueError(f"Workspace '{workspace_id}' not found.")
|
|
946
947
|
return "/home/ray/default"
|
|
948
|
+
|
|
949
|
+
def delete_finetuned_model(self, model_id: str) -> DeletedPlatformFineTunedModel:
|
|
950
|
+
return DeletedPlatformFineTunedModel(id=model_id, deleted_at=datetime.utcnow())
|
|
951
|
+
|
|
952
|
+
def list_finetuned_models(
|
|
953
|
+
self,
|
|
954
|
+
cloud_id: Optional[str], # noqa: ARG002
|
|
955
|
+
project_id: Optional[str], # noqa: ARG002
|
|
956
|
+
max_items: int,
|
|
957
|
+
) -> List[FineTunedModel]:
|
|
958
|
+
return [
|
|
959
|
+
FineTunedModel(
|
|
960
|
+
id="test-model-id",
|
|
961
|
+
model_id="test-model-id",
|
|
962
|
+
base_model_id="my_base_model_id",
|
|
963
|
+
ft_type=FineTuneType.LORA,
|
|
964
|
+
creator_id="",
|
|
965
|
+
creator_email="",
|
|
966
|
+
created_at=datetime.utcnow(),
|
|
967
|
+
storage_uri="s3://fake_bucket/fake_folder/",
|
|
968
|
+
)
|
|
969
|
+
for _ in range(max_items)
|
|
970
|
+
]
|
|
@@ -8,6 +8,7 @@ import click
|
|
|
8
8
|
import yaml
|
|
9
9
|
|
|
10
10
|
from anyscale._private.models.model_base import ModelBaseType, ModelEnumType
|
|
11
|
+
from anyscale.commands.util import AnyscaleCommand
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
ModelType = Union[ModelBaseType, ModelEnumType]
|
|
@@ -32,11 +33,11 @@ class Module:
|
|
|
32
33
|
title: str
|
|
33
34
|
filename: str
|
|
34
35
|
cli_prefix: str
|
|
35
|
-
cli_commands: List[
|
|
36
|
+
cli_commands: List[AnyscaleCommand]
|
|
36
37
|
sdk_prefix: str
|
|
37
38
|
sdk_commands: List[Callable]
|
|
38
39
|
models: List[ModelType]
|
|
39
|
-
cli_command_group_prefix: Optional[Dict[
|
|
40
|
+
cli_command_group_prefix: Optional[Dict[AnyscaleCommand, str]] = None
|
|
40
41
|
|
|
41
42
|
|
|
42
43
|
class MarkdownGenerator:
|
|
@@ -172,13 +173,15 @@ class MarkdownGenerator:
|
|
|
172
173
|
f"Unhandled type: {t}. Either this type should not be in our public APIs, or you must add handling for it to the doc generator."
|
|
173
174
|
)
|
|
174
175
|
|
|
175
|
-
def _gen_example_tabs(
|
|
176
|
+
def _gen_example_tabs(
|
|
177
|
+
self, t: Union[Callable, ModelBaseType, AnyscaleCommand]
|
|
178
|
+
) -> str:
|
|
176
179
|
"""Generate a tab section that contains yaml, python, and/or CLI examples for the type.
|
|
177
180
|
|
|
178
181
|
The examples are pulled from magic attributes:
|
|
179
182
|
- __doc_yaml_example__ (required for models ending with "Config")
|
|
180
|
-
- __doc_py_example__ (required in
|
|
181
|
-
- __doc_cli_example__ (required for models)
|
|
183
|
+
- __doc_py_example__ (required in sdks)
|
|
184
|
+
- __doc_cli_example__ (required for models and cli commands)
|
|
182
185
|
"""
|
|
183
186
|
yaml_example: Optional[str] = getattr(t, "__doc_yaml_example__", None)
|
|
184
187
|
py_example: Optional[str] = getattr(t, "__doc_py_example__", None)
|
|
@@ -193,7 +196,15 @@ class MarkdownGenerator:
|
|
|
193
196
|
raise ValueError(
|
|
194
197
|
f"Config model '{t.__name__}' is missing a '__doc_yaml_example__'."
|
|
195
198
|
)
|
|
196
|
-
|
|
199
|
+
if isinstance(t, AnyscaleCommand) and not cli_example:
|
|
200
|
+
raise ValueError(
|
|
201
|
+
f"CLI command '{t.name}' is missing a '__doc_cli_example__'."
|
|
202
|
+
)
|
|
203
|
+
if (
|
|
204
|
+
not isinstance(t, ModelBaseType)
|
|
205
|
+
and not isinstance(t, AnyscaleCommand)
|
|
206
|
+
and not py_example
|
|
207
|
+
):
|
|
197
208
|
raise ValueError(
|
|
198
209
|
f"SDK command '{t.__name__}' is missing a '__doc_py_example__'."
|
|
199
210
|
)
|
|
@@ -297,7 +308,7 @@ class MarkdownGenerator:
|
|
|
297
308
|
return md
|
|
298
309
|
|
|
299
310
|
def _gen_markdown_for_cli_command(
|
|
300
|
-
self, c:
|
|
311
|
+
self, c: AnyscaleCommand, *, cli_prefix: str
|
|
301
312
|
) -> str:
|
|
302
313
|
"""Generate a markdown section for a CLI command.
|
|
303
314
|
|
|
@@ -335,6 +346,9 @@ class MarkdownGenerator:
|
|
|
335
346
|
md += f"- **`{name}`**: {help_str}\n"
|
|
336
347
|
md += "\n"
|
|
337
348
|
|
|
349
|
+
if hasattr(c, "__doc_cli_example__"):
|
|
350
|
+
md += self._gen_example_tabs(c)
|
|
351
|
+
|
|
338
352
|
return md
|
|
339
353
|
|
|
340
354
|
def _gen_markdown_for_sdk_command(self, c: Callable, *, sdk_prefix: str) -> str:
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from typing import Optional, Tuple
|
|
3
|
+
|
|
4
|
+
from anyscale.client.openapi_client.api.default_api import DefaultApi as InternalApi
|
|
5
|
+
from anyscale.client.openapi_client.models import (
|
|
6
|
+
Cloud,
|
|
7
|
+
ExperimentalWorkspace,
|
|
8
|
+
)
|
|
9
|
+
from anyscale.sdk.anyscale_client.api.default_api import DefaultApi as ExternalApi
|
|
10
|
+
from anyscale.sdk.anyscale_client.models import Project
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
WORKSPACE_ID_ENV_VAR = "ANYSCALE_EXPERIMENTAL_WORKSPACE_ID"
|
|
14
|
+
|
|
15
|
+
# TODO (sumanthrh): Currently this same functionality of getting workspace id is repeated in many places, we should try to use this util everywhere
|
|
16
|
+
def get_current_workspace_id() -> Optional[str]:
|
|
17
|
+
"""Returns the ID of the workspace the client is running in (or `None`)."""
|
|
18
|
+
return os.environ.get(WORKSPACE_ID_ENV_VAR, None)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def source_cloud_id_and_project_id(
|
|
22
|
+
*,
|
|
23
|
+
internal_api: InternalApi,
|
|
24
|
+
external_api: ExternalApi,
|
|
25
|
+
cloud_id: Optional[str],
|
|
26
|
+
project_id: Optional[str],
|
|
27
|
+
) -> Tuple[str, str]:
|
|
28
|
+
"""
|
|
29
|
+
Returns `Tuple[cloud_id, project_id]` based on optionally provided `cloud_id` and `project_id`.
|
|
30
|
+
|
|
31
|
+
- If neither `cloud_id` nor `project_id` are provided, the default cloud and its default project are used
|
|
32
|
+
(unless inside a workspace)
|
|
33
|
+
- If both `cloud_id` and `project_id` are provided, we verify that the project is under the cloud.
|
|
34
|
+
|
|
35
|
+
Note that the relationship hierarchy is:
|
|
36
|
+
```
|
|
37
|
+
Cloud -----------<- Project
|
|
38
|
+
1 Many
|
|
39
|
+
```
|
|
40
|
+
- Each cloud will have at least one project (the default project).
|
|
41
|
+
- Each project will belong to exactly one cloud.
|
|
42
|
+
"""
|
|
43
|
+
if not cloud_id:
|
|
44
|
+
if project_id:
|
|
45
|
+
# 1. No cloud, project
|
|
46
|
+
# (Use the cloud of the project)
|
|
47
|
+
project: Project = external_api.get_project(project_id).result
|
|
48
|
+
cloud_id = project.cloud_id
|
|
49
|
+
else:
|
|
50
|
+
# 2. No cloud, no project
|
|
51
|
+
# (Use the default cloud and its default project)
|
|
52
|
+
# (unless we are in an Anyscale workspace, then use the workspace's cloud and project)
|
|
53
|
+
workspace_id = get_current_workspace_id()
|
|
54
|
+
is_anyscale_workspace = workspace_id is not None
|
|
55
|
+
if is_anyscale_workspace:
|
|
56
|
+
workspace: ExperimentalWorkspace = internal_api.get_workspace_api_v2_experimental_workspaces_workspace_id_get(
|
|
57
|
+
workspace_id
|
|
58
|
+
).result
|
|
59
|
+
cloud_id = workspace.cloud_id
|
|
60
|
+
project_id = workspace.project_id
|
|
61
|
+
else:
|
|
62
|
+
cloud: Cloud = external_api.get_default_cloud().result
|
|
63
|
+
cloud_id = cloud.id
|
|
64
|
+
project = external_api.get_default_project(
|
|
65
|
+
parent_cloud_id=cloud_id
|
|
66
|
+
).result
|
|
67
|
+
project_id = project.id
|
|
68
|
+
else:
|
|
69
|
+
if not project_id:
|
|
70
|
+
# 3. Cloud, no project
|
|
71
|
+
# (Use the default project of the cloud)
|
|
72
|
+
project = external_api.get_default_project(parent_cloud_id=cloud_id).result
|
|
73
|
+
project_id = project.id
|
|
74
|
+
else:
|
|
75
|
+
# 4. Cloud, project
|
|
76
|
+
# (Verify that the project is in the cloud)
|
|
77
|
+
project = external_api.get_project(project_id).result
|
|
78
|
+
assert (
|
|
79
|
+
project.cloud_id == cloud_id
|
|
80
|
+
), f"Project {project_id} is not in cloud {cloud_id}."
|
|
81
|
+
return (cloud_id, project_id) # type: ignore
|
|
@@ -224,6 +224,7 @@ Class | Method | HTTP request | Description
|
|
|
224
224
|
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_api_v2_organization_billing_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_api_v2_organization_billing_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard
|
|
225
225
|
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/{organization_id}/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard By Organization
|
|
226
226
|
*DefaultApi* | [**get_model_api_v2_llm_models_model_id_get**](docs/DefaultApi.md#get_model_api_v2_llm_models_model_id_get) | **GET** /api/v2/llm/models/{model_id} | Get Model
|
|
227
|
+
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
|
227
228
|
*DefaultApi* | [**get_model_configuration_api_v2_aica_endpoints_model_config_get**](docs/DefaultApi.md#get_model_configuration_api_v2_aica_endpoints_model_config_get) | **GET** /api/v2/aica_endpoints/model_config | Get Model Configuration
|
|
228
229
|
*DefaultApi* | [**get_model_schema_api_v2_aica_endpoints_model_schema_get**](docs/DefaultApi.md#get_model_schema_api_v2_aica_endpoints_model_schema_get) | **GET** /api/v2/aica_endpoints/model_schema | Get Model Schema
|
|
229
230
|
*DefaultApi* | [**get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get**](docs/DefaultApi.md#get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs | Get Monitor Logs
|
|
@@ -663,7 +664,6 @@ Class | Method | HTTP request | Description
|
|
|
663
664
|
- [EbsBlockDevice](docs/EbsBlockDevice.md)
|
|
664
665
|
- [EditableCloudResource](docs/EditableCloudResource.md)
|
|
665
666
|
- [EditableCloudResourceGCP](docs/EditableCloudResourceGCP.md)
|
|
666
|
-
- [EndpointsFineTunedModelStatus](docs/EndpointsFineTunedModelStatus.md)
|
|
667
667
|
- [Error](docs/Error.md)
|
|
668
668
|
- [EventLevel](docs/EventLevel.md)
|
|
669
669
|
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
|
@@ -686,6 +686,7 @@ Class | Method | HTTP request | Description
|
|
|
686
686
|
- [FineTunedModel](docs/FineTunedModel.md)
|
|
687
687
|
- [FineTuningJobStatus](docs/FineTuningJobStatus.md)
|
|
688
688
|
- [FinetunedmodelListResponse](docs/FinetunedmodelListResponse.md)
|
|
689
|
+
- [FinetunedmodelResponse](docs/FinetunedmodelResponse.md)
|
|
689
690
|
- [FinishFTJobRequest](docs/FinishFTJobRequest.md)
|
|
690
691
|
- [FinishFTJobRequestV2](docs/FinishFTJobRequestV2.md)
|
|
691
692
|
- [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
|
|
@@ -285,7 +285,6 @@ from openapi_client.models.dismissal_type import DismissalType
|
|
|
285
285
|
from openapi_client.models.ebs_block_device import EbsBlockDevice
|
|
286
286
|
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
|
287
287
|
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
|
288
|
-
from openapi_client.models.endpoints_fine_tuned_model_status import EndpointsFineTunedModelStatus
|
|
289
288
|
from openapi_client.models.error import Error
|
|
290
289
|
from openapi_client.models.event_level import EventLevel
|
|
291
290
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
|
@@ -308,6 +307,7 @@ from openapi_client.models.fine_tune_type import FineTuneType
|
|
|
308
307
|
from openapi_client.models.fine_tuned_model import FineTunedModel
|
|
309
308
|
from openapi_client.models.fine_tuning_job_status import FineTuningJobStatus
|
|
310
309
|
from openapi_client.models.finetunedmodel_list_response import FinetunedmodelListResponse
|
|
310
|
+
from openapi_client.models.finetunedmodel_response import FinetunedmodelResponse
|
|
311
311
|
from openapi_client.models.finish_ft_job_request import FinishFTJobRequest
|
|
312
312
|
from openapi_client.models.finish_ft_job_request_v2 import FinishFTJobRequestV2
|
|
313
313
|
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|
|
@@ -17300,7 +17300,7 @@ class DefaultApi(object):
|
|
|
17300
17300
|
number provided, it will be total request
|
|
17301
17301
|
timeout. It can also be a pair (tuple) of
|
|
17302
17302
|
(connection, read) timeouts.
|
|
17303
|
-
:return:
|
|
17303
|
+
:return: FinetunedmodelResponse
|
|
17304
17304
|
If the method is called asynchronously,
|
|
17305
17305
|
returns the request thread.
|
|
17306
17306
|
"""
|
|
@@ -17327,7 +17327,7 @@ class DefaultApi(object):
|
|
|
17327
17327
|
number provided, it will be total request
|
|
17328
17328
|
timeout. It can also be a pair (tuple) of
|
|
17329
17329
|
(connection, read) timeouts.
|
|
17330
|
-
:return: tuple(
|
|
17330
|
+
:return: tuple(FinetunedmodelResponse, status_code(int), headers(HTTPHeaderDict))
|
|
17331
17331
|
If the method is called asynchronously,
|
|
17332
17332
|
returns the request thread.
|
|
17333
17333
|
"""
|
|
@@ -17388,7 +17388,121 @@ class DefaultApi(object):
|
|
|
17388
17388
|
body=body_params,
|
|
17389
17389
|
post_params=form_params,
|
|
17390
17390
|
files=local_var_files,
|
|
17391
|
-
response_type='
|
|
17391
|
+
response_type='FinetunedmodelResponse', # noqa: E501
|
|
17392
|
+
auth_settings=auth_settings,
|
|
17393
|
+
async_req=local_var_params.get('async_req'),
|
|
17394
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
17395
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
17396
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
17397
|
+
collection_formats=collection_formats)
|
|
17398
|
+
|
|
17399
|
+
def get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get(self, job_id, **kwargs): # noqa: E501
|
|
17400
|
+
"""Get Model By Job Id # noqa: E501
|
|
17401
|
+
|
|
17402
|
+
Retrieves a model from the model registry by job id # noqa: E501
|
|
17403
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
17404
|
+
asynchronous HTTP request, please pass async_req=True
|
|
17405
|
+
>>> thread = api.get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get(job_id, async_req=True)
|
|
17406
|
+
>>> result = thread.get()
|
|
17407
|
+
|
|
17408
|
+
:param async_req bool: execute request asynchronously
|
|
17409
|
+
:param str job_id: (required)
|
|
17410
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
17411
|
+
be returned without reading/decoding response
|
|
17412
|
+
data. Default is True.
|
|
17413
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
17414
|
+
number provided, it will be total request
|
|
17415
|
+
timeout. It can also be a pair (tuple) of
|
|
17416
|
+
(connection, read) timeouts.
|
|
17417
|
+
:return: FinetunedmodelResponse
|
|
17418
|
+
If the method is called asynchronously,
|
|
17419
|
+
returns the request thread.
|
|
17420
|
+
"""
|
|
17421
|
+
kwargs['_return_http_data_only'] = True
|
|
17422
|
+
return self.get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get_with_http_info(job_id, **kwargs) # noqa: E501
|
|
17423
|
+
|
|
17424
|
+
def get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get_with_http_info(self, job_id, **kwargs): # noqa: E501
|
|
17425
|
+
"""Get Model By Job Id # noqa: E501
|
|
17426
|
+
|
|
17427
|
+
Retrieves a model from the model registry by job id # noqa: E501
|
|
17428
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
17429
|
+
asynchronous HTTP request, please pass async_req=True
|
|
17430
|
+
>>> thread = api.get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get_with_http_info(job_id, async_req=True)
|
|
17431
|
+
>>> result = thread.get()
|
|
17432
|
+
|
|
17433
|
+
:param async_req bool: execute request asynchronously
|
|
17434
|
+
:param str job_id: (required)
|
|
17435
|
+
:param _return_http_data_only: response data without head status code
|
|
17436
|
+
and headers
|
|
17437
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
17438
|
+
be returned without reading/decoding response
|
|
17439
|
+
data. Default is True.
|
|
17440
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
17441
|
+
number provided, it will be total request
|
|
17442
|
+
timeout. It can also be a pair (tuple) of
|
|
17443
|
+
(connection, read) timeouts.
|
|
17444
|
+
:return: tuple(FinetunedmodelResponse, status_code(int), headers(HTTPHeaderDict))
|
|
17445
|
+
If the method is called asynchronously,
|
|
17446
|
+
returns the request thread.
|
|
17447
|
+
"""
|
|
17448
|
+
|
|
17449
|
+
local_var_params = locals()
|
|
17450
|
+
|
|
17451
|
+
all_params = [
|
|
17452
|
+
'job_id'
|
|
17453
|
+
]
|
|
17454
|
+
all_params.extend(
|
|
17455
|
+
[
|
|
17456
|
+
'async_req',
|
|
17457
|
+
'_return_http_data_only',
|
|
17458
|
+
'_preload_content',
|
|
17459
|
+
'_request_timeout'
|
|
17460
|
+
]
|
|
17461
|
+
)
|
|
17462
|
+
|
|
17463
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
17464
|
+
if key not in all_params:
|
|
17465
|
+
raise ApiTypeError(
|
|
17466
|
+
"Got an unexpected keyword argument '%s'"
|
|
17467
|
+
" to method get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get" % key
|
|
17468
|
+
)
|
|
17469
|
+
local_var_params[key] = val
|
|
17470
|
+
del local_var_params['kwargs']
|
|
17471
|
+
# verify the required parameter 'job_id' is set
|
|
17472
|
+
if self.api_client.client_side_validation and ('job_id' not in local_var_params or # noqa: E501
|
|
17473
|
+
local_var_params['job_id'] is None): # noqa: E501
|
|
17474
|
+
raise ApiValueError("Missing the required parameter `job_id` when calling `get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get`") # noqa: E501
|
|
17475
|
+
|
|
17476
|
+
collection_formats = {}
|
|
17477
|
+
|
|
17478
|
+
path_params = {}
|
|
17479
|
+
if 'job_id' in local_var_params:
|
|
17480
|
+
path_params['job_id'] = local_var_params['job_id'] # noqa: E501
|
|
17481
|
+
|
|
17482
|
+
query_params = []
|
|
17483
|
+
|
|
17484
|
+
header_params = {}
|
|
17485
|
+
|
|
17486
|
+
form_params = []
|
|
17487
|
+
local_var_files = {}
|
|
17488
|
+
|
|
17489
|
+
body_params = None
|
|
17490
|
+
# HTTP header `Accept`
|
|
17491
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
17492
|
+
['application/json']) # noqa: E501
|
|
17493
|
+
|
|
17494
|
+
# Authentication setting
|
|
17495
|
+
auth_settings = [] # noqa: E501
|
|
17496
|
+
|
|
17497
|
+
return self.api_client.call_api(
|
|
17498
|
+
'/api/v2/llm/models/get_by_job_id/{job_id}', 'GET',
|
|
17499
|
+
path_params,
|
|
17500
|
+
query_params,
|
|
17501
|
+
header_params,
|
|
17502
|
+
body=body_params,
|
|
17503
|
+
post_params=form_params,
|
|
17504
|
+
files=local_var_files,
|
|
17505
|
+
response_type='FinetunedmodelResponse', # noqa: E501
|
|
17392
17506
|
auth_settings=auth_settings,
|
|
17393
17507
|
async_req=local_var_params.get('async_req'),
|
|
17394
17508
|
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
@@ -27784,6 +27898,7 @@ class DefaultApi(object):
|
|
|
27784
27898
|
:param async_req bool: execute request asynchronously
|
|
27785
27899
|
:param str cloud_id:
|
|
27786
27900
|
:param str project_id:
|
|
27901
|
+
:param str workspace_id:
|
|
27787
27902
|
:param str paging_token:
|
|
27788
27903
|
:param int count:
|
|
27789
27904
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
@@ -27812,6 +27927,7 @@ class DefaultApi(object):
|
|
|
27812
27927
|
:param async_req bool: execute request asynchronously
|
|
27813
27928
|
:param str cloud_id:
|
|
27814
27929
|
:param str project_id:
|
|
27930
|
+
:param str workspace_id:
|
|
27815
27931
|
:param str paging_token:
|
|
27816
27932
|
:param int count:
|
|
27817
27933
|
:param _return_http_data_only: response data without head status code
|
|
@@ -27833,6 +27949,7 @@ class DefaultApi(object):
|
|
|
27833
27949
|
all_params = [
|
|
27834
27950
|
'cloud_id',
|
|
27835
27951
|
'project_id',
|
|
27952
|
+
'workspace_id',
|
|
27836
27953
|
'paging_token',
|
|
27837
27954
|
'count'
|
|
27838
27955
|
]
|
|
@@ -27867,6 +27984,8 @@ class DefaultApi(object):
|
|
|
27867
27984
|
query_params.append(('cloud_id', local_var_params['cloud_id'])) # noqa: E501
|
|
27868
27985
|
if 'project_id' in local_var_params and local_var_params['project_id'] is not None: # noqa: E501
|
|
27869
27986
|
query_params.append(('project_id', local_var_params['project_id'])) # noqa: E501
|
|
27987
|
+
if 'workspace_id' in local_var_params and local_var_params['workspace_id'] is not None: # noqa: E501
|
|
27988
|
+
query_params.append(('workspace_id', local_var_params['workspace_id'])) # noqa: E501
|
|
27870
27989
|
if 'paging_token' in local_var_params and local_var_params['paging_token'] is not None: # noqa: E501
|
|
27871
27990
|
query_params.append(('paging_token', local_var_params['paging_token'])) # noqa: E501
|
|
27872
27991
|
if 'count' in local_var_params and local_var_params['count'] is not None: # noqa: E501
|
|
@@ -271,7 +271,6 @@ from openapi_client.models.dismissal_type import DismissalType
|
|
|
271
271
|
from openapi_client.models.ebs_block_device import EbsBlockDevice
|
|
272
272
|
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
|
273
273
|
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
|
274
|
-
from openapi_client.models.endpoints_fine_tuned_model_status import EndpointsFineTunedModelStatus
|
|
275
274
|
from openapi_client.models.error import Error
|
|
276
275
|
from openapi_client.models.event_level import EventLevel
|
|
277
276
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
|
@@ -294,6 +293,7 @@ from openapi_client.models.fine_tune_type import FineTuneType
|
|
|
294
293
|
from openapi_client.models.fine_tuned_model import FineTunedModel
|
|
295
294
|
from openapi_client.models.fine_tuning_job_status import FineTuningJobStatus
|
|
296
295
|
from openapi_client.models.finetunedmodel_list_response import FinetunedmodelListResponse
|
|
296
|
+
from openapi_client.models.finetunedmodel_response import FinetunedmodelResponse
|
|
297
297
|
from openapi_client.models.finish_ft_job_request import FinishFTJobRequest
|
|
298
298
|
from openapi_client.models.finish_ft_job_request_v2 import FinishFTJobRequestV2
|
|
299
299
|
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|