anyscale 0.24.54__tar.gz → 0.24.56__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.54 → anyscale-0.24.56}/PKG-INFO +1 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/anyscale_client/anyscale_client.py +45 -2
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/anyscale_client/common.py +23 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/anyscale_client/fake_anyscale_client.py +30 -6
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/docgen/__main__.py +27 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/docgen/generator.py +12 -3
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/README.md +29 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/__init__.py +17 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/api/default_api.py +1560 -139
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/__init__.py +17 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +2 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +63 -5
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +2 -2
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_resource.py +29 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +29 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_cloud_resource.py +29 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +29 -1
- anyscale-0.24.56/anyscale/client/openapi_client/models/create_instance_usage_budget.py +227 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/create_resource_quota.py +237 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py +148 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py +121 -0
- {anyscale-0.24.54/anyscale/sdk/anyscale_client → anyscale-0.24.56/anyscale/client/openapi_client}/models/endpoints_fine_tuned_model_status.py +2 -2
- {anyscale-0.24.54/anyscale/sdk/anyscale_client → anyscale-0.24.56/anyscale/client/openapi_client}/models/fine_tune_type.py +2 -2
- {anyscale-0.24.54/anyscale/sdk/anyscale_client → anyscale-0.24.56/anyscale/client/openapi_client}/models/fine_tuned_model.py +2 -2
- anyscale-0.24.56/anyscale/client/openapi_client/models/finetunedmodel_list_response.py +147 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/instance_usage_budget.py +494 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py +100 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/instanceusagebudget_list_response.py +147 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/instanceusagebudget_response.py +121 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/list_resource_quotas_query.py +262 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/quota.py +198 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/resource_quota.py +409 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/resourcequota_list_response.py +147 -0
- anyscale-0.24.56/anyscale/client/openapi_client/models/resourcequota_response.py +121 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/cloud_commands.py +19 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/workspace_commands_v2.py +205 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/cloud_controller.py +4 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/llm/models_controller.py +2 -3
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/job/models.py +29 -11
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/models/_private/models_sdk.py +1 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/models/commands.py +1 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/__init__.py +0 -3
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/api/default_api.py +0 -112
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/__init__.py +0 -3
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/id_gen.py +1 -0
- anyscale-0.24.56/anyscale/version.py +1 -0
- anyscale-0.24.56/anyscale/workspace/__init__.py +179 -0
- anyscale-0.24.56/anyscale/workspace/_private/workspace_sdk.py +365 -0
- anyscale-0.24.56/anyscale/workspace/commands.py +288 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/workspace/models.py +40 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/PKG-INFO +1 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/SOURCES.txt +36 -6
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/commands/test_cloud_command.py +1 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/common.py +6 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_anyscale_client.py +4 -1
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_docgen.py +4 -1
- anyscale-0.24.56/tests/unit/test_files/job_config_files/existing_job_queue.yaml +11 -0
- anyscale-0.24.56/tests/unit/test_files/job_config_files/new_job_queue.yaml +15 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_job_models.py +41 -0
- anyscale-0.24.56/tests/unit/test_workspace_cli.py +588 -0
- anyscale-0.24.56/tests/unit/test_workspace_sdk.py +715 -0
- anyscale-0.24.54/anyscale/version.py +0 -1
- anyscale-0.24.54/anyscale/workspace/__init__.py +0 -78
- anyscale-0.24.54/anyscale/workspace/_private/workspace_sdk.py +0 -151
- anyscale-0.24.54/anyscale/workspace/commands.py +0 -110
- anyscale-0.24.54/tests/unit/test_workspace_cli.py +0 -233
- anyscale-0.24.54/tests/unit/test_workspace_sdk.py +0 -328
- {anyscale-0.24.54 → anyscale-0.24.56}/.covrc +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/LICENSE +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/NOTICE +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/README.md +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/docgen/README.md +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/models/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/models/image_uri.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/models/model_base.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/sdk/base_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/sdk/timer.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/workload/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/workload/workload_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/workload/workload_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/MANIFEST.in +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/authenticate.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/background/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/cli_logger.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/.gitignore +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/access_mode.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_endpoint.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_endpoint_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_endpoint_event_level.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_endpoint_event_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_endpoint_scope.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_model_configuration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aica_observability_urls.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aicamodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aicamodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/alert_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscale_service_account.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscaleserviceaccount_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/application_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aviary_model_config_v2.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_credentials.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/baseimagesenum.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/billing_version_code.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/body_upload_file_api_v2_files_post.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/buffer_registration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_waitlist_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/company_size.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/compute_stack.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_billing_version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_metronome_webhook_notification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_organization_configuration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/customer_billing_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_job_queue.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedjobqueue_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedjobqueue_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/event_level.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/file_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/filemodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/fine_tuning_job_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/finish_ft_job_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/finish_ft_job_request_v2.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/grafana_dashboard.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_job_error_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_job_event_level.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_job_event_origin.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/import_aica_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_queue_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_queues_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/named_entity.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_registration_k8_s.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_registration_sagemaker.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_configuration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_configuration_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_marketing_questions.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_public_identifier.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationconfiguration_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationconfigurationresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationpublicidentifier_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/platform_fine_tuning_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/platformfinetuningjob_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/platformfinetuningjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/presigned_upload_file.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/presigned_upload_file_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/product_autoscaler_flag.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/productautoscalerflag_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/production_job_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/production_job_event_scope_filter.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/productionjobevent_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/read_billing_version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/readbillingversion_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/resubmit_ft_job_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_scope.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_event_verbose_message_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/service_version_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/serviceeventverbosemessagemodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/templatized_compute_configs.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/templatized_decorated_application_templates.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/templatizedcomputeconfigs_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/tracing_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_endpoint.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_model_deployment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/utm_fields.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/verify_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/verifyresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/waitlist_status_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/waitliststatusresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_event_source.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_event_source_filter.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspaceevent_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/setup.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/client/tox.ini +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/cluster_env.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/fine_tune_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/image_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/job_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/llm/dataset_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/llm/group.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/llm/models_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/service_account_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/compute_config/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/compute_config/_private/compute_config_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/compute_config/commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/compute_config/models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/conf.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/connect.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/fine_tune_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/llm/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/service_account_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/feature_flags.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/fingerprint.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/image/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/image/_private/image_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/image/commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/image/models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/integrations.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/job/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/job/_private/job_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/job/commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/links.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/dataset/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/dataset/_private/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/dataset/_private/sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/models/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/models/sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/llm/sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/models/fine_tune_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/models/job_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/models/service_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/schedule/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/schedule/_private/schedule_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/schedule/commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/schedule/models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/scripts.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/apply_service_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/compute_template_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/service_version_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/tracing_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/service/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/service/_private/service_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/service/commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/service/models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/latest_ray_version.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/snapshot.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/tables.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/s3.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale/workspace_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/requirements.in +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/setup.cfg +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/setup.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/api_utils/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/api_utils/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/api_utils/test_logs_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/cloud_formation_template_oa.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/commands/test_workspace_commands.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/conftest.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/__init__.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_cloud_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_cloud_functional_verification_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_cluster_env_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_compute_config_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_job_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_machine_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_machine_pool_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_service_account_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_service_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/controllers/test_workspace_controller.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/deployment_manager_resources_get.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/global_firewall_with_private_service_rule.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/global_firewall_with_service_rule.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/global_firewall_without_service_rule.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_apis_disabled.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/proxy_only_subnet_missing.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/proxy_only_subnet_no_subnets.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/proxy_only_subnet_present.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/proxy_only_subnet_wrong_vpc.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_memorystore.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_memorystore_happy.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_memorystore_read_replica_disabled.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_memorystore_standard_tier.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/regional_memorystore_tls_enabled.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/service_get.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/sdk/test_sdk_methods.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/sdk/test_upload_working_dir.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_authenticate.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_aws_iam_policies.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cli_logger.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cli_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cloud.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cloud_resource.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cluster.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_cluster_env.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_component_activity.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_connect.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_imports_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_integrations.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_network_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_project.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_runtime_env.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_s3.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/test_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/conftest.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_anyscale_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_compute_config_cli.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_compute_config_models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_compute_config_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/compute_config_files/empty.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/compute_config_files/full.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/compute_config_files/minimal.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/containerfiles/Containerfile +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/job_config_files/empty.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/job_config_files/full.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/job_config_files/minimal.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/job_config_files/minimal_job_config +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/job_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/job_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/requirements_files/comments.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/requirements_files/empty.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/requirements_files/multi_line.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/requirements_files/multi_line_with_whitespace.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/requirements_files/single_line.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/requirements_files/test_workspace_requirements.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/schedule_config_files/empty.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/schedule_config_files/full.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/schedule_config_files/minimal.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/schedule_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/empty.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/full.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/minimal.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/multiple_applications.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/name_and_gibberish.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/points_to_requirements_file.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/service_config_files/unrecognized_option.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/working_dirs/basic/hi.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/working_dirs/basic/main.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/working_dirs/nested/requirements.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/working_dirs/nested/subdir/app.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/working_dirs/symlink_to_basic/hi.txt +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/working_dirs/symlink_to_basic/main.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/workspace_config_files/empty.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/workspace_config_files/full.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_files/workspace_config_files/minimal.yaml +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_image_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_image_uri.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_job_cli.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_job_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_model_base.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_schedule_cli.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_schedule_models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_schedule_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_service_cli.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_service_models.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_service_sdk.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/unit/test_workload_config.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/utils/BUILD.bazel +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/utils/test_cli_version_check_util.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/utils/test_cloud_update_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/utils/test_cloud_utils.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/utils/test_cluster_debug.py +0 -0
- {anyscale-0.24.54 → anyscale-0.24.56}/tests/utils/test_workspace_utils.py +0 -0
|
@@ -38,7 +38,10 @@ from anyscale.client.openapi_client.models import (
|
|
|
38
38
|
CreateInternalProductionJob,
|
|
39
39
|
DecoratedComputeTemplate,
|
|
40
40
|
ExperimentalWorkspace,
|
|
41
|
+
FineTunedModel,
|
|
41
42
|
InternalProductionJob,
|
|
43
|
+
SessionSshKey,
|
|
44
|
+
SessionState,
|
|
42
45
|
StartSessionOptions,
|
|
43
46
|
StopSessionOptions,
|
|
44
47
|
)
|
|
@@ -47,6 +50,7 @@ from anyscale.client.openapi_client.models.decorated_schedule import DecoratedSc
|
|
|
47
50
|
from anyscale.client.openapi_client.models.production_job import ProductionJob
|
|
48
51
|
from anyscale.client.openapi_client.rest import ApiException as InternalApiException
|
|
49
52
|
from anyscale.cluster_compute import parse_cluster_compute_name_version
|
|
53
|
+
from anyscale.feature_flags import FLAG_DEFAULT_WORKING_DIR_FOR_PROJ
|
|
50
54
|
from anyscale.sdk.anyscale_client.api.default_api import DefaultApi as ExternalApi
|
|
51
55
|
from anyscale.sdk.anyscale_client.models import (
|
|
52
56
|
ApplyServiceModel,
|
|
@@ -60,7 +64,6 @@ from anyscale.sdk.anyscale_client.models import (
|
|
|
60
64
|
ClusterEnvironmentsQuery,
|
|
61
65
|
CreateClusterEnvironment,
|
|
62
66
|
CreateClusterEnvironmentBuild,
|
|
63
|
-
FineTunedModel,
|
|
64
67
|
Job as APIJobRun,
|
|
65
68
|
Project,
|
|
66
69
|
RollbackServiceModel,
|
|
@@ -1189,7 +1192,9 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1189
1192
|
return (cloud_id, project_id) # type: ignore
|
|
1190
1193
|
|
|
1191
1194
|
def retrieve_finetuned_model(self, model_id: str) -> FineTunedModel:
|
|
1192
|
-
return self.
|
|
1195
|
+
return self._internal_api_client.get_model_api_v2_llm_models_model_id_get(
|
|
1196
|
+
model_id
|
|
1197
|
+
)
|
|
1193
1198
|
|
|
1194
1199
|
@handle_api_exceptions
|
|
1195
1200
|
def create_workspace(self, model: CreateExperimentalWorkspace) -> str:
|
|
@@ -1287,3 +1292,41 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1287
1292
|
return self._internal_api_client.stop_session_api_v2_sessions_session_id_stop_post(
|
|
1288
1293
|
session_id=workspace_model.cluster_id, stop_session_options=options,
|
|
1289
1294
|
)
|
|
1295
|
+
|
|
1296
|
+
@handle_api_exceptions
|
|
1297
|
+
def get_workspace_status(self, workspace_id: str) -> SessionState:
|
|
1298
|
+
workspace_model = self.get_workspace(id=workspace_id)
|
|
1299
|
+
if workspace_model is None:
|
|
1300
|
+
raise ValueError(f"Workspace '{workspace_id}' not found.")
|
|
1301
|
+
|
|
1302
|
+
result = self._internal_api_client.get_session_api_v2_sessions_session_id_get(
|
|
1303
|
+
session_id=workspace_model.cluster_id
|
|
1304
|
+
)
|
|
1305
|
+
return result.result.state
|
|
1306
|
+
|
|
1307
|
+
@handle_api_exceptions
|
|
1308
|
+
def get_cluster_head_node_ip(self, cluster_id: str) -> str:
|
|
1309
|
+
head_ip = self._internal_api_client.get_session_head_ip_api_v2_sessions_session_id_head_ip_get(
|
|
1310
|
+
cluster_id
|
|
1311
|
+
).result.head_ip
|
|
1312
|
+
return head_ip
|
|
1313
|
+
|
|
1314
|
+
@handle_api_exceptions
|
|
1315
|
+
def get_cluster_ssh_key(self, cluster_id: str) -> SessionSshKey:
|
|
1316
|
+
return self._internal_api_client.get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get(
|
|
1317
|
+
cluster_id
|
|
1318
|
+
).result
|
|
1319
|
+
|
|
1320
|
+
@handle_api_exceptions
|
|
1321
|
+
def get_workspace_default_dir_name(self, workspace_id) -> str:
|
|
1322
|
+
workspace = self.get_workspace(id=workspace_id)
|
|
1323
|
+
assert workspace, f"Workspace '{workspace_id}' not found."
|
|
1324
|
+
project = self._internal_api_client.get_project_api_v2_projects_project_id_get(
|
|
1325
|
+
workspace.project_id
|
|
1326
|
+
).result
|
|
1327
|
+
if self._internal_api_client.check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get(
|
|
1328
|
+
FLAG_DEFAULT_WORKING_DIR_FOR_PROJ
|
|
1329
|
+
).result.is_on:
|
|
1330
|
+
return project.directory_name
|
|
1331
|
+
else:
|
|
1332
|
+
return project.name
|
|
@@ -8,20 +8,22 @@ from anyscale.client.openapi_client.models import (
|
|
|
8
8
|
CreateExperimentalWorkspace,
|
|
9
9
|
CreateInternalProductionJob,
|
|
10
10
|
DecoratedComputeTemplate,
|
|
11
|
+
FineTunedModel,
|
|
11
12
|
InternalProductionJob,
|
|
12
13
|
Project,
|
|
13
14
|
)
|
|
14
15
|
from anyscale.client.openapi_client.models.create_schedule import CreateSchedule
|
|
15
16
|
from anyscale.client.openapi_client.models.decorated_schedule import DecoratedSchedule
|
|
16
17
|
from anyscale.client.openapi_client.models.production_job import ProductionJob
|
|
18
|
+
from anyscale.client.openapi_client.models.session_ssh_key import SessionSshKey
|
|
17
19
|
from anyscale.sdk.anyscale_client.models import (
|
|
18
20
|
ApplyServiceModel,
|
|
19
21
|
Cluster,
|
|
20
22
|
ClusterCompute,
|
|
21
23
|
ClusterEnvironment,
|
|
22
|
-
FineTunedModel,
|
|
23
24
|
Job as APIJobRun,
|
|
24
25
|
ServiceModel,
|
|
26
|
+
SessionState,
|
|
25
27
|
)
|
|
26
28
|
from anyscale.sdk.anyscale_client.models.cluster_environment_build import (
|
|
27
29
|
ClusterEnvironmentBuild,
|
|
@@ -473,3 +475,23 @@ class AnyscaleClientInterface(ABC):
|
|
|
473
475
|
def retrieve_finetuned_model(self, id: str) -> FineTunedModel: # noqa: A002
|
|
474
476
|
"""Returns LLM model information for the given model ID"""
|
|
475
477
|
raise NotImplementedError
|
|
478
|
+
|
|
479
|
+
@abstractmethod
|
|
480
|
+
def get_workspace_status(self, workspace_id: str) -> SessionState:
|
|
481
|
+
"""Get the status of a workspace."""
|
|
482
|
+
raise NotImplementedError
|
|
483
|
+
|
|
484
|
+
@abstractmethod
|
|
485
|
+
def get_cluster_head_node_ip(self, cluster_id: str) -> Optional[str]:
|
|
486
|
+
"""Get the head node IP of the cluster."""
|
|
487
|
+
raise NotImplementedError
|
|
488
|
+
|
|
489
|
+
@abstractmethod
|
|
490
|
+
def get_cluster_ssh_key(self, cluster_id: str) -> SessionSshKey:
|
|
491
|
+
"""Get the SSH key for the cluster."""
|
|
492
|
+
raise NotImplementedError
|
|
493
|
+
|
|
494
|
+
@abstractmethod
|
|
495
|
+
def get_workspace_default_dir_name(self, workspace_id) -> str:
|
|
496
|
+
"""Get the default directory name for a workspace."""
|
|
497
|
+
raise NotImplementedError
|
{anyscale-0.24.54 → anyscale-0.24.56}/anyscale/_private/anyscale_client/fake_anyscale_client.py
RENAMED
|
@@ -16,7 +16,10 @@ from anyscale.client.openapi_client.models import (
|
|
|
16
16
|
CreateExperimentalWorkspace,
|
|
17
17
|
CreateInternalProductionJob,
|
|
18
18
|
DecoratedComputeTemplate,
|
|
19
|
+
EndpointsFineTunedModelStatus,
|
|
19
20
|
ExperimentalWorkspace,
|
|
21
|
+
FineTunedModel,
|
|
22
|
+
FineTuneType,
|
|
20
23
|
HaJobGoalStates,
|
|
21
24
|
HaJobStates,
|
|
22
25
|
InternalProductionJob,
|
|
@@ -26,6 +29,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
26
29
|
)
|
|
27
30
|
from anyscale.client.openapi_client.models.create_schedule import CreateSchedule
|
|
28
31
|
from anyscale.client.openapi_client.models.decorated_schedule import DecoratedSchedule
|
|
32
|
+
from anyscale.client.openapi_client.models.session_ssh_key import SessionSshKey
|
|
29
33
|
from anyscale.cluster_compute import parse_cluster_compute_name_version
|
|
30
34
|
from anyscale.sdk.anyscale_client.configuration import Configuration
|
|
31
35
|
from anyscale.sdk.anyscale_client.models import (
|
|
@@ -36,14 +40,12 @@ from anyscale.sdk.anyscale_client.models import (
|
|
|
36
40
|
ClusterEnvironmentBuild,
|
|
37
41
|
ClusterEnvironmentBuildStatus,
|
|
38
42
|
ComputeNodeType,
|
|
39
|
-
EndpointsFineTunedModelStatus,
|
|
40
|
-
FineTunedModel,
|
|
41
|
-
FineTuneType,
|
|
42
43
|
Job as APIJobRun,
|
|
43
44
|
ProductionServiceV2VersionModel,
|
|
44
45
|
ServiceEventCurrentState,
|
|
45
46
|
ServiceModel,
|
|
46
47
|
ServiceVersionState,
|
|
48
|
+
SessionState,
|
|
47
49
|
)
|
|
48
50
|
from anyscale.sdk.anyscale_client.models.cluster_environment import ClusterEnvironment
|
|
49
51
|
from anyscale.shared_anyscale_utils.latest_ray_version import LATEST_RAY_VERSION
|
|
@@ -140,6 +142,8 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
140
142
|
self._workspaces: Dict[str, ExperimentalWorkspace] = {}
|
|
141
143
|
self._workspaces_dependencies: Dict[str, List[str]] = {}
|
|
142
144
|
self._workspaces_env_vars: Dict[str, Dict[str, str]] = {}
|
|
145
|
+
self._clusters_headnode_ip: Dict[str, str] = {}
|
|
146
|
+
self._clusters_ssh_key: Dict[str, SessionSshKey] = {}
|
|
143
147
|
|
|
144
148
|
# Cloud ID -> Cloud.
|
|
145
149
|
self._clouds: Dict[str, Cloud] = {
|
|
@@ -862,7 +866,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
862
866
|
creator_email=self.DEFAULT_USER_EMAIL,
|
|
863
867
|
organization_id=self.DEFAULT_ORGANIZATION_ID,
|
|
864
868
|
cluster_id=self.DEFAULT_CLOUD_ID,
|
|
865
|
-
state=
|
|
869
|
+
state=SessionState.RUNNING
|
|
870
|
+
if not model.skip_start
|
|
871
|
+
else SessionState.TERMINATED,
|
|
866
872
|
)
|
|
867
873
|
self._workspaces[workspace.id] = workspace
|
|
868
874
|
return workspace.id
|
|
@@ -903,13 +909,13 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
903
909
|
workspace = self._workspaces.get(workspace_id, None)
|
|
904
910
|
if workspace is None:
|
|
905
911
|
raise ValueError(f"Workspace '{workspace_id}' not found.")
|
|
906
|
-
workspace.state =
|
|
912
|
+
workspace.state = SessionState.RUNNING
|
|
907
913
|
|
|
908
914
|
def terminate_workspace(self, workspace_id: str):
|
|
909
915
|
workspace = self._workspaces.get(workspace_id, None)
|
|
910
916
|
if workspace is None:
|
|
911
917
|
raise ValueError(f"Workspace '{workspace_id}' not found.")
|
|
912
|
-
workspace.state =
|
|
918
|
+
workspace.state = SessionState.TERMINATED
|
|
913
919
|
|
|
914
920
|
def update_workspace_dependencies_offline_only(
|
|
915
921
|
self, workspace_id: str, requirements: List[str]
|
|
@@ -920,3 +926,21 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
920
926
|
self, workspace_id: str, env_vars: Dict[str, str]
|
|
921
927
|
):
|
|
922
928
|
self._workspaces_env_vars[workspace_id] = env_vars
|
|
929
|
+
|
|
930
|
+
def get_workspace_status(self, workspace_id: str) -> SessionState:
|
|
931
|
+
workspace = self._workspaces.get(workspace_id, None)
|
|
932
|
+
if workspace is None:
|
|
933
|
+
raise ValueError(f"Workspace '{workspace_id}' not found.")
|
|
934
|
+
return workspace.state
|
|
935
|
+
|
|
936
|
+
def get_cluster_head_node_ip(self, cluster_id: str) -> str:
|
|
937
|
+
return self._clusters_headnode_ip.get(cluster_id, "")
|
|
938
|
+
|
|
939
|
+
def get_cluster_ssh_key(self, cluster_id: str) -> SessionSshKey:
|
|
940
|
+
return self._clusters_ssh_key.get(cluster_id, None)
|
|
941
|
+
|
|
942
|
+
def get_workspace_default_dir_name(self, workspace_id) -> str:
|
|
943
|
+
workspace = self._workspaces.get(workspace_id, None)
|
|
944
|
+
if workspace is None:
|
|
945
|
+
raise ValueError(f"Workspace '{workspace_id}' not found.")
|
|
946
|
+
return "/home/ray/default"
|
|
@@ -17,6 +17,7 @@ from anyscale.commands import (
|
|
|
17
17
|
schedule_commands,
|
|
18
18
|
service_account_commands,
|
|
19
19
|
service_commands,
|
|
20
|
+
workspace_commands_v2,
|
|
20
21
|
)
|
|
21
22
|
from anyscale.compute_config.models import (
|
|
22
23
|
ComputeConfig,
|
|
@@ -47,6 +48,7 @@ from anyscale.service.models import (
|
|
|
47
48
|
ServiceVersionStatus,
|
|
48
49
|
TracingConfig,
|
|
49
50
|
)
|
|
51
|
+
from anyscale.workspace.models import WorkspaceConfig
|
|
50
52
|
|
|
51
53
|
|
|
52
54
|
# Defines all modules to be documented.
|
|
@@ -213,6 +215,31 @@ ALL_MODULES = [
|
|
|
213
215
|
sdk_commands=[],
|
|
214
216
|
models=[],
|
|
215
217
|
),
|
|
218
|
+
Module(
|
|
219
|
+
title="Workspaces",
|
|
220
|
+
filename="workspaces.md",
|
|
221
|
+
cli_prefix="anyscale workspace_v2",
|
|
222
|
+
cli_commands=[
|
|
223
|
+
workspace_commands_v2.create,
|
|
224
|
+
workspace_commands_v2.start,
|
|
225
|
+
workspace_commands_v2.terminate,
|
|
226
|
+
workspace_commands_v2.status,
|
|
227
|
+
workspace_commands_v2.wait,
|
|
228
|
+
workspace_commands_v2.ssh,
|
|
229
|
+
workspace_commands_v2.run_command,
|
|
230
|
+
],
|
|
231
|
+
sdk_prefix="anyscale.workspace",
|
|
232
|
+
sdk_commands=[
|
|
233
|
+
anyscale.workspace.create,
|
|
234
|
+
anyscale.workspace.start,
|
|
235
|
+
anyscale.workspace.terminate,
|
|
236
|
+
anyscale.workspace.status,
|
|
237
|
+
anyscale.workspace.wait,
|
|
238
|
+
anyscale.workspace.generate_ssh_config_file,
|
|
239
|
+
anyscale.workspace.run_command,
|
|
240
|
+
],
|
|
241
|
+
models=[WorkspaceConfig],
|
|
242
|
+
),
|
|
216
243
|
]
|
|
217
244
|
|
|
218
245
|
|
|
@@ -19,7 +19,7 @@ CUSTOMER_HOSTED_ANCHOR = "#customer-hosted-only"
|
|
|
19
19
|
CUSTOMER_HOSTED_HEADER = """\
|
|
20
20
|
#### Customer-hosted cloud features {#customer-hosted-only}
|
|
21
21
|
:::note
|
|
22
|
-
Some features are only available on customer-hosted clouds. Reach out to
|
|
22
|
+
Some features are only available on customer-hosted clouds. Reach out to support@anyscale.com for info.
|
|
23
23
|
:::"""
|
|
24
24
|
|
|
25
25
|
CUSTOMER_HOSTED_QUALIFIER = (
|
|
@@ -120,7 +120,7 @@ class MarkdownGenerator:
|
|
|
120
120
|
filename = self._model_type_to_filename[t]
|
|
121
121
|
return f"{filename}#{t.__name__.lower()}"
|
|
122
122
|
|
|
123
|
-
def _type_container_to_string(self, t: typing.Type) -> str:
|
|
123
|
+
def _type_container_to_string(self, t: typing.Type) -> str: # noqa: PLR0911
|
|
124
124
|
"""Return a str representation of a type hint."""
|
|
125
125
|
origin, args = typing.get_origin(t), typing.get_args(t)
|
|
126
126
|
assert origin is not None and args is not None
|
|
@@ -142,6 +142,13 @@ class MarkdownGenerator:
|
|
|
142
142
|
else:
|
|
143
143
|
return "List"
|
|
144
144
|
|
|
145
|
+
if origin is tuple:
|
|
146
|
+
arg_str = ", ".join([self._model_type_to_string(arg) for arg in args])
|
|
147
|
+
if arg_str:
|
|
148
|
+
return f"Tuple[{arg_str}]"
|
|
149
|
+
else:
|
|
150
|
+
return "Tuple"
|
|
151
|
+
|
|
145
152
|
raise NotImplementedError(f"Unhandled type: {t}")
|
|
146
153
|
|
|
147
154
|
def _model_type_to_string(self, t: Type): # noqa: PLR0911
|
|
@@ -361,7 +368,9 @@ class MarkdownGenerator:
|
|
|
361
368
|
if name.startswith("_"):
|
|
362
369
|
continue
|
|
363
370
|
|
|
364
|
-
assert
|
|
371
|
+
assert (
|
|
372
|
+
param.annotation is not inspect.Parameter.empty
|
|
373
|
+
), f"SDK command '{sdk_prefix}.{c.__name__}' is missing a type hint for argument '{name}'"
|
|
365
374
|
type_str = "(" + self._model_type_to_string(param.annotation) + ")"
|
|
366
375
|
if param.default != inspect.Parameter.empty:
|
|
367
376
|
type_str += f" = {param.default!s}"
|
|
@@ -115,6 +115,7 @@ Class | Method | HTTP request | Description
|
|
|
115
115
|
*DefaultApi* | [**create_connect_session_api_v2_sessions_create_connect_session_post**](docs/DefaultApi.md#create_connect_session_api_v2_sessions_create_connect_session_post) | **POST** /api/v2/sessions/create_connect_session | Create Connect Session
|
|
116
116
|
*DefaultApi* | [**create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post**](docs/DefaultApi.md#create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post) | **POST** /api/v2/organizations/{organization_id}/create_endpoint_user | Create Endpoint User For Org
|
|
117
117
|
*DefaultApi* | [**create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post**](docs/DefaultApi.md#create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post) | **POST** /api/v2/fine_tuning/jobs/create | Create Fine Tuning Job
|
|
118
|
+
*DefaultApi* | [**create_instance_usage_budget_api_v2_instance_usage_budgets_post**](docs/DefaultApi.md#create_instance_usage_budget_api_v2_instance_usage_budgets_post) | **POST** /api/v2/instance_usage_budgets/ | Create Instance Usage Budget
|
|
118
119
|
*DefaultApi* | [**create_invitation_api_v2_organization_invitations_post**](docs/DefaultApi.md#create_invitation_api_v2_organization_invitations_post) | **POST** /api/v2/organization_invitations/ | Create Invitation
|
|
119
120
|
*DefaultApi* | [**create_job_api_v2_decorated_ha_jobs_create_post**](docs/DefaultApi.md#create_job_api_v2_decorated_ha_jobs_create_post) | **POST** /api/v2/decorated_ha_jobs/create | Create Job
|
|
120
121
|
*DefaultApi* | [**create_machine_api_v2_machines_create_post**](docs/DefaultApi.md#create_machine_api_v2_machines_create_post) | **POST** /api/v2/machines/create | Create Machine
|
|
@@ -125,6 +126,7 @@ Class | Method | HTTP request | Description
|
|
|
125
126
|
*DefaultApi* | [**create_organization_collaborator_api_v2_projects_project_id_collaborators_organization_post**](docs/DefaultApi.md#create_organization_collaborator_api_v2_projects_project_id_collaborators_organization_post) | **POST** /api/v2/projects/{project_id}/collaborators/organization | Create Organization Collaborator
|
|
126
127
|
*DefaultApi* | [**create_project_api_v2_projects_post**](docs/DefaultApi.md#create_project_api_v2_projects_post) | **POST** /api/v2/projects/ | Create Project
|
|
127
128
|
*DefaultApi* | [**create_project_collaborator_api_v2_projects_project_id_collaborators_users_post**](docs/DefaultApi.md#create_project_collaborator_api_v2_projects_project_id_collaborators_users_post) | **POST** /api/v2/projects/{project_id}/collaborators/users | Create Project Collaborator
|
|
129
|
+
*DefaultApi* | [**create_resource_quota_api_v2_resource_quotas_post**](docs/DefaultApi.md#create_resource_quota_api_v2_resource_quotas_post) | **POST** /api/v2/resource_quotas/ | Create Resource Quota
|
|
128
130
|
*DefaultApi* | [**create_service_account_api_v2_users_service_accounts_post**](docs/DefaultApi.md#create_service_account_api_v2_users_service_accounts_post) | **POST** /api/v2/users/service_accounts | Create Service Account
|
|
129
131
|
*DefaultApi* | [**create_session_command_api_v2_sessions_session_id_create_session_command_post**](docs/DefaultApi.md#create_session_command_api_v2_sessions_session_id_create_session_command_post) | **POST** /api/v2/sessions/{session_id}/create_session_command | Create Session Command
|
|
130
132
|
*DefaultApi* | [**create_web_terminal_api_v2_sessions_session_id_web_terminals_post**](docs/DefaultApi.md#create_web_terminal_api_v2_sessions_session_id_web_terminals_post) | **POST** /api/v2/sessions/{session_id}/web_terminals | Create Web Terminal
|
|
@@ -136,8 +138,10 @@ Class | Method | HTTP request | Description
|
|
|
136
138
|
*DefaultApi* | [**delete_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_identity_id_delete**](docs/DefaultApi.md#delete_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_identity_id_delete) | **DELETE** /api/v2/clouds/{cloud_id}/collaborators/{identity_id} | Delete Cloud Collaborator
|
|
137
139
|
*DefaultApi* | [**delete_compute_template_api_v2_compute_templates_template_id_delete**](docs/DefaultApi.md#delete_compute_template_api_v2_compute_templates_template_id_delete) | **DELETE** /api/v2/compute_templates/{template_id} | Delete Compute Template
|
|
138
140
|
*DefaultApi* | [**delete_hosted_cloud_api_v2_clouds_hosted_cloud_id_delete**](docs/DefaultApi.md#delete_hosted_cloud_api_v2_clouds_hosted_cloud_id_delete) | **DELETE** /api/v2/clouds/hosted/{cloud_id} | Delete Hosted Cloud
|
|
141
|
+
*DefaultApi* | [**delete_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_delete**](docs/DefaultApi.md#delete_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_delete) | **DELETE** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Delete Instance Usage Budget
|
|
139
142
|
*DefaultApi* | [**delete_machine_api_v2_machines_delete_post**](docs/DefaultApi.md#delete_machine_api_v2_machines_delete_post) | **POST** /api/v2/machines/delete | Delete Machine
|
|
140
143
|
*DefaultApi* | [**delete_machine_pool_api_v2_machine_pools_delete_post**](docs/DefaultApi.md#delete_machine_pool_api_v2_machine_pools_delete_post) | **POST** /api/v2/machine_pools/delete | Delete Machine Pool
|
|
144
|
+
*DefaultApi* | [**delete_model_api_v2_llm_models_model_id_delete**](docs/DefaultApi.md#delete_model_api_v2_llm_models_model_id_delete) | **DELETE** /api/v2/llm/models/{model_id} | Delete Model
|
|
141
145
|
*DefaultApi* | [**delete_project_api_v2_projects_project_id_delete**](docs/DefaultApi.md#delete_project_api_v2_projects_project_id_delete) | **DELETE** /api/v2/projects/{project_id} | Delete Project
|
|
142
146
|
*DefaultApi* | [**delete_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_delete**](docs/DefaultApi.md#delete_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_delete) | **DELETE** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Delete Project Collaborator
|
|
143
147
|
*DefaultApi* | [**delete_session_api_v2_sessions_session_id_delete**](docs/DefaultApi.md#delete_session_api_v2_sessions_session_id_delete) | **DELETE** /api/v2/sessions/{session_id} | Delete Session
|
|
@@ -199,6 +203,7 @@ Class | Method | HTTP request | Description
|
|
|
199
203
|
*DefaultApi* | [**get_file_api_v2_files_file_id_get**](docs/DefaultApi.md#get_file_api_v2_files_file_id_get) | **GET** /api/v2/files/{file_id} | Get File
|
|
200
204
|
*DefaultApi* | [**get_file_upload_url_api_v2_files_upload_url_post**](docs/DefaultApi.md#get_file_upload_url_api_v2_files_upload_url_post) | **POST** /api/v2/files/upload_url | Get File Upload Url
|
|
201
205
|
*DefaultApi* | [**get_fine_tuning_job_api_v2_fine_tuning_jobs_fine_tuning_job_id_get**](docs/DefaultApi.md#get_fine_tuning_job_api_v2_fine_tuning_jobs_fine_tuning_job_id_get) | **GET** /api/v2/fine_tuning/jobs/{fine_tuning_job_id} | Get Fine Tuning Job
|
|
206
|
+
*DefaultApi* | [**get_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_get**](docs/DefaultApi.md#get_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_get) | **GET** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Get Instance Usage Budget
|
|
202
207
|
*DefaultApi* | [**get_invitation_api_v2_organization_invitations_invitation_id_get**](docs/DefaultApi.md#get_invitation_api_v2_organization_invitations_invitation_id_get) | **GET** /api/v2/organization_invitations/{invitation_id} | Get Invitation
|
|
203
208
|
*DefaultApi* | [**get_job_api_v2_decorated_ha_jobs_production_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_ha_jobs_production_job_id_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id} | Get Job
|
|
204
209
|
*DefaultApi* | [**get_job_api_v2_decorated_unified_jobs_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_unified_jobs_job_id_get) | **GET** /api/v2/decorated_unified_jobs/{job_id} | Get Job
|
|
@@ -214,6 +219,7 @@ Class | Method | HTTP request | Description
|
|
|
214
219
|
*DefaultApi* | [**get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get**](docs/DefaultApi.md#get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get) | **GET** /api/v2/organization_billing/manage_billing_url | Get Manage Billing Url
|
|
215
220
|
*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
|
|
216
221
|
*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
|
|
222
|
+
*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
|
|
217
223
|
*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
|
|
218
224
|
*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
|
|
219
225
|
*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
|
|
@@ -290,6 +296,7 @@ Class | Method | HTTP request | Description
|
|
|
290
296
|
*DefaultApi* | [**list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get**](docs/DefaultApi.md#list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get) | **GET** /api/v2/decorated_runtime_envs/ | List Decorated Runtime Envs
|
|
291
297
|
*DefaultApi* | [**list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get**](docs/DefaultApi.md#list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get) | **GET** /api/v2/decorated_serve_deployments/ | List Decorated Serve Deployments
|
|
292
298
|
*DefaultApi* | [**list_fine_tuning_jobs_api_v2_fine_tuning_jobs_get**](docs/DefaultApi.md#list_fine_tuning_jobs_api_v2_fine_tuning_jobs_get) | **GET** /api/v2/fine_tuning/jobs | List Fine Tuning Jobs
|
|
299
|
+
*DefaultApi* | [**list_instance_usage_budgets_api_v2_instance_usage_budgets_get**](docs/DefaultApi.md#list_instance_usage_budgets_api_v2_instance_usage_budgets_get) | **GET** /api/v2/instance_usage_budgets/ | List Instance Usage Budgets
|
|
293
300
|
*DefaultApi* | [**list_invitations_api_v2_organization_invitations_get**](docs/DefaultApi.md#list_invitations_api_v2_organization_invitations_get) | **GET** /api/v2/organization_invitations/ | List Invitations
|
|
294
301
|
*DefaultApi* | [**list_job_queues_api_v2_job_queues_post**](docs/DefaultApi.md#list_job_queues_api_v2_job_queues_post) | **POST** /api/v2/job_queues/ | List Job Queues
|
|
295
302
|
*DefaultApi* | [**list_job_states_api_v2_decorated_ha_job_states_get**](docs/DefaultApi.md#list_job_states_api_v2_decorated_ha_job_states_get) | **GET** /api/v2/decorated_ha_job_states/ | List Job States
|
|
@@ -297,10 +304,12 @@ Class | Method | HTTP request | Description
|
|
|
297
304
|
*DefaultApi* | [**list_machine_pools_api_v2_machine_pools_get**](docs/DefaultApi.md#list_machine_pools_api_v2_machine_pools_get) | **GET** /api/v2/machine_pools/ | List Machine Pools
|
|
298
305
|
*DefaultApi* | [**list_machines_api_v2_machines_get**](docs/DefaultApi.md#list_machines_api_v2_machines_get) | **GET** /api/v2/machines/ | List Machines
|
|
299
306
|
*DefaultApi* | [**list_models_api_v2_aica_endpoints_models_get**](docs/DefaultApi.md#list_models_api_v2_aica_endpoints_models_get) | **GET** /api/v2/aica_endpoints/models | List Models
|
|
307
|
+
*DefaultApi* | [**list_models_api_v2_llm_models_get**](docs/DefaultApi.md#list_models_api_v2_llm_models_get) | **GET** /api/v2/llm/models | List Models
|
|
300
308
|
*DefaultApi* | [**list_organization_collaborators_api_v2_organization_collaborators_get**](docs/DefaultApi.md#list_organization_collaborators_api_v2_organization_collaborators_get) | **GET** /api/v2/organization_collaborators/ | List Organization Collaborators
|
|
301
309
|
*DefaultApi* | [**list_organization_project_collaborators_api_v2_projects_project_id_collaborators_organizations_get**](docs/DefaultApi.md#list_organization_project_collaborators_api_v2_projects_project_id_collaborators_organizations_get) | **GET** /api/v2/projects/{project_id}/collaborators/organizations | List Organization Project Collaborators
|
|
302
310
|
*DefaultApi* | [**list_project_collaborators_api_v2_projects_project_id_collaborators_users_get**](docs/DefaultApi.md#list_project_collaborators_api_v2_projects_project_id_collaborators_users_get) | **GET** /api/v2/projects/{project_id}/collaborators/users | List Project Collaborators
|
|
303
311
|
*DefaultApi* | [**list_projects_api_v2_projects_get**](docs/DefaultApi.md#list_projects_api_v2_projects_get) | **GET** /api/v2/projects/ | List Projects
|
|
312
|
+
*DefaultApi* | [**list_resource_quotas_api_v2_resource_quotas_get**](docs/DefaultApi.md#list_resource_quotas_api_v2_resource_quotas_get) | **GET** /api/v2/resource_quotas/ | List Resource Quotas
|
|
304
313
|
*DefaultApi* | [**list_services_api_v2_services_v2_get**](docs/DefaultApi.md#list_services_api_v2_services_v2_get) | **GET** /api/v2/services-v2/ | List Services
|
|
305
314
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
|
306
315
|
*DefaultApi* | [**list_versions_api_v2_aica_endpoints_versions_get**](docs/DefaultApi.md#list_versions_api_v2_aica_endpoints_versions_get) | **GET** /api/v2/aica_endpoints/versions | List Versions
|
|
@@ -360,6 +369,7 @@ Class | Method | HTTP request | Description
|
|
|
360
369
|
*DefaultApi* | [**terminate_job_api_v2_decorated_ha_jobs_production_job_id_terminate_post**](docs/DefaultApi.md#terminate_job_api_v2_decorated_ha_jobs_production_job_id_terminate_post) | **POST** /api/v2/decorated_ha_jobs/{production_job_id}/terminate | Terminate Job
|
|
361
370
|
*DefaultApi* | [**terminate_service_api_v2_services_v2_service_id_terminate_post**](docs/DefaultApi.md#terminate_service_api_v2_services_v2_service_id_terminate_post) | **POST** /api/v2/services-v2/{service_id}/terminate | Terminate Service
|
|
362
371
|
*DefaultApi* | [**test_saml_acs_api_v2_organizations_organization_id_test_saml_acs_post**](docs/DefaultApi.md#test_saml_acs_api_v2_organizations_organization_id_test_saml_acs_post) | **POST** /api/v2/organizations/{organization_id}/test_saml_acs | Test Saml Acs
|
|
372
|
+
*DefaultApi* | [**toggle_instance_usage_budget_is_enabled_api_v2_instance_usage_budgets_instance_usage_budget_id_toggle_is_enabled_post**](docs/DefaultApi.md#toggle_instance_usage_budget_is_enabled_api_v2_instance_usage_budgets_instance_usage_budget_id_toggle_is_enabled_post) | **POST** /api/v2/instance_usage_budgets/{instance_usage_budget_id}/toggle_is_enabled | Toggle Instance Usage Budget Is Enabled
|
|
363
373
|
*DefaultApi* | [**trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post**](docs/DefaultApi.md#trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/trigger | Trigger Cron Job
|
|
364
374
|
*DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
|
|
365
375
|
*DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
|
|
@@ -373,6 +383,8 @@ Class | Method | HTTP request | Description
|
|
|
373
383
|
*DefaultApi* | [**update_customer_aggregated_logs_config_api_v2_clouds_cloud_id_update_customer_aggregated_logs_config_put**](docs/DefaultApi.md#update_customer_aggregated_logs_config_api_v2_clouds_cloud_id_update_customer_aggregated_logs_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_customer_aggregated_logs_config | Update Customer Aggregated Logs Config
|
|
374
384
|
*DefaultApi* | [**update_default_cloud_api_v2_organizations_update_default_cloud_post**](docs/DefaultApi.md#update_default_cloud_api_v2_organizations_update_default_cloud_post) | **POST** /api/v2/organizations/update_default_cloud | Update Default Cloud
|
|
375
385
|
*DefaultApi* | [**update_dns_api_v2_dns_post**](docs/DefaultApi.md#update_dns_api_v2_dns_post) | **POST** /api/v2/dns/ | Update Dns
|
|
386
|
+
*DefaultApi* | [**update_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_put**](docs/DefaultApi.md#update_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_put) | **PUT** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Update Instance Usage Budget
|
|
387
|
+
*DefaultApi* | [**update_job_queue_config_api_v2_decorated_ha_jobs_production_job_id_update_job_queue_config_put**](docs/DefaultApi.md#update_job_queue_config_api_v2_decorated_ha_jobs_production_job_id_update_job_queue_config_put) | **PUT** /api/v2/decorated_ha_jobs/{production_job_id}/update_job_queue_config | Update Job Queue Config
|
|
376
388
|
*DefaultApi* | [**upload_file_api_v2_files_post**](docs/DefaultApi.md#upload_file_api_v2_files_post) | **POST** /api/v2/files | Upload File
|
|
377
389
|
*DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
|
|
378
390
|
*DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
|
|
@@ -549,6 +561,7 @@ Class | Method | HTTP request | Description
|
|
|
549
561
|
- [CreateExperimentalWorkspaceFromJob](docs/CreateExperimentalWorkspaceFromJob.md)
|
|
550
562
|
- [CreateFineTuningHyperparameters](docs/CreateFineTuningHyperparameters.md)
|
|
551
563
|
- [CreateFineTuningJobProductRequest](docs/CreateFineTuningJobProductRequest.md)
|
|
564
|
+
- [CreateInstanceUsageBudget](docs/CreateInstanceUsageBudget.md)
|
|
552
565
|
- [CreateInternalProductionJob](docs/CreateInternalProductionJob.md)
|
|
553
566
|
- [CreateJobQueueConfig](docs/CreateJobQueueConfig.md)
|
|
554
567
|
- [CreateMachinePoolRequest](docs/CreateMachinePoolRequest.md)
|
|
@@ -560,6 +573,7 @@ Class | Method | HTTP request | Description
|
|
|
560
573
|
- [CreateOrganizationConfiguration](docs/CreateOrganizationConfiguration.md)
|
|
561
574
|
- [CreateOrganizationInvitation](docs/CreateOrganizationInvitation.md)
|
|
562
575
|
- [CreateProductionJobConfig](docs/CreateProductionJobConfig.md)
|
|
576
|
+
- [CreateResourceQuota](docs/CreateResourceQuota.md)
|
|
563
577
|
- [CreateSchedule](docs/CreateSchedule.md)
|
|
564
578
|
- [CreateSessionFromSnapshotOptions](docs/CreateSessionFromSnapshotOptions.md)
|
|
565
579
|
- [CreateSessionInDb](docs/CreateSessionInDb.md)
|
|
@@ -633,6 +647,8 @@ Class | Method | HTTP request | Description
|
|
|
633
647
|
- [DecoratedunifiedjobResponse](docs/DecoratedunifiedjobResponse.md)
|
|
634
648
|
- [DeleteMachinePoolRequest](docs/DeleteMachinePoolRequest.md)
|
|
635
649
|
- [DeleteMachineRequest](docs/DeleteMachineRequest.md)
|
|
650
|
+
- [DeletedPlatformFineTunedModel](docs/DeletedPlatformFineTunedModel.md)
|
|
651
|
+
- [DeletedplatformfinetunedmodelResponse](docs/DeletedplatformfinetunedmodelResponse.md)
|
|
636
652
|
- [DeletemachinepoolresponseResponse](docs/DeletemachinepoolresponseResponse.md)
|
|
637
653
|
- [DetachMachinePoolFromCloudRequest](docs/DetachMachinePoolFromCloudRequest.md)
|
|
638
654
|
- [DetachmachinepoolfromcloudresponseResponse](docs/DetachmachinepoolfromcloudresponseResponse.md)
|
|
@@ -640,6 +656,7 @@ Class | Method | HTTP request | Description
|
|
|
640
656
|
- [EbsBlockDevice](docs/EbsBlockDevice.md)
|
|
641
657
|
- [EditableCloudResource](docs/EditableCloudResource.md)
|
|
642
658
|
- [EditableCloudResourceGCP](docs/EditableCloudResourceGCP.md)
|
|
659
|
+
- [EndpointsFineTunedModelStatus](docs/EndpointsFineTunedModelStatus.md)
|
|
643
660
|
- [Error](docs/Error.md)
|
|
644
661
|
- [EventLevel](docs/EventLevel.md)
|
|
645
662
|
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
|
@@ -658,7 +675,10 @@ Class | Method | HTTP request | Description
|
|
|
658
675
|
- [FeatureflagresponseResponse](docs/FeatureflagresponseResponse.md)
|
|
659
676
|
- [FileModel](docs/FileModel.md)
|
|
660
677
|
- [FilemodelResponse](docs/FilemodelResponse.md)
|
|
678
|
+
- [FineTuneType](docs/FineTuneType.md)
|
|
679
|
+
- [FineTunedModel](docs/FineTunedModel.md)
|
|
661
680
|
- [FineTuningJobStatus](docs/FineTuningJobStatus.md)
|
|
681
|
+
- [FinetunedmodelListResponse](docs/FinetunedmodelListResponse.md)
|
|
662
682
|
- [FinishFTJobRequest](docs/FinishFTJobRequest.md)
|
|
663
683
|
- [FinishFTJobRequestV2](docs/FinishFTJobRequestV2.md)
|
|
664
684
|
- [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
|
|
@@ -681,6 +701,10 @@ Class | Method | HTTP request | Description
|
|
|
681
701
|
- [IamInstanceProfileSpecification](docs/IamInstanceProfileSpecification.md)
|
|
682
702
|
- [IdleTerminationStatus](docs/IdleTerminationStatus.md)
|
|
683
703
|
- [ImportAicaModel](docs/ImportAicaModel.md)
|
|
704
|
+
- [InstanceUsageBudget](docs/InstanceUsageBudget.md)
|
|
705
|
+
- [InstanceUsageBudgetEvaluationPeriod](docs/InstanceUsageBudgetEvaluationPeriod.md)
|
|
706
|
+
- [InstanceusagebudgetListResponse](docs/InstanceusagebudgetListResponse.md)
|
|
707
|
+
- [InstanceusagebudgetResponse](docs/InstanceusagebudgetResponse.md)
|
|
684
708
|
- [IntegrationDetails](docs/IntegrationDetails.md)
|
|
685
709
|
- [InteractiveSessionLogs](docs/InteractiveSessionLogs.md)
|
|
686
710
|
- [InteractivesessionlogsResponse](docs/InteractivesessionlogsResponse.md)
|
|
@@ -713,6 +737,7 @@ Class | Method | HTTP request | Description
|
|
|
713
737
|
- [LbresourceResponse](docs/LbresourceResponse.md)
|
|
714
738
|
- [ListMachinePoolsResponse](docs/ListMachinePoolsResponse.md)
|
|
715
739
|
- [ListMachinesResponse](docs/ListMachinesResponse.md)
|
|
740
|
+
- [ListResourceQuotasQuery](docs/ListResourceQuotasQuery.md)
|
|
716
741
|
- [ListResponseMetadata](docs/ListResponseMetadata.md)
|
|
717
742
|
- [ListmachinepoolsresponseResponse](docs/ListmachinepoolsresponseResponse.md)
|
|
718
743
|
- [ListmachinesresponseResponse](docs/ListmachinesresponseResponse.md)
|
|
@@ -831,6 +856,7 @@ Class | Method | HTTP request | Description
|
|
|
831
856
|
- [ProviderMetadata](docs/ProviderMetadata.md)
|
|
832
857
|
- [ProvidermetadataResponse](docs/ProvidermetadataResponse.md)
|
|
833
858
|
- [PythonModules](docs/PythonModules.md)
|
|
859
|
+
- [Quota](docs/Quota.md)
|
|
834
860
|
- [RayGCSExternalStorageConfig](docs/RayGCSExternalStorageConfig.md)
|
|
835
861
|
- [RayRuntimeEnvConfig](docs/RayRuntimeEnvConfig.md)
|
|
836
862
|
- [ReadBillingVersion](docs/ReadBillingVersion.md)
|
|
@@ -843,6 +869,9 @@ Class | Method | HTTP request | Description
|
|
|
843
869
|
- [RequestemailmagiclinkresponseResponse](docs/RequestemailmagiclinkresponseResponse.md)
|
|
844
870
|
- [RequestotpreturnapimodelResponse](docs/RequestotpreturnapimodelResponse.md)
|
|
845
871
|
- [ResetPasswordParams](docs/ResetPasswordParams.md)
|
|
872
|
+
- [ResourceQuota](docs/ResourceQuota.md)
|
|
873
|
+
- [ResourcequotaListResponse](docs/ResourcequotaListResponse.md)
|
|
874
|
+
- [ResourcequotaResponse](docs/ResourcequotaResponse.md)
|
|
846
875
|
- [Resources](docs/Resources.md)
|
|
847
876
|
- [ResubmitFTJobRequest](docs/ResubmitFTJobRequest.md)
|
|
848
877
|
- [RollbackServiceModel](docs/RollbackServiceModel.md)
|
|
@@ -188,6 +188,7 @@ from openapi_client.models.create_experimental_workspace import CreateExperiment
|
|
|
188
188
|
from openapi_client.models.create_experimental_workspace_from_job import CreateExperimentalWorkspaceFromJob
|
|
189
189
|
from openapi_client.models.create_fine_tuning_hyperparameters import CreateFineTuningHyperparameters
|
|
190
190
|
from openapi_client.models.create_fine_tuning_job_product_request import CreateFineTuningJobProductRequest
|
|
191
|
+
from openapi_client.models.create_instance_usage_budget import CreateInstanceUsageBudget
|
|
191
192
|
from openapi_client.models.create_internal_production_job import CreateInternalProductionJob
|
|
192
193
|
from openapi_client.models.create_job_queue_config import CreateJobQueueConfig
|
|
193
194
|
from openapi_client.models.create_machine_pool_request import CreateMachinePoolRequest
|
|
@@ -199,6 +200,7 @@ from openapi_client.models.create_otp_return_api_model import CreateOTPReturnApi
|
|
|
199
200
|
from openapi_client.models.create_organization_configuration import CreateOrganizationConfiguration
|
|
200
201
|
from openapi_client.models.create_organization_invitation import CreateOrganizationInvitation
|
|
201
202
|
from openapi_client.models.create_production_job_config import CreateProductionJobConfig
|
|
203
|
+
from openapi_client.models.create_resource_quota import CreateResourceQuota
|
|
202
204
|
from openapi_client.models.create_schedule import CreateSchedule
|
|
203
205
|
from openapi_client.models.create_session_from_snapshot_options import CreateSessionFromSnapshotOptions
|
|
204
206
|
from openapi_client.models.create_session_in_db import CreateSessionInDb
|
|
@@ -272,6 +274,8 @@ from openapi_client.models.decoratedunifiedjob_list_response import Decorateduni
|
|
|
272
274
|
from openapi_client.models.decoratedunifiedjob_response import DecoratedunifiedjobResponse
|
|
273
275
|
from openapi_client.models.delete_machine_pool_request import DeleteMachinePoolRequest
|
|
274
276
|
from openapi_client.models.delete_machine_request import DeleteMachineRequest
|
|
277
|
+
from openapi_client.models.deleted_platform_fine_tuned_model import DeletedPlatformFineTunedModel
|
|
278
|
+
from openapi_client.models.deletedplatformfinetunedmodel_response import DeletedplatformfinetunedmodelResponse
|
|
275
279
|
from openapi_client.models.deletemachinepoolresponse_response import DeletemachinepoolresponseResponse
|
|
276
280
|
from openapi_client.models.detach_machine_pool_from_cloud_request import DetachMachinePoolFromCloudRequest
|
|
277
281
|
from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
|
|
@@ -279,6 +283,7 @@ from openapi_client.models.dismissal_type import DismissalType
|
|
|
279
283
|
from openapi_client.models.ebs_block_device import EbsBlockDevice
|
|
280
284
|
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
|
281
285
|
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
|
286
|
+
from openapi_client.models.endpoints_fine_tuned_model_status import EndpointsFineTunedModelStatus
|
|
282
287
|
from openapi_client.models.error import Error
|
|
283
288
|
from openapi_client.models.event_level import EventLevel
|
|
284
289
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
|
@@ -297,7 +302,10 @@ from openapi_client.models.feature_flag_response import FeatureFlagResponse
|
|
|
297
302
|
from openapi_client.models.featureflagresponse_response import FeatureflagresponseResponse
|
|
298
303
|
from openapi_client.models.file_model import FileModel
|
|
299
304
|
from openapi_client.models.filemodel_response import FilemodelResponse
|
|
305
|
+
from openapi_client.models.fine_tune_type import FineTuneType
|
|
306
|
+
from openapi_client.models.fine_tuned_model import FineTunedModel
|
|
300
307
|
from openapi_client.models.fine_tuning_job_status import FineTuningJobStatus
|
|
308
|
+
from openapi_client.models.finetunedmodel_list_response import FinetunedmodelListResponse
|
|
301
309
|
from openapi_client.models.finish_ft_job_request import FinishFTJobRequest
|
|
302
310
|
from openapi_client.models.finish_ft_job_request_v2 import FinishFTJobRequestV2
|
|
303
311
|
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|
|
@@ -320,6 +328,10 @@ from openapi_client.models.http_protocol_config import HttpProtocolConfig
|
|
|
320
328
|
from openapi_client.models.iam_instance_profile_specification import IamInstanceProfileSpecification
|
|
321
329
|
from openapi_client.models.idle_termination_status import IdleTerminationStatus
|
|
322
330
|
from openapi_client.models.import_aica_model import ImportAicaModel
|
|
331
|
+
from openapi_client.models.instance_usage_budget import InstanceUsageBudget
|
|
332
|
+
from openapi_client.models.instance_usage_budget_evaluation_period import InstanceUsageBudgetEvaluationPeriod
|
|
333
|
+
from openapi_client.models.instanceusagebudget_list_response import InstanceusagebudgetListResponse
|
|
334
|
+
from openapi_client.models.instanceusagebudget_response import InstanceusagebudgetResponse
|
|
323
335
|
from openapi_client.models.integration_details import IntegrationDetails
|
|
324
336
|
from openapi_client.models.interactive_session_logs import InteractiveSessionLogs
|
|
325
337
|
from openapi_client.models.interactivesessionlogs_response import InteractivesessionlogsResponse
|
|
@@ -352,6 +364,7 @@ from openapi_client.models.lb_resource import LBResource
|
|
|
352
364
|
from openapi_client.models.lbresource_response import LbresourceResponse
|
|
353
365
|
from openapi_client.models.list_machine_pools_response import ListMachinePoolsResponse
|
|
354
366
|
from openapi_client.models.list_machines_response import ListMachinesResponse
|
|
367
|
+
from openapi_client.models.list_resource_quotas_query import ListResourceQuotasQuery
|
|
355
368
|
from openapi_client.models.list_response_metadata import ListResponseMetadata
|
|
356
369
|
from openapi_client.models.listmachinepoolsresponse_response import ListmachinepoolsresponseResponse
|
|
357
370
|
from openapi_client.models.listmachinesresponse_response import ListmachinesresponseResponse
|
|
@@ -470,6 +483,7 @@ from openapi_client.models.protocols import Protocols
|
|
|
470
483
|
from openapi_client.models.provider_metadata import ProviderMetadata
|
|
471
484
|
from openapi_client.models.providermetadata_response import ProvidermetadataResponse
|
|
472
485
|
from openapi_client.models.python_modules import PythonModules
|
|
486
|
+
from openapi_client.models.quota import Quota
|
|
473
487
|
from openapi_client.models.ray_gcs_external_storage_config import RayGCSExternalStorageConfig
|
|
474
488
|
from openapi_client.models.ray_runtime_env_config import RayRuntimeEnvConfig
|
|
475
489
|
from openapi_client.models.read_billing_version import ReadBillingVersion
|
|
@@ -482,6 +496,9 @@ from openapi_client.models.request_password_reset_params import RequestPasswordR
|
|
|
482
496
|
from openapi_client.models.requestemailmagiclinkresponse_response import RequestemailmagiclinkresponseResponse
|
|
483
497
|
from openapi_client.models.requestotpreturnapimodel_response import RequestotpreturnapimodelResponse
|
|
484
498
|
from openapi_client.models.reset_password_params import ResetPasswordParams
|
|
499
|
+
from openapi_client.models.resource_quota import ResourceQuota
|
|
500
|
+
from openapi_client.models.resourcequota_list_response import ResourcequotaListResponse
|
|
501
|
+
from openapi_client.models.resourcequota_response import ResourcequotaResponse
|
|
485
502
|
from openapi_client.models.resources import Resources
|
|
486
503
|
from openapi_client.models.resubmit_ft_job_request import ResubmitFTJobRequest
|
|
487
504
|
from openapi_client.models.rollback_service_model import RollbackServiceModel
|