anyscale 0.26.57__tar.gz → 0.26.59__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.26.57/anyscale.egg-info → anyscale-0.26.59}/PKG-INFO +1 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/anyscale_client/common.py +1 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/README.md +60 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/__init__.py +42 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/api/default_api.py +2541 -303
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/__init__.py +42 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +31 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/baseimagesenum.py +76 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_internal_production_job.py +31 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_job_queue_requests.py +31 -3
- anyscale-0.26.59/anyscale/client/openapi_client/models/create_workspace_template.py +404 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/create_workspace_template_version.py +178 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/delete_resource_tags_request.py +175 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/deleted_count.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/deletedcount_response.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/email_verification_request.py +175 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/email_verification_response.py +120 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/emailverificationresponse_response.py +121 -0
- anyscale-0.26.57/anyscale/client/openapi_client/models/workspace_template.py → anyscale-0.26.59/anyscale/client/openapi_client/models/global_workspace_template.py +56 -56
- anyscale-0.26.59/anyscale/client/openapi_client/models/globalworkspacetemplate_list_response.py +147 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queues_query.py +31 -3
- anyscale-0.26.59/anyscale/client/openapi_client/models/operator_event.py +256 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/operator_event_response.py +148 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/operator_event_type.py +101 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/published_filter.py +101 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/resource_tag_record.py +310 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/resource_tag_resource_type.py +102 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/resource_tags_list.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/resourcetagslist_response.py +121 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +76 -1
- anyscale-0.26.59/anyscale/client/openapi_client/models/tag_key.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/tag_key_value.py +148 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/tag_search_in.py +101 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/tag_value.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/tagkey_list_response.py +147 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/tagkeyvalue_list_response.py +147 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/tagvalue_list_response.py +147 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/task_attempts.py +101 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_table_config.py +29 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_job_queue_request.py +31 -3
- anyscale-0.26.59/anyscale/client/openapi_client/models/upsert_resource_tags_request.py +175 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/use_work_os_response.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/useworkosresponse_response.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/work_os_authorize_url_response.py +120 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workosauthorizeurlresponse_response.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_system_artifacts.py +234 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template.py +604 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template_category.py +100 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template_complexity.py +101 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template_icon_background_color.py +105 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template_icon_type.py +108 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template_version.py +323 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_template_version_data_object.py +323 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspace_templates_sort_field.py +101 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspacetemplate_response.py +121 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspacetemplateversion_list_response.py +147 -0
- anyscale-0.26.59/anyscale/client/openapi_client/models/workspacetemplateversion_response.py +121 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/cloud_commands.py +15 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/command_examples.py +2 -2
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/cloud_controller.py +7 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +31 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/apply_service_model.py +31 -3
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +76 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +76 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/id_gen.py +3 -0
- anyscale-0.26.59/anyscale/version.py +1 -0
- {anyscale-0.26.57 → anyscale-0.26.59/anyscale.egg-info}/PKG-INFO +1 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale.egg-info/SOURCES.txt +42 -0
- anyscale-0.26.57/anyscale/version.py +0 -1
- {anyscale-0.26.57 → anyscale-0.26.59}/.covrc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/README.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/api-client.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/architecture.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/authentication.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/cloud-providers.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/development.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/error-handling.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/rules.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/style-guide.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/telemetry.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/testing-guide.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/testing.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/.cursor/workflow-simple.mdc +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/BUILD.bazel +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/LICENSE +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/MANIFEST.in +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/NOTICE +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/README.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/anyscale_client/anyscale_client.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/anyscale_client/fake_anyscale_client.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/docgen/README.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/docgen/__main__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/docgen/api.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/docgen/generator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/docgen/generator_legacy.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/docgen/models.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/models/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/models/image_uri.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/models/model_base.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/sdk/base_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/sdk/timer.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/utils/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/utils/progress_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/workload/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/workload/workload_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/_private/workload/workload_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/aggregated_instance_usage/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/aggregated_instance_usage/_private/aggregated_instance_usage_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/aggregated_instance_usage/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/aggregated_instance_usage/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/LICENSE +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/README.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/cursor.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/halo.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_halo/halo_notebook.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/common_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/authenticate.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/background/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cli_logger.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/.gitignore +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/actor_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/admin_create_user.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/admin_created_user.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/admincreateduser_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aggregated_usage.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aggregated_usage_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aggregatedinstanceusagecsv_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aggregatedusage_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/alert_issue_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/anyscale_service_account.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/anyscaleserviceaccount_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/application_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aws_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/backend_server_api_product_models_dataset_runs_dataset_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/backend_server_api_product_routers_datasets_router_dataset_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/billing_version_code.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cli_usage_payload.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_access_mode.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_scheme.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_scheme.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_data_bucket_request_scope.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_deployment.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_deployment_compute_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_deployment_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_hosting_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_overview_dashboard.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_waitlist_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clouddatabucketpresignedurlresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clouddeploymentconfig_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudoverviewdashboard_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_event_source.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_operation.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clusterevent_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/collaborator_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/commit_ledger_item_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/commit_ledger_record_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/complexity_level.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/compute_stack.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_billing_version.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_dataset.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_instance_usage_budget.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_metronome_webhook_notification.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_notification_channel_record.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_organization_configuration.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_resource_notification.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_resource_quota.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credit_grant_record_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credit_ledger_item_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credit_ledger_record_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credit_record_commit_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credit_record_credit_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credit_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/credits_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dashboard_panel.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_dag.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_dag_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_jobs.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_metrics.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/dataset_upload.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/datasetupload_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_job_queue.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedcloudresource_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedcloudresource_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedjobqueue_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedjobqueue_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_requests_filters.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_machine_pool_workloads_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describe_system_workload_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/describesystemworkloadresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/event_level.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/experimental_workspaces_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/file_storage.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/fine_tune_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/fine_tuned_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/finetunedmodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/finetunedmodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/gcp_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/get_or_create_build_from_image_uri_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/grafana_dashboard.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_job_error_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_job_event_level.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_job_event_origin.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/i_know_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/i_know_time_series_event.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/instance_usage_budget.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/instanceusagebudget_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/instanceusagebudget_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue_sort_directive.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_queue_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_report.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/job_with_report.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/jobqueue_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/jobwithreport_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/kubernetes_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/list_ray_sessions_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/list_resource_notifications_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/list_resource_quotas_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/listraysessionsresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/long_running_workload.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/longrunningworkload_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_launch_failure.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_pool_search_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_pool_search_result.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machine_state_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machinepoolsearchresult_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/machinestateinfo_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metric.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metrics_query_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metricsqueryresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metronome_customer_info_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/networking_mode.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/nfs_mount_target.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/node_registration_k8_s.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/notification_channel_email_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/notification_channel_slack_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/notification_channel_webhook_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/object_storage.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operation_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operation_progress.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operation_result.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_branch.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_check_result.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_check_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_id.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_metrics.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/operator_status_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_configuration.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_configuration_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_marketing_questions.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationconfiguration_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationconfigurationresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/partition_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/plan_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/presigned_url_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/production_job_event.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/production_job_event_scope_filter.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/productionjobevent_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/quota.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ray_session.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/read_billing_version.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/readbillingversion_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/request_state_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/requeststateinfo_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resource_alert_event_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resource_notification.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resource_quota.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resource_quota_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resourcenotification_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resourcenotification_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resourcequota_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resourcequota_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/run_attempt_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/run_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/scheduler_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_scope.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_event_verbose_message_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/service_version_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/serviceeventverbosemessagemodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/sso_mode.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/summarize_machine_pool_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/summarize_machine_pool_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/summarizemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/system_workload_name.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_exception_group_aggregate.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_function_name_group_aggregate.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_function_name_group_aggregate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_job_group_aggregate.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_job_group_aggregate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_summary.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_table_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_table_row.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/task_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/tasksummary_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/tracing_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/train_resources.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/train_run.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/train_run_attempt.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/train_worker.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/trainrun_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_cloud_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_machine_pool_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_payment_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/update_resource_quota.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/updatemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usage_by_cloud.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usage_by_cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usage_by_instance_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usage_by_project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usage_by_user.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usagebycloud_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usagebycluster_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usagebyinstancetype_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usagebyproject_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/usagebyuser_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/utm_fields.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/ux_instance.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/waitlist_status_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/waitliststatusresponse_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workload_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workload_machine_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workload_state_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workload_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workloadstateinfo_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_event.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_event_source.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_event_source_filter.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspace_template_readme.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspaceevent_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/workspacetemplatereadme_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/setup.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/client/tox.ini +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cloud/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cloud/_private/cloud_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cloud/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cloud/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cloud_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/cluster_env.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/aggregated_instance_usage_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/cloud_commands_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/image_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/job_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/job_queue_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/list_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/organization_invitation_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/resource_quota_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/service_account_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/user_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/commands/workspace_commands_v2.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/compute_config/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/compute_config/_private/compute_config_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/compute_config/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/compute_config/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/conf.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/connect.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/cloud_file_storage_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/kubernetes_verifier.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/feature_flags.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/fingerprint.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/image/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/image/_private/image_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/image/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/image/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/integrations.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job/_private/job_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job_queue/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job_queue/_private/job_queue_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job_queue/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/job_queue/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/links.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/memorydb_supported_zones.json +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/models/job_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/models/service_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/organization_invitation/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/organization_invitation/_private/organization_invitation_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/organization_invitation/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/organization_invitation/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/project/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/project/_private/project_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/project/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/project/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/project_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/resource_quota/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/resource_quota/_private/resource_quota_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/resource_quota/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/resource_quota/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/schedule/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/schedule/_private/schedule_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/schedule/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/schedule/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/scripts.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/compute_stack.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/service_version_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/system_workload_name.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/tracing_config.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/ux_instance.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service/_private/service_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service_account/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service_account/_private/service_account_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service_account/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/service_account/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/bytes_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/constants.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/snapshot.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/tables.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/telemetry.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/user/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/user/_private/user_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/user/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/user/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/s3.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/ssh_websocket_proxy.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/user_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/workspace/__init__.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/workspace/_private/workspace_sdk.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/workspace/commands.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/workspace/models.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale/workspace_utils.py +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/requirements.in +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/setup.cfg +0 -0
- {anyscale-0.26.57 → anyscale-0.26.59}/setup.py +0 -0
@@ -57,7 +57,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
57
57
|
# Maybe just make it part of the release process to update it, or fetch the
|
58
58
|
# default builds and get the latest one. The best thing to do is probably
|
59
59
|
# to populate this in the backend.
|
60
|
-
DEFAULT_RAY_VERSION = "2.49.
|
60
|
+
DEFAULT_RAY_VERSION = "2.49.2" # RAY_RELEASE_UPDATE: update to latest version.
|
61
61
|
DEFAULT_PYTHON_VERSION = "py311"
|
62
62
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
63
63
|
|
@@ -129,6 +129,8 @@ Class | Method | HTTP request | Description
|
|
129
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
|
130
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
|
131
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
|
132
|
+
*DefaultApi* | [**create_template_api_v2_workspace_templates_post**](docs/DefaultApi.md#create_template_api_v2_workspace_templates_post) | **POST** /api/v2/workspace_templates/ | Create Template
|
133
|
+
*DefaultApi* | [**create_version_api_v2_workspace_templates_template_id_versions_post**](docs/DefaultApi.md#create_version_api_v2_workspace_templates_template_id_versions_post) | **POST** /api/v2/workspace_templates/{template_id}/versions | Create Version
|
132
134
|
*DefaultApi* | [**create_workspace_api_v2_experimental_workspaces_post**](docs/DefaultApi.md#create_workspace_api_v2_experimental_workspaces_post) | **POST** /api/v2/experimental_workspaces/ | Create Workspace
|
133
135
|
*DefaultApi* | [**create_workspace_from_template_api_v2_experimental_workspaces_from_template_post**](docs/DefaultApi.md#create_workspace_from_template_api_v2_experimental_workspaces_from_template_post) | **POST** /api/v2/experimental_workspaces/from_template | Create Workspace From Template
|
134
136
|
*DefaultApi* | [**delete_cloud_api_v2_clouds_cloud_id_delete**](docs/DefaultApi.md#delete_cloud_api_v2_clouds_cloud_id_delete) | **DELETE** /api/v2/clouds/{cloud_id} | Delete Cloud
|
@@ -142,6 +144,7 @@ Class | Method | HTTP request | Description
|
|
142
144
|
*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
145
|
*DefaultApi* | [**delete_resource_notification_api_v2_resource_notifications_resource_notification_id_delete**](docs/DefaultApi.md#delete_resource_notification_api_v2_resource_notifications_resource_notification_id_delete) | **DELETE** /api/v2/resource_notifications/{resource_notification_id} | Delete Resource Notification
|
144
146
|
*DefaultApi* | [**delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete**](docs/DefaultApi.md#delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete) | **DELETE** /api/v2/resource_quotas/{resource_quota_id} | Delete Resource Quota
|
147
|
+
*DefaultApi* | [**delete_resource_tags_api_v2_tags_resource_delete**](docs/DefaultApi.md#delete_resource_tags_api_v2_tags_resource_delete) | **DELETE** /api/v2/tags/resource | Delete Resource Tags
|
145
148
|
*DefaultApi* | [**delete_service_api_v2_services_v2_service_id_delete**](docs/DefaultApi.md#delete_service_api_v2_services_v2_service_id_delete) | **DELETE** /api/v2/services-v2/{service_id} | Delete Service
|
146
149
|
*DefaultApi* | [**delete_workspace_api_v2_experimental_workspaces_workspace_id_delete**](docs/DefaultApi.md#delete_workspace_api_v2_experimental_workspaces_workspace_id_delete) | **DELETE** /api/v2/experimental_workspaces/{workspace_id} | Delete Workspace
|
147
150
|
*DefaultApi* | [**describe_machine_pool_api_v2_machine_pools_describe_post**](docs/DefaultApi.md#describe_machine_pool_api_v2_machine_pools_describe_post) | **POST** /api/v2/machine_pools/describe | Describe Machine Pool
|
@@ -221,6 +224,7 @@ Class | Method | HTTP request | Description
|
|
221
224
|
*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
225
|
*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
|
223
226
|
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
227
|
+
*DefaultApi* | [**get_operator_events_api_v2_dataset_runs_operator_events_get**](docs/DefaultApi.md#get_operator_events_api_v2_dataset_runs_operator_events_get) | **GET** /api/v2/dataset_runs/operator_events | Get Operator Events
|
224
228
|
*DefaultApi* | [**get_operator_metrics_api_v2_dataset_runs_operator_get**](docs/DefaultApi.md#get_operator_metrics_api_v2_dataset_runs_operator_get) | **GET** /api/v2/dataset_runs/operator | Get Operator Metrics
|
225
229
|
*DefaultApi* | [**get_or_create_build_from_image_uri_api_v2_builds_get_or_create_build_from_image_uri_post**](docs/DefaultApi.md#get_or_create_build_from_image_uri_api_v2_builds_get_or_create_build_from_image_uri_post) | **POST** /api/v2/builds/get_or_create_build_from_image_uri | Get Or Create Build From Image Uri
|
226
230
|
*DefaultApi* | [**get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get**](docs/DefaultApi.md#get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get) | **GET** /api/v2/organization_billing/alerts | Get Organization Metronome Usage Alerts
|
@@ -246,16 +250,20 @@ Class | Method | HTTP request | Description
|
|
246
250
|
*DefaultApi* | [**get_session_head_ip_api_v2_sessions_session_id_head_ip_get**](docs/DefaultApi.md#get_session_head_ip_api_v2_sessions_session_id_head_ip_get) | **GET** /api/v2/sessions/{session_id}/head_ip | Get Session Head Ip
|
247
251
|
*DefaultApi* | [**get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get**](docs/DefaultApi.md#get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get) | **GET** /api/v2/sessions/{session_id}/ssh_key | Get Session Ssh Key
|
248
252
|
*DefaultApi* | [**get_startup_logs_api_v2_sessions_session_id_startup_logs_get**](docs/DefaultApi.md#get_startup_logs_api_v2_sessions_session_id_startup_logs_get) | **GET** /api/v2/sessions/{session_id}/startup_logs | Get Startup Logs
|
253
|
+
*DefaultApi* | [**get_tags_for_resource_api_v2_tags_resource_get**](docs/DefaultApi.md#get_tags_for_resource_api_v2_tags_resource_get) | **GET** /api/v2/tags/resource | Get Tags For Resource
|
249
254
|
*DefaultApi* | [**get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get**](docs/DefaultApi.md#get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_exception | Get Task Exception Aggregates
|
250
255
|
*DefaultApi* | [**get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get**](docs/DefaultApi.md#get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_function | Get Task Function Aggregates
|
251
256
|
*DefaultApi* | [**get_task_job_aggregates_api_v2_tasks_dashboard_aggregate_by_job_get**](docs/DefaultApi.md#get_task_job_aggregates_api_v2_tasks_dashboard_aggregate_by_job_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_job | Get Task Job Aggregates
|
252
257
|
*DefaultApi* | [**get_task_summary_api_v2_tasks_dashboard_summary_get**](docs/DefaultApi.md#get_task_summary_api_v2_tasks_dashboard_summary_get) | **GET** /api/v2/tasks_dashboard/summary | Get Task Summary
|
253
258
|
*DefaultApi* | [**get_task_table_api_v2_tasks_dashboard_table_get**](docs/DefaultApi.md#get_task_table_api_v2_tasks_dashboard_table_get) | **GET** /api/v2/tasks_dashboard/table | Get Task Table
|
259
|
+
*DefaultApi* | [**get_template_api_v2_workspace_templates_template_id_get**](docs/DefaultApi.md#get_template_api_v2_workspace_templates_template_id_get) | **GET** /api/v2/workspace_templates/{template_id} | Get Template
|
254
260
|
*DefaultApi* | [**get_template_readme_api_v2_experimental_workspaces_template_readme_template_id_get**](docs/DefaultApi.md#get_template_readme_api_v2_experimental_workspaces_template_readme_template_id_get) | **GET** /api/v2/experimental_workspaces/template/readme/{template_id} | Get Template Readme
|
255
261
|
*DefaultApi* | [**get_total_usage_api_v2_aggregated_instance_usage_get**](docs/DefaultApi.md#get_total_usage_api_v2_aggregated_instance_usage_get) | **GET** /api/v2/aggregated_instance_usage/ | Get Total Usage
|
256
262
|
*DefaultApi* | [**get_train_logs_download_api_v2_train_runs_logs_get**](docs/DefaultApi.md#get_train_logs_download_api_v2_train_runs_logs_get) | **GET** /api/v2/train_runs/logs | Get Train Logs Download
|
257
263
|
*DefaultApi* | [**get_train_runs_api_v2_train_runs_get**](docs/DefaultApi.md#get_train_runs_api_v2_train_runs_get) | **GET** /api/v2/train_runs/ | Get Train Runs
|
258
264
|
*DefaultApi* | [**get_user_info_api_v2_userinfo_get**](docs/DefaultApi.md#get_user_info_api_v2_userinfo_get) | **GET** /api/v2/userinfo/ | Get User Info
|
265
|
+
*DefaultApi* | [**get_version_api_v2_workspace_templates_template_id_versions_version_id_get**](docs/DefaultApi.md#get_version_api_v2_workspace_templates_template_id_versions_version_id_get) | **GET** /api/v2/workspace_templates/{template_id}/versions/{version_id} | Get Version
|
266
|
+
*DefaultApi* | [**get_workos_authorize_url_api_v2_workos_authorize_get**](docs/DefaultApi.md#get_workos_authorize_url_api_v2_workos_authorize_get) | **GET** /api/v2/workos/authorize | Get Workos Authorize Url
|
259
267
|
*DefaultApi* | [**get_workspace_api_v2_experimental_workspaces_workspace_id_get**](docs/DefaultApi.md#get_workspace_api_v2_experimental_workspaces_workspace_id_get) | **GET** /api/v2/experimental_workspaces/{workspace_id} | Get Workspace
|
260
268
|
*DefaultApi* | [**get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get**](docs/DefaultApi.md#get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/dataplane_artifacts | Get Workspace Dataplane Artifacts
|
261
269
|
*DefaultApi* | [**get_workspace_events_api_v2_experimental_workspaces_workspace_id_events_get**](docs/DefaultApi.md#get_workspace_events_api_v2_experimental_workspaces_workspace_id_events_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/events | Get Workspace Events
|
@@ -286,6 +294,7 @@ Class | Method | HTTP request | Description
|
|
286
294
|
*DefaultApi* | [**list_job_reports_api_v2_job_reports_get**](docs/DefaultApi.md#list_job_reports_api_v2_job_reports_get) | **GET** /api/v2/job_reports/ | List Job Reports
|
287
295
|
*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
|
288
296
|
*DefaultApi* | [**list_jobs_api_v2_decorated_unified_jobs_get**](docs/DefaultApi.md#list_jobs_api_v2_decorated_unified_jobs_get) | **GET** /api/v2/decorated_unified_jobs/ | List Jobs
|
297
|
+
*DefaultApi* | [**list_keys_api_v2_tags_keys_get**](docs/DefaultApi.md#list_keys_api_v2_tags_keys_get) | **GET** /api/v2/tags/keys | List Keys
|
289
298
|
*DefaultApi* | [**list_long_running_workloads_api_v2_decorated_sessions_long_running_workloads_get**](docs/DefaultApi.md#list_long_running_workloads_api_v2_decorated_sessions_long_running_workloads_get) | **GET** /api/v2/decorated_sessions/long-running-workloads | List Long Running Workloads
|
290
299
|
*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
|
291
300
|
*DefaultApi* | [**list_machines_api_v2_machines_get**](docs/DefaultApi.md#list_machines_api_v2_machines_get) | **GET** /api/v2/machines/ | List Machines
|
@@ -298,6 +307,9 @@ Class | Method | HTTP request | Description
|
|
298
307
|
*DefaultApi* | [**list_recommended_workspace_templates_api_v2_experimental_workspaces_templates_recommended_get**](docs/DefaultApi.md#list_recommended_workspace_templates_api_v2_experimental_workspaces_templates_recommended_get) | **GET** /api/v2/experimental_workspaces/templates/recommended | List Recommended Workspace Templates
|
299
308
|
*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
|
300
309
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
310
|
+
*DefaultApi* | [**list_template_versions_api_v2_workspace_templates_template_id_versions_get**](docs/DefaultApi.md#list_template_versions_api_v2_workspace_templates_template_id_versions_get) | **GET** /api/v2/workspace_templates/{template_id}/versions | List Template Versions
|
311
|
+
*DefaultApi* | [**list_templates_api_v2_workspace_templates_get**](docs/DefaultApi.md#list_templates_api_v2_workspace_templates_get) | **GET** /api/v2/workspace_templates/ | List Templates
|
312
|
+
*DefaultApi* | [**list_values_api_v2_tags_values_get**](docs/DefaultApi.md#list_values_api_v2_tags_values_get) | **GET** /api/v2/tags/values | List Values
|
301
313
|
*DefaultApi* | [**list_workspace_templates_api_v2_experimental_workspaces_templates_get**](docs/DefaultApi.md#list_workspace_templates_api_v2_experimental_workspaces_templates_get) | **GET** /api/v2/experimental_workspaces/templates | List Workspace Templates
|
302
314
|
*DefaultApi* | [**list_workspaces_api_v2_experimental_workspaces_get**](docs/DefaultApi.md#list_workspaces_api_v2_experimental_workspaces_get) | **GET** /api/v2/experimental_workspaces/ | List Workspaces
|
303
315
|
*DefaultApi* | [**login_user_api_v2_users_login_post**](docs/DefaultApi.md#login_user_api_v2_users_login_post) | **POST** /api/v2/users/login | Login User
|
@@ -306,6 +318,7 @@ Class | Method | HTTP request | Description
|
|
306
318
|
*DefaultApi* | [**pause_cron_job_api_v2_experimental_cron_jobs_cron_job_id_pause_post**](docs/DefaultApi.md#pause_cron_job_api_v2_experimental_cron_jobs_cron_job_id_pause_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/pause | Pause Cron Job
|
307
319
|
*DefaultApi* | [**produce_analytics_event_api_v2_analytics_post**](docs/DefaultApi.md#produce_analytics_event_api_v2_analytics_post) | **POST** /api/v2/analytics/ | Produce Analytics Event
|
308
320
|
*DefaultApi* | [**publish_api_v2_streams_publish_post**](docs/DefaultApi.md#publish_api_v2_streams_publish_post) | **POST** /api/v2/streams/publish | Publish
|
321
|
+
*DefaultApi* | [**publish_version_api_v2_workspace_templates_template_id_versions_version_id_publish_post**](docs/DefaultApi.md#publish_version_api_v2_workspace_templates_template_id_versions_version_id_publish_post) | **POST** /api/v2/workspace_templates/{template_id}/versions/{version_id}/publish | Publish Version
|
309
322
|
*DefaultApi* | [**push_cloud_overview_dashboard_api_v2_clouds_cloud_id_push_cloud_overview_dashboard_post**](docs/DefaultApi.md#push_cloud_overview_dashboard_api_v2_clouds_cloud_id_push_cloud_overview_dashboard_post) | **POST** /api/v2/clouds/{cloud_id}/push-cloud-overview-dashboard | Push Cloud Overview Dashboard
|
310
323
|
*DefaultApi* | [**put_job_wandb_run_details_api_v2_integrations_job_wandb_run_details_job_id_put**](docs/DefaultApi.md#put_job_wandb_run_details_api_v2_integrations_job_wandb_run_details_job_id_put) | **PUT** /api/v2/integrations/job_wandb_run_details/{job_id} | Put Job Wandb Run Details
|
311
324
|
*DefaultApi* | [**put_production_job_wandb_run_details_api_v2_integrations_production_job_wandb_run_details_production_job_id_put**](docs/DefaultApi.md#put_production_job_wandb_run_details_api_v2_integrations_production_job_wandb_run_details_production_job_id_put) | **PUT** /api/v2/integrations/production_job_wandb_run_details/{production_job_id} | Put Production Job Wandb Run Details
|
@@ -340,6 +353,7 @@ Class | Method | HTTP request | Description
|
|
340
353
|
*DefaultApi* | [**search_resource_notifications_api_v2_resource_notifications_search_post**](docs/DefaultApi.md#search_resource_notifications_api_v2_resource_notifications_search_post) | **POST** /api/v2/resource_notifications/search | Search Resource Notifications
|
341
354
|
*DefaultApi* | [**search_resource_quotas_api_v2_resource_quotas_search_post**](docs/DefaultApi.md#search_resource_quotas_api_v2_resource_quotas_search_post) | **POST** /api/v2/resource_quotas/search | Search Resource Quotas
|
342
355
|
*DefaultApi* | [**search_support_requests_api_v2_support_requests_search_post**](docs/DefaultApi.md#search_support_requests_api_v2_support_requests_search_post) | **POST** /api/v2/support_requests/search | Search Support Requests
|
356
|
+
*DefaultApi* | [**search_tags_api_v2_tags_get**](docs/DefaultApi.md#search_tags_api_v2_tags_get) | **GET** /api/v2/tags/ | Search Tags
|
343
357
|
*DefaultApi* | [**set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch**](docs/DefaultApi.md#set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id}/status | Set Resource Quota Status
|
344
358
|
*DefaultApi* | [**show_one_time_password_source_api_v2_users_show_otp_source_post**](docs/DefaultApi.md#show_one_time_password_source_api_v2_users_show_otp_source_post) | **POST** /api/v2/users/show_otp_source | Show One Time Password Source
|
345
359
|
*DefaultApi* | [**sso_login_info_api_v2_users_sso_login_info_get**](docs/DefaultApi.md#sso_login_info_api_v2_users_sso_login_info_get) | **GET** /api/v2/users/sso_login_info | Sso Login Info
|
@@ -377,7 +391,9 @@ Class | Method | HTTP request | Description
|
|
377
391
|
*DefaultApi* | [**update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put**](docs/DefaultApi.md#update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_system_cluster_config | Update System Cluster Config
|
378
392
|
*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
|
379
393
|
*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
|
394
|
+
*DefaultApi* | [**upsert_resource_tags_api_v2_tags_resource_put**](docs/DefaultApi.md#upsert_resource_tags_api_v2_tags_resource_put) | **PUT** /api/v2/tags/resource | Upsert Resource Tags
|
380
395
|
*DefaultApi* | [**upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put**](docs/DefaultApi.md#upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put) | **PUT** /api/v2/support_requests/support_request | Upsert Support Request For User Organization
|
396
|
+
*DefaultApi* | [**use_workos_api_v2_workos_use_workos_get**](docs/DefaultApi.md#use_workos_api_v2_workos_use_workos_get) | **GET** /api/v2/workos/use_workos | Use Workos
|
381
397
|
*DefaultApi* | [**user_resend_email_api_v2_users_resend_email_post**](docs/DefaultApi.md#user_resend_email_api_v2_users_resend_email_post) | **POST** /api/v2/users/resend_email | User Resend Email
|
382
398
|
*DefaultApi* | [**user_verify_api_v2_users_verify_token_get**](docs/DefaultApi.md#user_verify_api_v2_users_verify_token_get) | **GET** /api/v2/users/verify/{token} | User Verify
|
383
399
|
*DefaultApi* | [**validate_api_v2_authentication_validate_post**](docs/DefaultApi.md#validate_api_v2_authentication_validate_post) | **POST** /api/v2/authentication/validate | Validate
|
@@ -385,6 +401,8 @@ Class | Method | HTTP request | Description
|
|
385
401
|
*DefaultApi* | [**validate_one_time_password_api_v2_users_validate_otp_token_post**](docs/DefaultApi.md#validate_one_time_password_api_v2_users_validate_otp_token_post) | **POST** /api/v2/users/validate_otp_token | Validate One Time Password
|
386
402
|
*DefaultApi* | [**verify_access_api_v2_cloudsverify_access_cloud_id_get**](docs/DefaultApi.md#verify_access_api_v2_cloudsverify_access_cloud_id_get) | **GET** /api/v2/cloudsverify_access/{cloud_id} | Verify Access
|
387
403
|
*DefaultApi* | [**verify_reset_password_token_api_v2_users_reset_password_token_get**](docs/DefaultApi.md#verify_reset_password_token_api_v2_users_reset_password_token_get) | **GET** /api/v2/users/reset_password/{token} | Verify Reset Password Token
|
404
|
+
*DefaultApi* | [**workos_callback_api_v2_workos_callback_get**](docs/DefaultApi.md#workos_callback_api_v2_workos_callback_get) | **GET** /api/v2/workos/callback | Workos Callback
|
405
|
+
*DefaultApi* | [**workos_verify_email_code_api_v2_workos_email_verification_verify_post**](docs/DefaultApi.md#workos_verify_email_code_api_v2_workos_email_verification_verify_post) | **POST** /api/v2/workos/email_verification/verify | Workos Verify Email Code
|
388
406
|
|
389
407
|
|
390
408
|
## Documentation For Models
|
@@ -562,6 +580,8 @@ Class | Method | HTTP request | Description
|
|
562
580
|
- [CreateUserProjectCollaborator](docs/CreateUserProjectCollaborator.md)
|
563
581
|
- [CreateUserProjectCollaboratorValue](docs/CreateUserProjectCollaboratorValue.md)
|
564
582
|
- [CreateWorkspaceFromTemplate](docs/CreateWorkspaceFromTemplate.md)
|
583
|
+
- [CreateWorkspaceTemplate](docs/CreateWorkspaceTemplate.md)
|
584
|
+
- [CreateWorkspaceTemplateVersion](docs/CreateWorkspaceTemplateVersion.md)
|
565
585
|
- [CreatebugreportresponseResponse](docs/CreatebugreportresponseResponse.md)
|
566
586
|
- [CreatecomputetemplateconfigResponse](docs/CreatecomputetemplateconfigResponse.md)
|
567
587
|
- [CreatemachinepoolresponseResponse](docs/CreatemachinepoolresponseResponse.md)
|
@@ -636,7 +656,10 @@ Class | Method | HTTP request | Description
|
|
636
656
|
- [DecoratedunifiedjobListResponse](docs/DecoratedunifiedjobListResponse.md)
|
637
657
|
- [DeleteMachinePoolRequest](docs/DeleteMachinePoolRequest.md)
|
638
658
|
- [DeleteMachineRequest](docs/DeleteMachineRequest.md)
|
659
|
+
- [DeleteResourceTagsRequest](docs/DeleteResourceTagsRequest.md)
|
660
|
+
- [DeletedCount](docs/DeletedCount.md)
|
639
661
|
- [DeletedPlatformFineTunedModel](docs/DeletedPlatformFineTunedModel.md)
|
662
|
+
- [DeletedcountResponse](docs/DeletedcountResponse.md)
|
640
663
|
- [DeletedplatformfinetunedmodelResponse](docs/DeletedplatformfinetunedmodelResponse.md)
|
641
664
|
- [DeletemachinepoolresponseResponse](docs/DeletemachinepoolresponseResponse.md)
|
642
665
|
- [DescribeMachinePoolMachinesFilters](docs/DescribeMachinePoolMachinesFilters.md)
|
@@ -654,6 +677,9 @@ Class | Method | HTTP request | Description
|
|
654
677
|
- [DetachmachinepoolfromcloudresponseResponse](docs/DetachmachinepoolfromcloudresponseResponse.md)
|
655
678
|
- [EditableCloudResource](docs/EditableCloudResource.md)
|
656
679
|
- [EditableCloudResourceGCP](docs/EditableCloudResourceGCP.md)
|
680
|
+
- [EmailVerificationRequest](docs/EmailVerificationRequest.md)
|
681
|
+
- [EmailVerificationResponse](docs/EmailVerificationResponse.md)
|
682
|
+
- [EmailverificationresponseResponse](docs/EmailverificationresponseResponse.md)
|
657
683
|
- [Error](docs/Error.md)
|
658
684
|
- [EventLevel](docs/EventLevel.md)
|
659
685
|
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
@@ -675,6 +701,8 @@ Class | Method | HTTP request | Description
|
|
675
701
|
- [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
|
676
702
|
- [GCPMemorystoreInstanceConfig](docs/GCPMemorystoreInstanceConfig.md)
|
677
703
|
- [GetOrCreateBuildFromImageUriRequest](docs/GetOrCreateBuildFromImageUriRequest.md)
|
704
|
+
- [GlobalWorkspaceTemplate](docs/GlobalWorkspaceTemplate.md)
|
705
|
+
- [GlobalworkspacetemplateListResponse](docs/GlobalworkspacetemplateListResponse.md)
|
678
706
|
- [GrafanaDashboard](docs/GrafanaDashboard.md)
|
679
707
|
- [GrpcProtocolConfig](docs/GrpcProtocolConfig.md)
|
680
708
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
@@ -795,6 +823,9 @@ Class | Method | HTTP request | Description
|
|
795
823
|
- [OperatorBranch](docs/OperatorBranch.md)
|
796
824
|
- [OperatorCheckResult](docs/OperatorCheckResult.md)
|
797
825
|
- [OperatorCheckStatus](docs/OperatorCheckStatus.md)
|
826
|
+
- [OperatorEvent](docs/OperatorEvent.md)
|
827
|
+
- [OperatorEventResponse](docs/OperatorEventResponse.md)
|
828
|
+
- [OperatorEventType](docs/OperatorEventType.md)
|
798
829
|
- [OperatorId](docs/OperatorId.md)
|
799
830
|
- [OperatorMetrics](docs/OperatorMetrics.md)
|
800
831
|
- [OperatorStatus](docs/OperatorStatus.md)
|
@@ -842,6 +873,7 @@ Class | Method | HTTP request | Description
|
|
842
873
|
- [ProjectdefaultsessionnameResponse](docs/ProjectdefaultsessionnameResponse.md)
|
843
874
|
- [ProjectsSortField](docs/ProjectsSortField.md)
|
844
875
|
- [Protocols](docs/Protocols.md)
|
876
|
+
- [PublishedFilter](docs/PublishedFilter.md)
|
845
877
|
- [PythonModules](docs/PythonModules.md)
|
846
878
|
- [Quota](docs/Quota.md)
|
847
879
|
- [RayGCSExternalStorageConfig](docs/RayGCSExternalStorageConfig.md)
|
@@ -863,11 +895,15 @@ Class | Method | HTTP request | Description
|
|
863
895
|
- [ResourceNotification](docs/ResourceNotification.md)
|
864
896
|
- [ResourceQuota](docs/ResourceQuota.md)
|
865
897
|
- [ResourceQuotaStatus](docs/ResourceQuotaStatus.md)
|
898
|
+
- [ResourceTagRecord](docs/ResourceTagRecord.md)
|
899
|
+
- [ResourceTagResourceType](docs/ResourceTagResourceType.md)
|
900
|
+
- [ResourceTagsList](docs/ResourceTagsList.md)
|
866
901
|
- [ResourcenotificationListResponse](docs/ResourcenotificationListResponse.md)
|
867
902
|
- [ResourcenotificationResponse](docs/ResourcenotificationResponse.md)
|
868
903
|
- [ResourcequotaListResponse](docs/ResourcequotaListResponse.md)
|
869
904
|
- [ResourcequotaResponse](docs/ResourcequotaResponse.md)
|
870
905
|
- [Resources](docs/Resources.md)
|
906
|
+
- [ResourcetagslistResponse](docs/ResourcetagslistResponse.md)
|
871
907
|
- [RollbackServiceModel](docs/RollbackServiceModel.md)
|
872
908
|
- [RolloutStrategy](docs/RolloutStrategy.md)
|
873
909
|
- [RunAttemptStatus](docs/RunAttemptStatus.md)
|
@@ -926,6 +962,14 @@ Class | Method | HTTP request | Description
|
|
926
962
|
- [SummarizemachinepoolresponseResponse](docs/SummarizemachinepoolresponseResponse.md)
|
927
963
|
- [SupportRequestsQuery](docs/SupportRequestsQuery.md)
|
928
964
|
- [SystemWorkloadName](docs/SystemWorkloadName.md)
|
965
|
+
- [TagKey](docs/TagKey.md)
|
966
|
+
- [TagKeyValue](docs/TagKeyValue.md)
|
967
|
+
- [TagSearchIn](docs/TagSearchIn.md)
|
968
|
+
- [TagValue](docs/TagValue.md)
|
969
|
+
- [TagkeyListResponse](docs/TagkeyListResponse.md)
|
970
|
+
- [TagkeyvalueListResponse](docs/TagkeyvalueListResponse.md)
|
971
|
+
- [TagvalueListResponse](docs/TagvalueListResponse.md)
|
972
|
+
- [TaskAttempts](docs/TaskAttempts.md)
|
929
973
|
- [TaskExceptionGroupAggregate](docs/TaskExceptionGroupAggregate.md)
|
930
974
|
- [TaskExceptionGroupAggregateResponse](docs/TaskExceptionGroupAggregateResponse.md)
|
931
975
|
- [TaskFunctionNameGroupAggregate](docs/TaskFunctionNameGroupAggregate.md)
|
@@ -967,6 +1011,7 @@ Class | Method | HTTP request | Description
|
|
967
1011
|
- [UpdatemachinepoolresponseResponse](docs/UpdatemachinepoolresponseResponse.md)
|
968
1012
|
- [UploadSessionCommandLogsLocations](docs/UploadSessionCommandLogsLocations.md)
|
969
1013
|
- [UploadsessioncommandlogslocationsResponse](docs/UploadsessioncommandlogslocationsResponse.md)
|
1014
|
+
- [UpsertResourceTagsRequest](docs/UpsertResourceTagsRequest.md)
|
970
1015
|
- [UsageByCloud](docs/UsageByCloud.md)
|
971
1016
|
- [UsageByCluster](docs/UsageByCluster.md)
|
972
1017
|
- [UsageByInstanceType](docs/UsageByInstanceType.md)
|
@@ -977,10 +1022,12 @@ Class | Method | HTTP request | Description
|
|
977
1022
|
- [UsagebyinstancetypeListResponse](docs/UsagebyinstancetypeListResponse.md)
|
978
1023
|
- [UsagebyprojectListResponse](docs/UsagebyprojectListResponse.md)
|
979
1024
|
- [UsagebyuserListResponse](docs/UsagebyuserListResponse.md)
|
1025
|
+
- [UseWorkOSResponse](docs/UseWorkOSResponse.md)
|
980
1026
|
- [UserInfo](docs/UserInfo.md)
|
981
1027
|
- [UserResendEmailOptions](docs/UserResendEmailOptions.md)
|
982
1028
|
- [UserServiceAccessTypes](docs/UserServiceAccessTypes.md)
|
983
1029
|
- [UserinfoResponse](docs/UserinfoResponse.md)
|
1030
|
+
- [UseworkosresponseResponse](docs/UseworkosresponseResponse.md)
|
984
1031
|
- [UtmFields](docs/UtmFields.md)
|
985
1032
|
- [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
|
986
1033
|
- [ValidationError](docs/ValidationError.md)
|
@@ -988,12 +1035,14 @@ Class | Method | HTTP request | Description
|
|
988
1035
|
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
989
1036
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
990
1037
|
- [WandBRunDetails](docs/WandBRunDetails.md)
|
1038
|
+
- [WorkOSAuthorizeUrlResponse](docs/WorkOSAuthorizeUrlResponse.md)
|
991
1039
|
- [WorkerNodeType](docs/WorkerNodeType.md)
|
992
1040
|
- [WorkloadInfo](docs/WorkloadInfo.md)
|
993
1041
|
- [WorkloadMachineInfo](docs/WorkloadMachineInfo.md)
|
994
1042
|
- [WorkloadStateInfo](docs/WorkloadStateInfo.md)
|
995
1043
|
- [WorkloadType](docs/WorkloadType.md)
|
996
1044
|
- [WorkloadstateinfoListResponse](docs/WorkloadstateinfoListResponse.md)
|
1045
|
+
- [WorkosauthorizeurlresponseResponse](docs/WorkosauthorizeurlresponseResponse.md)
|
997
1046
|
- [WorkspaceDataplaneArtifact](docs/WorkspaceDataplaneArtifact.md)
|
998
1047
|
- [WorkspaceDataplaneArtifacts](docs/WorkspaceDataplaneArtifacts.md)
|
999
1048
|
- [WorkspaceDataplaneProxiedArtifacts](docs/WorkspaceDataplaneProxiedArtifacts.md)
|
@@ -1002,16 +1051,27 @@ Class | Method | HTTP request | Description
|
|
1002
1051
|
- [WorkspaceEventSourceFilter](docs/WorkspaceEventSourceFilter.md)
|
1003
1052
|
- [WorkspaceReadme](docs/WorkspaceReadme.md)
|
1004
1053
|
- [WorkspaceSnapshotStates](docs/WorkspaceSnapshotStates.md)
|
1054
|
+
- [WorkspaceSystemArtifacts](docs/WorkspaceSystemArtifacts.md)
|
1005
1055
|
- [WorkspaceTemplate](docs/WorkspaceTemplate.md)
|
1056
|
+
- [WorkspaceTemplateCategory](docs/WorkspaceTemplateCategory.md)
|
1006
1057
|
- [WorkspaceTemplateClusterEnvironmentMetadata](docs/WorkspaceTemplateClusterEnvironmentMetadata.md)
|
1058
|
+
- [WorkspaceTemplateComplexity](docs/WorkspaceTemplateComplexity.md)
|
1059
|
+
- [WorkspaceTemplateIconBackgroundColor](docs/WorkspaceTemplateIconBackgroundColor.md)
|
1060
|
+
- [WorkspaceTemplateIconType](docs/WorkspaceTemplateIconType.md)
|
1007
1061
|
- [WorkspaceTemplateReadme](docs/WorkspaceTemplateReadme.md)
|
1062
|
+
- [WorkspaceTemplateVersion](docs/WorkspaceTemplateVersion.md)
|
1063
|
+
- [WorkspaceTemplateVersionDataObject](docs/WorkspaceTemplateVersionDataObject.md)
|
1064
|
+
- [WorkspaceTemplatesSortField](docs/WorkspaceTemplatesSortField.md)
|
1008
1065
|
- [WorkspacedataplaneartifactsResponse](docs/WorkspacedataplaneartifactsResponse.md)
|
1009
1066
|
- [WorkspacedataplaneproxiedartifactsResponse](docs/WorkspacedataplaneproxiedartifactsResponse.md)
|
1010
1067
|
- [WorkspaceeventListResponse](docs/WorkspaceeventListResponse.md)
|
1011
1068
|
- [WorkspacereadmeResponse](docs/WorkspacereadmeResponse.md)
|
1012
1069
|
- [WorkspacetemplateListResponse](docs/WorkspacetemplateListResponse.md)
|
1070
|
+
- [WorkspacetemplateResponse](docs/WorkspacetemplateResponse.md)
|
1013
1071
|
- [WorkspacetemplateclusterenvironmentmetadataResponse](docs/WorkspacetemplateclusterenvironmentmetadataResponse.md)
|
1014
1072
|
- [WorkspacetemplatereadmeResponse](docs/WorkspacetemplatereadmeResponse.md)
|
1073
|
+
- [WorkspacetemplateversionListResponse](docs/WorkspacetemplateversionListResponse.md)
|
1074
|
+
- [WorkspacetemplateversionResponse](docs/WorkspacetemplateversionResponse.md)
|
1015
1075
|
- [WriteCloud](docs/WriteCloud.md)
|
1016
1076
|
- [WriteClusterConfig](docs/WriteClusterConfig.md)
|
1017
1077
|
- [WriteProject](docs/WriteProject.md)
|
@@ -201,6 +201,8 @@ from openapi_client.models.create_user import CreateUser
|
|
201
201
|
from openapi_client.models.create_user_project_collaborator import CreateUserProjectCollaborator
|
202
202
|
from openapi_client.models.create_user_project_collaborator_value import CreateUserProjectCollaboratorValue
|
203
203
|
from openapi_client.models.create_workspace_from_template import CreateWorkspaceFromTemplate
|
204
|
+
from openapi_client.models.create_workspace_template import CreateWorkspaceTemplate
|
205
|
+
from openapi_client.models.create_workspace_template_version import CreateWorkspaceTemplateVersion
|
204
206
|
from openapi_client.models.createbugreportresponse_response import CreatebugreportresponseResponse
|
205
207
|
from openapi_client.models.createcomputetemplateconfig_response import CreatecomputetemplateconfigResponse
|
206
208
|
from openapi_client.models.createmachinepoolresponse_response import CreatemachinepoolresponseResponse
|
@@ -275,7 +277,10 @@ from openapi_client.models.decoratedsupportrequest_response import Decoratedsupp
|
|
275
277
|
from openapi_client.models.decoratedunifiedjob_list_response import DecoratedunifiedjobListResponse
|
276
278
|
from openapi_client.models.delete_machine_pool_request import DeleteMachinePoolRequest
|
277
279
|
from openapi_client.models.delete_machine_request import DeleteMachineRequest
|
280
|
+
from openapi_client.models.delete_resource_tags_request import DeleteResourceTagsRequest
|
281
|
+
from openapi_client.models.deleted_count import DeletedCount
|
278
282
|
from openapi_client.models.deleted_platform_fine_tuned_model import DeletedPlatformFineTunedModel
|
283
|
+
from openapi_client.models.deletedcount_response import DeletedcountResponse
|
279
284
|
from openapi_client.models.deletedplatformfinetunedmodel_response import DeletedplatformfinetunedmodelResponse
|
280
285
|
from openapi_client.models.deletemachinepoolresponse_response import DeletemachinepoolresponseResponse
|
281
286
|
from openapi_client.models.describe_machine_pool_machines_filters import DescribeMachinePoolMachinesFilters
|
@@ -293,6 +298,9 @@ from openapi_client.models.detach_machine_pool_from_cloud_request import DetachM
|
|
293
298
|
from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
|
294
299
|
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
295
300
|
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
301
|
+
from openapi_client.models.email_verification_request import EmailVerificationRequest
|
302
|
+
from openapi_client.models.email_verification_response import EmailVerificationResponse
|
303
|
+
from openapi_client.models.emailverificationresponse_response import EmailverificationresponseResponse
|
296
304
|
from openapi_client.models.error import Error
|
297
305
|
from openapi_client.models.event_level import EventLevel
|
298
306
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
@@ -314,6 +322,8 @@ from openapi_client.models.gcp_config import GCPConfig
|
|
314
322
|
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|
315
323
|
from openapi_client.models.gcp_memorystore_instance_config import GCPMemorystoreInstanceConfig
|
316
324
|
from openapi_client.models.get_or_create_build_from_image_uri_request import GetOrCreateBuildFromImageUriRequest
|
325
|
+
from openapi_client.models.global_workspace_template import GlobalWorkspaceTemplate
|
326
|
+
from openapi_client.models.globalworkspacetemplate_list_response import GlobalworkspacetemplateListResponse
|
317
327
|
from openapi_client.models.grafana_dashboard import GrafanaDashboard
|
318
328
|
from openapi_client.models.grpc_protocol_config import GrpcProtocolConfig
|
319
329
|
from openapi_client.models.http_validation_error import HTTPValidationError
|
@@ -434,6 +444,9 @@ from openapi_client.models.operation_result import OperationResult
|
|
434
444
|
from openapi_client.models.operator_branch import OperatorBranch
|
435
445
|
from openapi_client.models.operator_check_result import OperatorCheckResult
|
436
446
|
from openapi_client.models.operator_check_status import OperatorCheckStatus
|
447
|
+
from openapi_client.models.operator_event import OperatorEvent
|
448
|
+
from openapi_client.models.operator_event_response import OperatorEventResponse
|
449
|
+
from openapi_client.models.operator_event_type import OperatorEventType
|
437
450
|
from openapi_client.models.operator_id import OperatorId
|
438
451
|
from openapi_client.models.operator_metrics import OperatorMetrics
|
439
452
|
from openapi_client.models.operator_status import OperatorStatus
|
@@ -481,6 +494,7 @@ from openapi_client.models.projectcollaborator_list_response import Projectcolla
|
|
481
494
|
from openapi_client.models.projectdefaultsessionname_response import ProjectdefaultsessionnameResponse
|
482
495
|
from openapi_client.models.projects_sort_field import ProjectsSortField
|
483
496
|
from openapi_client.models.protocols import Protocols
|
497
|
+
from openapi_client.models.published_filter import PublishedFilter
|
484
498
|
from openapi_client.models.python_modules import PythonModules
|
485
499
|
from openapi_client.models.quota import Quota
|
486
500
|
from openapi_client.models.ray_gcs_external_storage_config import RayGCSExternalStorageConfig
|
@@ -502,11 +516,15 @@ from openapi_client.models.resource_alert_event_type import ResourceAlertEventTy
|
|
502
516
|
from openapi_client.models.resource_notification import ResourceNotification
|
503
517
|
from openapi_client.models.resource_quota import ResourceQuota
|
504
518
|
from openapi_client.models.resource_quota_status import ResourceQuotaStatus
|
519
|
+
from openapi_client.models.resource_tag_record import ResourceTagRecord
|
520
|
+
from openapi_client.models.resource_tag_resource_type import ResourceTagResourceType
|
521
|
+
from openapi_client.models.resource_tags_list import ResourceTagsList
|
505
522
|
from openapi_client.models.resourcenotification_list_response import ResourcenotificationListResponse
|
506
523
|
from openapi_client.models.resourcenotification_response import ResourcenotificationResponse
|
507
524
|
from openapi_client.models.resourcequota_list_response import ResourcequotaListResponse
|
508
525
|
from openapi_client.models.resourcequota_response import ResourcequotaResponse
|
509
526
|
from openapi_client.models.resources import Resources
|
527
|
+
from openapi_client.models.resourcetagslist_response import ResourcetagslistResponse
|
510
528
|
from openapi_client.models.rollback_service_model import RollbackServiceModel
|
511
529
|
from openapi_client.models.rollout_strategy import RolloutStrategy
|
512
530
|
from openapi_client.models.run_attempt_status import RunAttemptStatus
|
@@ -565,6 +583,14 @@ from openapi_client.models.summarize_machine_pool_response import SummarizeMachi
|
|
565
583
|
from openapi_client.models.summarizemachinepoolresponse_response import SummarizemachinepoolresponseResponse
|
566
584
|
from openapi_client.models.support_requests_query import SupportRequestsQuery
|
567
585
|
from openapi_client.models.system_workload_name import SystemWorkloadName
|
586
|
+
from openapi_client.models.tag_key import TagKey
|
587
|
+
from openapi_client.models.tag_key_value import TagKeyValue
|
588
|
+
from openapi_client.models.tag_search_in import TagSearchIn
|
589
|
+
from openapi_client.models.tag_value import TagValue
|
590
|
+
from openapi_client.models.tagkey_list_response import TagkeyListResponse
|
591
|
+
from openapi_client.models.tagkeyvalue_list_response import TagkeyvalueListResponse
|
592
|
+
from openapi_client.models.tagvalue_list_response import TagvalueListResponse
|
593
|
+
from openapi_client.models.task_attempts import TaskAttempts
|
568
594
|
from openapi_client.models.task_exception_group_aggregate import TaskExceptionGroupAggregate
|
569
595
|
from openapi_client.models.task_exception_group_aggregate_response import TaskExceptionGroupAggregateResponse
|
570
596
|
from openapi_client.models.task_function_name_group_aggregate import TaskFunctionNameGroupAggregate
|
@@ -606,6 +632,7 @@ from openapi_client.models.update_resource_quota import UpdateResourceQuota
|
|
606
632
|
from openapi_client.models.updatemachinepoolresponse_response import UpdatemachinepoolresponseResponse
|
607
633
|
from openapi_client.models.upload_session_command_logs_locations import UploadSessionCommandLogsLocations
|
608
634
|
from openapi_client.models.uploadsessioncommandlogslocations_response import UploadsessioncommandlogslocationsResponse
|
635
|
+
from openapi_client.models.upsert_resource_tags_request import UpsertResourceTagsRequest
|
609
636
|
from openapi_client.models.usage_by_cloud import UsageByCloud
|
610
637
|
from openapi_client.models.usage_by_cluster import UsageByCluster
|
611
638
|
from openapi_client.models.usage_by_instance_type import UsageByInstanceType
|
@@ -616,10 +643,12 @@ from openapi_client.models.usagebycluster_list_response import UsagebyclusterLis
|
|
616
643
|
from openapi_client.models.usagebyinstancetype_list_response import UsagebyinstancetypeListResponse
|
617
644
|
from openapi_client.models.usagebyproject_list_response import UsagebyprojectListResponse
|
618
645
|
from openapi_client.models.usagebyuser_list_response import UsagebyuserListResponse
|
646
|
+
from openapi_client.models.use_work_os_response import UseWorkOSResponse
|
619
647
|
from openapi_client.models.user_info import UserInfo
|
620
648
|
from openapi_client.models.user_resend_email_options import UserResendEmailOptions
|
621
649
|
from openapi_client.models.user_service_access_types import UserServiceAccessTypes
|
622
650
|
from openapi_client.models.userinfo_response import UserinfoResponse
|
651
|
+
from openapi_client.models.useworkosresponse_response import UseworkosresponseResponse
|
623
652
|
from openapi_client.models.utm_fields import UtmFields
|
624
653
|
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
625
654
|
from openapi_client.models.validation_error import ValidationError
|
@@ -627,12 +656,14 @@ from openapi_client.models.waitlist_status_response import WaitlistStatusRespons
|
|
627
656
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
628
657
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|
629
658
|
from openapi_client.models.wand_b_run_details import WandBRunDetails
|
659
|
+
from openapi_client.models.work_os_authorize_url_response import WorkOSAuthorizeUrlResponse
|
630
660
|
from openapi_client.models.worker_node_type import WorkerNodeType
|
631
661
|
from openapi_client.models.workload_info import WorkloadInfo
|
632
662
|
from openapi_client.models.workload_machine_info import WorkloadMachineInfo
|
633
663
|
from openapi_client.models.workload_state_info import WorkloadStateInfo
|
634
664
|
from openapi_client.models.workload_type import WorkloadType
|
635
665
|
from openapi_client.models.workloadstateinfo_list_response import WorkloadstateinfoListResponse
|
666
|
+
from openapi_client.models.workosauthorizeurlresponse_response import WorkosauthorizeurlresponseResponse
|
636
667
|
from openapi_client.models.workspace_dataplane_artifact import WorkspaceDataplaneArtifact
|
637
668
|
from openapi_client.models.workspace_dataplane_artifacts import WorkspaceDataplaneArtifacts
|
638
669
|
from openapi_client.models.workspace_dataplane_proxied_artifacts import WorkspaceDataplaneProxiedArtifacts
|
@@ -641,16 +672,27 @@ from openapi_client.models.workspace_event_source import WorkspaceEventSource
|
|
641
672
|
from openapi_client.models.workspace_event_source_filter import WorkspaceEventSourceFilter
|
642
673
|
from openapi_client.models.workspace_readme import WorkspaceReadme
|
643
674
|
from openapi_client.models.workspace_snapshot_states import WorkspaceSnapshotStates
|
675
|
+
from openapi_client.models.workspace_system_artifacts import WorkspaceSystemArtifacts
|
644
676
|
from openapi_client.models.workspace_template import WorkspaceTemplate
|
677
|
+
from openapi_client.models.workspace_template_category import WorkspaceTemplateCategory
|
645
678
|
from openapi_client.models.workspace_template_cluster_environment_metadata import WorkspaceTemplateClusterEnvironmentMetadata
|
679
|
+
from openapi_client.models.workspace_template_complexity import WorkspaceTemplateComplexity
|
680
|
+
from openapi_client.models.workspace_template_icon_background_color import WorkspaceTemplateIconBackgroundColor
|
681
|
+
from openapi_client.models.workspace_template_icon_type import WorkspaceTemplateIconType
|
646
682
|
from openapi_client.models.workspace_template_readme import WorkspaceTemplateReadme
|
683
|
+
from openapi_client.models.workspace_template_version import WorkspaceTemplateVersion
|
684
|
+
from openapi_client.models.workspace_template_version_data_object import WorkspaceTemplateVersionDataObject
|
685
|
+
from openapi_client.models.workspace_templates_sort_field import WorkspaceTemplatesSortField
|
647
686
|
from openapi_client.models.workspacedataplaneartifacts_response import WorkspacedataplaneartifactsResponse
|
648
687
|
from openapi_client.models.workspacedataplaneproxiedartifacts_response import WorkspacedataplaneproxiedartifactsResponse
|
649
688
|
from openapi_client.models.workspaceevent_list_response import WorkspaceeventListResponse
|
650
689
|
from openapi_client.models.workspacereadme_response import WorkspacereadmeResponse
|
651
690
|
from openapi_client.models.workspacetemplate_list_response import WorkspacetemplateListResponse
|
691
|
+
from openapi_client.models.workspacetemplate_response import WorkspacetemplateResponse
|
652
692
|
from openapi_client.models.workspacetemplateclusterenvironmentmetadata_response import WorkspacetemplateclusterenvironmentmetadataResponse
|
653
693
|
from openapi_client.models.workspacetemplatereadme_response import WorkspacetemplatereadmeResponse
|
694
|
+
from openapi_client.models.workspacetemplateversion_list_response import WorkspacetemplateversionListResponse
|
695
|
+
from openapi_client.models.workspacetemplateversion_response import WorkspacetemplateversionResponse
|
654
696
|
from openapi_client.models.write_cloud import WriteCloud
|
655
697
|
from openapi_client.models.write_cluster_config import WriteClusterConfig
|
656
698
|
from openapi_client.models.write_project import WriteProject
|