anyscale 0.26.70__tar.gz → 0.26.72__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.70/anyscale.egg-info → anyscale-0.26.72}/PKG-INFO +1 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/anyscale_client/anyscale_client.py +63 -6
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/anyscale_client/common.py +33 -3
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/anyscale_client/fake_anyscale_client.py +27 -2
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/README.md +29 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/__init__.py +19 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/api/default_api.py +1307 -4
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/__init__.py +19 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/apply_multi_version_update_weights_update_model.py +152 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/apply_version_weight_update_model.py +181 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/backend_server_api_product_models_catalog_client_models_table_metadata.py +546 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/backend_server_api_product_models_data_catalogs_table_metadata.py +178 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/baseimagesenum.py +70 -1
- anyscale-0.26.72/anyscale/client/openapi_client/models/catalog_metadata.py +150 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/column_info.py +265 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/compute_node_type.py +29 -1
- anyscale-0.26.72/anyscale/client/openapi_client/models/connection_metadata.py +206 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_workspace_template_version.py +31 -3
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/data_catalog.py +45 -31
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/data_catalog_connection.py +74 -58
- anyscale-0.26.72/anyscale/client/openapi_client/models/data_catalog_object_type.py +100 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/data_catalog_schema.py +324 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/data_catalog_table.py +437 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/data_catalog_volume.py +437 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/datacatalogschema_list_response.py +147 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/datacatalogtable_list_response.py +147 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/datacatalogvolume_list_response.py +147 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +27 -1
- anyscale-0.26.72/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_response.py +121 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +2 -2
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_requests_filters.py +33 -5
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +2 -2
- anyscale-0.26.72/anyscale/client/openapi_client/models/physical_resources.py +178 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/schema_metadata.py +150 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sso_config.py +18 -18
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +70 -1
- anyscale-0.26.72/anyscale/client/openapi_client/models/table_data_preview.py +209 -0
- anyscale-0.26.72/anyscale/client/openapi_client/models/volume_metadata.py +150 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/worker_node_type.py +29 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_version.py +29 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_version_data_object.py +29 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/job_commands.py +120 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/job_queue_commands.py +99 -2
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/service_commands.py +139 -2
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/util.py +104 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/workspace_commands.py +123 -5
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/workspace_commands_v2.py +17 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/compute_config/_private/compute_config_sdk.py +25 -12
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/compute_config/models.py +15 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/job_controller.py +12 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/workspace_controller.py +67 -5
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job/_private/job_sdk.py +3 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job/models.py +16 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job_queue/__init__.py +37 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job_queue/_private/job_queue_sdk.py +28 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job_queue/commands.py +61 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/__init__.py +1 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/api/default_api.py +12 -2
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/__init__.py +1 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +70 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/compute_node_type.py +29 -1
- anyscale-0.26.72/anyscale/sdk/anyscale_client/models/physical_resources.py +178 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +70 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/worker_node_type.py +29 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service/__init__.py +40 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service/_private/service_sdk.py +121 -24
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service/commands.py +75 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service/models.py +46 -2
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale-0.26.72/anyscale/version.py +1 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/workspace/_private/workspace_sdk.py +1 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/workspace/models.py +19 -0
- {anyscale-0.26.70 → anyscale-0.26.72/anyscale.egg-info}/PKG-INFO +1 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale.egg-info/SOURCES.txt +21 -0
- anyscale-0.26.72/build_standalone.py +145 -0
- anyscale-0.26.70/anyscale/version.py +0 -1
- {anyscale-0.26.70 → anyscale-0.26.72}/.covrc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/README.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/api-client.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/architecture.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/authentication.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/cloud-providers.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/development.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/error-handling.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/rules.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/style-guide.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/telemetry.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/testing-guide.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/testing.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/.cursor/workflow-simple.mdc +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/BUILD.bazel +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/LICENSE +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/MANIFEST.in +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/NOTICE +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/README.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/docgen/README.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/docgen/__main__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/docgen/api.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/docgen/generator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/docgen/generator_legacy.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/docgen/models.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/models/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/models/image_uri.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/models/model_base.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/sdk/base_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/sdk/timer.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/utils/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/utils/progress_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/workload/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/workload/workload_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/workload/workload_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/aggregated_instance_usage/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/aggregated_instance_usage/_private/aggregated_instance_usage_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/aggregated_instance_usage/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/aggregated_instance_usage/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/LICENSE +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/README.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/cursor.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/halo.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_halo/halo_notebook.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/common_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/authenticate.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/background/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cli_logger.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/.gitignore +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/actor_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/admin_create_user.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/admin_created_user.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/admincreateduser_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aggregated_usage.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aggregated_usage_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aggregatedusage_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/alert_issue_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/anyscale_service_account.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/anyscaleserviceaccount_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/api_key_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/apikeyinfo_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/application_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/apply_autoscaling_config_update_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/apply_production_service_multi_version_v2_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aws_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/backend_server_api_product_models_dataset_runs_dataset_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/backend_server_api_product_routers_datasets_router_dataset_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/billing_version_code.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cli_usage_payload.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_access_mode.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_scheme.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_scheme.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_data_bucket_request_scope.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_deployment.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_deployment_compute_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_deployment_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_overview_dashboard.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_waitlist_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clouddatabucketpresignedurlresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clouddeployment_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clouddeploymentconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudoverviewdashboard_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_dashboard_node.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_event_source.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_operation.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clusterdashboardnode_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clusterdashboardnode_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clusterevent_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/collaborator_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/commit_ledger_item_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/commit_ledger_record_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/complexity_level.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/compute_stack.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/connection_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_billing_version.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_dataset.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_instance_usage_budget.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_job_queue_requests.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_metronome_webhook_notification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_notification_channel_record.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_organization_configuration.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_resource_notification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_resource_quota.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/create_workspace_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credit_grant_record_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credit_ledger_item_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credit_ledger_record_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credit_record_commit_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credit_record_credit_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credit_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/credits_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dashboard_panel.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/data_catalog_connection_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/data_catalog_provider.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/databricks_connection_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/databricks_connection_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/databricks_connection_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/databricks_register_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/databricksconnectioninfo_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/databricksconnectionresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/datacatalog_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/datacatalogconnection_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_dag.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_dag_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_jobs.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_metrics.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/dataset_upload.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/datasetupload_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_job_queue.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedcloudresource_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedcloudresource_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedjobqueue_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedjobqueue_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/delete_resource_tags_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/deleted_count.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/deletedcount_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_machine_pool_workloads_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describe_system_workload_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/describesystemworkloadresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/domain_verification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/email_verification_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/email_verification_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/emailverificationresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/entity_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/event_level.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/experimental_workspaces_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/file_storage.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/fine_tune_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/fine_tuned_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/finetunedmodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/finetunedmodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/gcp_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/get_or_create_build_from_image_uri_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/global_workspace_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/globalworkspacetemplate_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/gpu_usage.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/grafana_dashboard.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ha_job_error_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ha_job_event_origin.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/i_know_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/i_know_time_series_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/instance_usage_budget.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/instanceusagebudget_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/instanceusagebudget_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_event_fields.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue_sort_directive.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queue_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_queues_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_report.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/job_with_report.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/jobqueue_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/jobwithreport_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/kubernetes_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_artifact.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_artifact_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_artifact_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_direction.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_graph.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_graph_node.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_node_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_workload.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_workload_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineage_workload_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineageartifact_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineageartifact_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineagegraph_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineageworkload_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/lineageworkload_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_databricks_connections.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_ray_sessions_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_resource_notifications_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_resource_quotas_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/listraysessionsresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/long_running_workload.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/longrunningworkload_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_launch_failure.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_pool_search_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_pool_search_result.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_state_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machine_type_partition_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machinepoolsearchresult_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/machinestateinfo_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metric.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metrics_query_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metricsqueryresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metronome_customer_info_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/networking_mode.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/nfs_mount_target.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_metrics.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_metrics_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_registration_k8_s.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/nodemetricsresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/notification_channel_email_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/notification_channel_slack_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/notification_channel_webhook_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/oauth_auth_url_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/object_storage.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operation_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operation_progress.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operation_result.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_branch.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_check_result.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_check_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_event_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_event_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_id.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_metrics.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/operator_status_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_configuration.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_configuration_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_marketing_questions.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationconfiguration_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationconfigurationresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/partition_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/plan_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/presigned_url_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/production_job_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/production_job_event_scope_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/productionjobevent_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/published_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/quota.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ray_session.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/read_billing_version.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/readbillingversion_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/request_state_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/requeststateinfo_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_alert_event_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_notification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_quota.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_quota_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_tag_record.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_tag_resource_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resource_tags_list.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resourcenotification_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resourcenotification_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resourcequota_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resourcequota_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/resourcetagslist_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/revoke_api_keys_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/revoke_api_keys_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/revokeapikeysresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/run_attempt_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/run_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/scheduler_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_fields.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_scope.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_event_verbose_message_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/service_version_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/serviceeventverbosemessagemodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sso_connection.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sso_connection_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/sso_mode.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/summarize_machine_pool_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/summarize_machine_pool_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/summarizemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/system_workload_name.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tag_key.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tag_key_value.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tag_search_in.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tag_value.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tagkey_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tagkeyvalue_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tagvalue_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_attempts.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_exception_group_aggregate.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_function_name_group_aggregate.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_function_name_group_aggregate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_job_group_aggregate.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_job_group_aggregate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_summary.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_summary_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_table_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_table_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_table_row.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/task_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tasksummary_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tracing_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/train_resources.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/train_run.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/train_run_attempt.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/train_worker.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/trainrun_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/unified_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/unified_origin_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/unifiedevent_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_cloud_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_job_queue_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_machine_pool_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_payment_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_resource_quota.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/update_workspace_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/updatemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/upsert_resource_tags_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usage_by_cloud.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usage_by_cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usage_by_cluster_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usage_by_instance_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usage_by_project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usage_by_user.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usagebycloud_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usagebycluster_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usagebyclustertype_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usagebyinstancetype_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usagebyproject_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/usagebyuser_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/use_work_os_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/useworkosresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/utm_fields.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/ux_instance.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/validation_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/waitlist_status_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/waitliststatusresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/work_os_authorize_url_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workload_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workload_machine_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workload_state_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workload_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workloadstateinfo_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workosauthorizeurlresponse_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_event.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_event_fields.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_event_source.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_event_source_filter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_system_artifacts.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_category.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_complexity.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_icon_background_color.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_icon_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_template_readme.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspace_templates_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspaceevent_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacetemplate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacetemplatereadme_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacetemplateversion_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/workspacetemplateversion_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/setup.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/client/tox.ini +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cloud/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cloud/_private/cloud_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cloud/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cloud/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cloud_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/cluster_env.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/aggregated_instance_usage_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/cloud_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/command_examples.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/image_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/list_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/organization_invitation_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/resource_quota_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/service_account_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/setup_k8s.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/commands/user_commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/compute_config/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/compute_config/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/conf.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/connect.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/cloud_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/cloud_file_storage_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/kubernetes_verifier.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/feature_flags.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/fingerprint.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/image/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/image/_private/image_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/image/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/image/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/integrations.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/job_queue/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/links.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/memorydb_supported_zones.json +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/models/job_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/models/service_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/organization_invitation/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/organization_invitation/_private/organization_invitation_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/organization_invitation/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/organization_invitation/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/project/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/project/_private/project_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/project/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/project/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/project_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/resource_quota/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/resource_quota/_private/resource_quota_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/resource_quota/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/resource_quota/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/schedule/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/schedule/_private/schedule_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/schedule/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/schedule/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/scripts.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/apply_service_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/compute_stack.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/service_version_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/system_workload_name.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/tracing_config.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/ux_instance.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service_account/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service_account/_private/service_account_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service_account/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/service_account/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/bytes_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/constants.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/snapshot.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/tables.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/telemetry.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/user/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/user/_private/user_sdk.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/user/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/user/models.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/cloudformation_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/s3.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/ssh_websocket_proxy.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/user_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/workspace/__init__.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/workspace/commands.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale/workspace_utils.py +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/requirements.in +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/setup.cfg +0 -0
- {anyscale-0.26.70 → anyscale-0.26.72}/setup.py +0 -0
|
@@ -55,12 +55,14 @@ from anyscale.client.openapi_client.models import (
|
|
|
55
55
|
CreateOrganizationInvitation,
|
|
56
56
|
CreateResourceQuota,
|
|
57
57
|
CreateUserProjectCollaborator,
|
|
58
|
+
DecoratedCloudResource,
|
|
58
59
|
DecoratedComputeTemplate,
|
|
59
60
|
DecoratedjobqueueListResponse,
|
|
60
61
|
DecoratedlistserviceapimodelListResponse,
|
|
61
62
|
DecoratedProductionServiceV2APIModel,
|
|
62
63
|
DecoratedProductionServiceV2VersionAPIModel,
|
|
63
64
|
DecoratedSession,
|
|
65
|
+
DeleteResourceTagsRequest,
|
|
64
66
|
ExperimentalWorkspace,
|
|
65
67
|
GetOrCreateBuildFromImageUriRequest,
|
|
66
68
|
InternalProductionJob,
|
|
@@ -74,12 +76,14 @@ from anyscale.client.openapi_client.models import (
|
|
|
74
76
|
ProjectListResponse,
|
|
75
77
|
ResourceQuota,
|
|
76
78
|
ResourceQuotaStatus,
|
|
79
|
+
ResourceTagResourceType,
|
|
77
80
|
ServerSessionToken,
|
|
78
81
|
SessionSshKey,
|
|
79
82
|
SessionState,
|
|
80
83
|
StartSessionOptions,
|
|
81
84
|
StopSessionOptions,
|
|
82
85
|
SystemWorkloadName,
|
|
86
|
+
UpsertResourceTagsRequest,
|
|
83
87
|
WorkspaceDataplaneProxiedArtifacts,
|
|
84
88
|
WriteProject,
|
|
85
89
|
)
|
|
@@ -577,6 +581,14 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
577
581
|
cloud_id = self.get_cloud_id(cloud_name=name)
|
|
578
582
|
return self.get_cloud(cloud_id=cloud_id)
|
|
579
583
|
|
|
584
|
+
@handle_api_exceptions
|
|
585
|
+
def get_cloud_resource_by_name(
|
|
586
|
+
self, cloud_id: str, cloud_resource_name: str
|
|
587
|
+
) -> Optional[DecoratedCloudResource]:
|
|
588
|
+
return self._internal_api_client.find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post(
|
|
589
|
+
cloud_id=cloud_id, cloud_resource_name=cloud_resource_name,
|
|
590
|
+
).result
|
|
591
|
+
|
|
580
592
|
@handle_api_exceptions
|
|
581
593
|
def get_default_cloud(self) -> Optional[Cloud]:
|
|
582
594
|
try:
|
|
@@ -704,9 +716,11 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
704
716
|
)
|
|
705
717
|
|
|
706
718
|
@handle_api_exceptions
|
|
707
|
-
def get_default_compute_config(
|
|
719
|
+
def get_default_compute_config(
|
|
720
|
+
self, *, cloud_id: str, cloud_resource_id: Optional[str] = None
|
|
721
|
+
) -> ClusterCompute:
|
|
708
722
|
return self._external_api_client.get_default_cluster_compute(
|
|
709
|
-
cloud_id=cloud_id,
|
|
723
|
+
cloud_id=cloud_id, cloud_resource_id=cloud_resource_id
|
|
710
724
|
).result
|
|
711
725
|
|
|
712
726
|
def _build_standard_compute_template_from_existing_auto_config(
|
|
@@ -1024,6 +1038,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1024
1038
|
*,
|
|
1025
1039
|
name: Optional[str] = None,
|
|
1026
1040
|
state_filter: Optional[List[str]] = None,
|
|
1041
|
+
tag_filter: Optional[List[str]] = None,
|
|
1027
1042
|
creator_id: Optional[str] = None,
|
|
1028
1043
|
cloud: Optional[str] = None,
|
|
1029
1044
|
project: Optional[str] = None,
|
|
@@ -1049,6 +1064,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1049
1064
|
archive_status=ArchiveStatus.ALL
|
|
1050
1065
|
if include_archived
|
|
1051
1066
|
else ArchiveStatus.NOT_ARCHIVED,
|
|
1067
|
+
tag_filter=tag_filter,
|
|
1052
1068
|
count=count if count else self.LIST_ENDPOINT_COUNT,
|
|
1053
1069
|
paging_token=paging_token,
|
|
1054
1070
|
sort_field=sort_field,
|
|
@@ -1056,11 +1072,29 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1056
1072
|
)
|
|
1057
1073
|
|
|
1058
1074
|
def get_service_versions(
|
|
1059
|
-
self, service_id: str
|
|
1075
|
+
self, service_id: str, read_all_versions: bool = False,
|
|
1060
1076
|
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
1061
|
-
|
|
1062
|
-
service_id
|
|
1063
|
-
)
|
|
1077
|
+
resp = self._internal_api_client.get_service_versions_api_v2_services_v2_service_id_versions_get(
|
|
1078
|
+
service_id=service_id,
|
|
1079
|
+
)
|
|
1080
|
+
|
|
1081
|
+
if not read_all_versions:
|
|
1082
|
+
return resp.results
|
|
1083
|
+
|
|
1084
|
+
all_versions: List[DecoratedProductionServiceV2VersionAPIModel] = []
|
|
1085
|
+
all_versions.extend(resp.results)
|
|
1086
|
+
paging_token = resp.metadata.next_paging_token
|
|
1087
|
+
|
|
1088
|
+
while paging_token is not None:
|
|
1089
|
+
resp = self._internal_api_client.get_service_versions_api_v2_services_v2_service_id_versions_get(
|
|
1090
|
+
service_id=service_id,
|
|
1091
|
+
count=self.LIST_ENDPOINT_COUNT,
|
|
1092
|
+
paging_token=paging_token,
|
|
1093
|
+
)
|
|
1094
|
+
all_versions.extend(resp.results)
|
|
1095
|
+
paging_token = resp.metadata.next_paging_token
|
|
1096
|
+
|
|
1097
|
+
return all_versions
|
|
1064
1098
|
|
|
1065
1099
|
@handle_api_exceptions
|
|
1066
1100
|
def get_project(self, project_id: str) -> Project:
|
|
@@ -1215,6 +1249,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1215
1249
|
cluster_status: Optional[SessionState] = None,
|
|
1216
1250
|
project: Optional[str] = None,
|
|
1217
1251
|
cloud: Optional[str] = None,
|
|
1252
|
+
tags_filter: Optional[Dict[str, List[str]]] = None,
|
|
1218
1253
|
count: Optional[int] = None,
|
|
1219
1254
|
paging_token: Optional[str] = None,
|
|
1220
1255
|
sorting_directives: Optional[List[JobQueueSortDirective]] = None,
|
|
@@ -1233,6 +1268,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1233
1268
|
cluster_status=cluster_status,
|
|
1234
1269
|
project_id=project_id,
|
|
1235
1270
|
cloud_id=cloud_id,
|
|
1271
|
+
tags_filter=tags_filter,
|
|
1236
1272
|
paging=PageQuery(count=count, paging_token=paging_token),
|
|
1237
1273
|
sorting_directives=sorting_directives,
|
|
1238
1274
|
),
|
|
@@ -2145,3 +2181,24 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
2145
2181
|
self._internal_api_client.set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch(
|
|
2146
2182
|
resource_quota_id, ResourceQuotaStatus(is_enabled=is_enabled)
|
|
2147
2183
|
).result
|
|
2184
|
+
|
|
2185
|
+
@handle_api_exceptions
|
|
2186
|
+
def upsert_resource_tags(
|
|
2187
|
+
self,
|
|
2188
|
+
resource_type: ResourceTagResourceType,
|
|
2189
|
+
resource_id: str,
|
|
2190
|
+
tags: Dict[str, str],
|
|
2191
|
+
) -> None:
|
|
2192
|
+
req = UpsertResourceTagsRequest(
|
|
2193
|
+
resource_type=resource_type, resource_id=resource_id, tags=tags
|
|
2194
|
+
)
|
|
2195
|
+
self._internal_api_client.upsert_resource_tags_api_v2_tags_resource_put(req)
|
|
2196
|
+
|
|
2197
|
+
@handle_api_exceptions
|
|
2198
|
+
def delete_resource_tags(
|
|
2199
|
+
self, resource_type: ResourceTagResourceType, resource_id: str, keys: List[str],
|
|
2200
|
+
) -> None:
|
|
2201
|
+
req = DeleteResourceTagsRequest(
|
|
2202
|
+
resource_type=resource_type, resource_id=resource_id, keys=keys
|
|
2203
|
+
)
|
|
2204
|
+
self._internal_api_client.delete_resource_tags_api_v2_tags_resource_delete(req)
|
|
@@ -17,6 +17,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
17
17
|
CreateInternalProductionJob,
|
|
18
18
|
CreateResourceQuota,
|
|
19
19
|
CreateUserProjectCollaborator,
|
|
20
|
+
DecoratedCloudResource,
|
|
20
21
|
DecoratedComputeTemplate,
|
|
21
22
|
DecoratedjobqueueListResponse,
|
|
22
23
|
DecoratedlistserviceapimodelListResponse,
|
|
@@ -30,6 +31,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
30
31
|
ProjectBase,
|
|
31
32
|
ProjectListResponse,
|
|
32
33
|
ResourceQuota,
|
|
34
|
+
ResourceTagResourceType,
|
|
33
35
|
ServerSessionToken,
|
|
34
36
|
SessionState,
|
|
35
37
|
WorkspaceDataplaneProxiedArtifacts,
|
|
@@ -59,7 +61,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
|
59
61
|
# Maybe just make it part of the release process to update it, or fetch the
|
|
60
62
|
# default builds and get the latest one. The best thing to do is probably
|
|
61
63
|
# to populate this in the backend.
|
|
62
|
-
DEFAULT_RAY_VERSION = "2.
|
|
64
|
+
DEFAULT_RAY_VERSION = "2.51.0" # RAY_RELEASE_UPDATE: update to latest version
|
|
63
65
|
DEFAULT_PYTHON_VERSION = "py311"
|
|
64
66
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
|
65
67
|
|
|
@@ -168,6 +170,13 @@ class AnyscaleClientInterface(ABC):
|
|
|
168
170
|
"""
|
|
169
171
|
raise NotImplementedError
|
|
170
172
|
|
|
173
|
+
@abstractmethod
|
|
174
|
+
def get_cloud_resource_by_name(
|
|
175
|
+
self, cloud_id: str, cloud_resource_name: str
|
|
176
|
+
) -> Optional[DecoratedCloudResource]:
|
|
177
|
+
"""Get a cloud resource by name."""
|
|
178
|
+
raise NotImplementedError
|
|
179
|
+
|
|
171
180
|
@abstractmethod
|
|
172
181
|
def get_default_cloud(self) -> Optional[Cloud]:
|
|
173
182
|
"""Get the user's default cloud."""
|
|
@@ -236,7 +245,9 @@ class AnyscaleClientInterface(ABC):
|
|
|
236
245
|
raise NotImplementedError
|
|
237
246
|
|
|
238
247
|
@abstractmethod
|
|
239
|
-
def get_default_compute_config(
|
|
248
|
+
def get_default_compute_config(
|
|
249
|
+
self, *, cloud_id: str, cloud_resource_id: Optional[str] = None
|
|
250
|
+
) -> ClusterCompute:
|
|
240
251
|
"""Get the default compute config for the provided cloud ID."""
|
|
241
252
|
raise NotImplementedError
|
|
242
253
|
|
|
@@ -347,6 +358,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
347
358
|
*,
|
|
348
359
|
name: Optional[str],
|
|
349
360
|
state_filter: Optional[List[str]],
|
|
361
|
+
tag_filter: Optional[List[str]],
|
|
350
362
|
creator_id: Optional[str],
|
|
351
363
|
cloud: Optional[str],
|
|
352
364
|
project: Optional[str],
|
|
@@ -385,7 +397,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
385
397
|
|
|
386
398
|
@abstractmethod
|
|
387
399
|
def get_service_versions(
|
|
388
|
-
self, service_id: str
|
|
400
|
+
self, service_id: str, read_all_versions: bool = False
|
|
389
401
|
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
390
402
|
"""Get the versions of a service."""
|
|
391
403
|
raise NotImplementedError
|
|
@@ -462,6 +474,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
462
474
|
cluster_status: Optional[SessionState] = None,
|
|
463
475
|
project: Optional[str] = None,
|
|
464
476
|
cloud: Optional[str] = None,
|
|
477
|
+
tags_filter: Optional[Dict[str, List[str]]] = None,
|
|
465
478
|
count: Optional[int] = None,
|
|
466
479
|
paging_token: Optional[str] = None,
|
|
467
480
|
sorting_directives: Optional[List[JobQueueSortDirective]] = None,
|
|
@@ -840,3 +853,20 @@ class AnyscaleClientInterface(ABC):
|
|
|
840
853
|
) -> None:
|
|
841
854
|
"""Set the status of a resource quota."""
|
|
842
855
|
raise NotImplementedError
|
|
856
|
+
|
|
857
|
+
@abstractmethod
|
|
858
|
+
def upsert_resource_tags(
|
|
859
|
+
self,
|
|
860
|
+
resource_type: ResourceTagResourceType,
|
|
861
|
+
resource_id: str,
|
|
862
|
+
tags: Dict[str, str],
|
|
863
|
+
) -> None:
|
|
864
|
+
"""Upsert tags (add/update) for a resource."""
|
|
865
|
+
raise NotImplementedError
|
|
866
|
+
|
|
867
|
+
@abstractmethod
|
|
868
|
+
def delete_resource_tags(
|
|
869
|
+
self, resource_type: ResourceTagResourceType, resource_id: str, keys: List[str],
|
|
870
|
+
) -> None:
|
|
871
|
+
"""Delete tags for the provided keys from a resource."""
|
|
872
|
+
raise NotImplementedError
|
{anyscale-0.26.70 → anyscale-0.26.72}/anyscale/_private/anyscale_client/fake_anyscale_client.py
RENAMED
|
@@ -29,6 +29,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
29
29
|
CreateInternalProductionJob,
|
|
30
30
|
CreateResourceQuota,
|
|
31
31
|
CreateUserProjectCollaborator,
|
|
32
|
+
DecoratedCloudResource,
|
|
32
33
|
DecoratedComputeTemplate,
|
|
33
34
|
DecoratedlistserviceapimodelListResponse,
|
|
34
35
|
DecoratedProductionServiceV2APIModel,
|
|
@@ -52,6 +53,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
52
53
|
ProjectBase,
|
|
53
54
|
ProjectListResponse,
|
|
54
55
|
ResourceQuota,
|
|
56
|
+
ResourceTagResourceType,
|
|
55
57
|
ServerSessionToken,
|
|
56
58
|
WorkspaceDataplaneProxiedArtifacts,
|
|
57
59
|
WriteProject,
|
|
@@ -414,6 +416,11 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
414
416
|
return c
|
|
415
417
|
return None
|
|
416
418
|
|
|
419
|
+
def get_cloud_resource_by_name(
|
|
420
|
+
self, cloud_id: str, cloud_resource_name: str # noqa: ARG002
|
|
421
|
+
) -> Optional[DecoratedCloudResource]:
|
|
422
|
+
return None
|
|
423
|
+
|
|
417
424
|
def get_default_cloud(self) -> Optional[Cloud]:
|
|
418
425
|
return self._clouds.get(self.DEFAULT_CLOUD_ID, None)
|
|
419
426
|
|
|
@@ -541,7 +548,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
541
548
|
):
|
|
542
549
|
self._default_compute_configs[cloud_id] = compute_config
|
|
543
550
|
|
|
544
|
-
def get_default_compute_config(
|
|
551
|
+
def get_default_compute_config(
|
|
552
|
+
self, *, cloud_id: str, cloud_resource_id: Optional[str] = None # noqa: ARG002
|
|
553
|
+
) -> ClusterCompute:
|
|
545
554
|
return self._default_compute_configs[cloud_id]
|
|
546
555
|
|
|
547
556
|
def list_cluster_env_builds(
|
|
@@ -1613,6 +1622,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
1613
1622
|
*,
|
|
1614
1623
|
name: Optional[str] = None,
|
|
1615
1624
|
state_filter: Optional[List[str]] = None,
|
|
1625
|
+
tag_filter: Optional[List[str]] = None, # noqa: ARG002
|
|
1616
1626
|
creator_id: Optional[str] = None, # noqa: ARG002
|
|
1617
1627
|
cloud: Optional[str] = None,
|
|
1618
1628
|
project: Optional[str] = None,
|
|
@@ -1667,6 +1677,21 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
1667
1677
|
return response
|
|
1668
1678
|
|
|
1669
1679
|
def get_service_versions(
|
|
1670
|
-
self, service_id: str
|
|
1680
|
+
self, service_id: str, read_all_versions: bool = False # noqa: ARG002
|
|
1671
1681
|
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
1672
1682
|
return list(self._versions[service_id].values())
|
|
1683
|
+
|
|
1684
|
+
def upsert_resource_tags(
|
|
1685
|
+
self,
|
|
1686
|
+
resource_type: ResourceTagResourceType,
|
|
1687
|
+
resource_id: str,
|
|
1688
|
+
tags: Dict[str, str],
|
|
1689
|
+
) -> None:
|
|
1690
|
+
_ = resource_type, resource_id, tags
|
|
1691
|
+
return None
|
|
1692
|
+
|
|
1693
|
+
def delete_resource_tags(
|
|
1694
|
+
self, resource_type: ResourceTagResourceType, resource_id: str, keys: List[str],
|
|
1695
|
+
) -> None:
|
|
1696
|
+
_ = resource_type, resource_id, keys
|
|
1697
|
+
return None
|
|
@@ -149,6 +149,7 @@ Class | Method | HTTP request | Description
|
|
|
149
149
|
*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
|
|
150
150
|
*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
|
|
151
151
|
*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
|
|
152
|
+
*DefaultApi* | [**delete_template_api_v2_workspace_templates_template_id_delete**](docs/DefaultApi.md#delete_template_api_v2_workspace_templates_template_id_delete) | **DELETE** /api/v2/workspace_templates/{template_id} | Delete Template
|
|
152
153
|
*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
|
|
153
154
|
*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
|
|
154
155
|
*DefaultApi* | [**describe_machine_pool_machines_api_v2_machine_pools_describe_machines_post**](docs/DefaultApi.md#describe_machine_pool_machines_api_v2_machine_pools_describe_machines_post) | **POST** /api/v2/machine_pools/describe_machines | Describe Machine Pool Machines
|
|
@@ -169,6 +170,7 @@ Class | Method | HTTP request | Description
|
|
|
169
170
|
*DefaultApi* | [**fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post**](docs/DefaultApi.md#fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post) | **POST** /api/v2/aggregated_instance_usage/project | Fetch Usage Group By Project
|
|
170
171
|
*DefaultApi* | [**fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post**](docs/DefaultApi.md#fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post) | **POST** /api/v2/aggregated_instance_usage/user | Fetch Usage Group By User
|
|
171
172
|
*DefaultApi* | [**find_cloud_by_name_api_v2_clouds_find_by_name_post**](docs/DefaultApi.md#find_cloud_by_name_api_v2_clouds_find_by_name_post) | **POST** /api/v2/clouds/find_by_name | Find Cloud By Name
|
|
173
|
+
*DefaultApi* | [**find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post**](docs/DefaultApi.md#find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post) | **POST** /api/v2/clouds/{cloud_id}/find_cloud_resource_by_name | Find Cloud Resource By Name
|
|
172
174
|
*DefaultApi* | [**find_dataset_api_v2_datasets_find_get**](docs/DefaultApi.md#find_dataset_api_v2_datasets_find_get) | **GET** /api/v2/datasets/find | Find Dataset
|
|
173
175
|
*DefaultApi* | [**find_project_by_project_name_api_v2_projects_find_by_name_get**](docs/DefaultApi.md#find_project_by_project_name_api_v2_projects_find_by_name_get) | **GET** /api/v2/projects/find_by_name | Find Project By Project Name
|
|
174
176
|
*DefaultApi* | [**finish_session_command_api_v2_session_commands_session_command_id_finish_post**](docs/DefaultApi.md#finish_session_command_api_v2_session_commands_session_command_id_finish_post) | **POST** /api/v2/session_commands/{session_command_id}/finish | Finish Session Command
|
|
@@ -255,6 +257,7 @@ Class | Method | HTTP request | Description
|
|
|
255
257
|
*DefaultApi* | [**get_service_api_v2_services_v2_service_id_get**](docs/DefaultApi.md#get_service_api_v2_services_v2_service_id_get) | **GET** /api/v2/services-v2/{service_id} | Get Service
|
|
256
258
|
*DefaultApi* | [**get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get**](docs/DefaultApi.md#get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get) | **GET** /api/v2/services-v2/events/{event_id}/verbose_message | Get Service Event Verbose Message
|
|
257
259
|
*DefaultApi* | [**get_service_events_api_v2_services_v2_service_id_events_get**](docs/DefaultApi.md#get_service_events_api_v2_services_v2_service_id_events_get) | **GET** /api/v2/services-v2/{service_id}/events | Get Service Events
|
|
260
|
+
*DefaultApi* | [**get_service_version_api_v2_services_v2_service_id_versions_service_version_name_get**](docs/DefaultApi.md#get_service_version_api_v2_services_v2_service_id_versions_service_version_name_get) | **GET** /api/v2/services-v2/{service_id}/versions/{service_version_name} | Get Service Version
|
|
258
261
|
*DefaultApi* | [**get_service_versions_api_v2_services_v2_service_id_versions_get**](docs/DefaultApi.md#get_service_versions_api_v2_services_v2_service_id_versions_get) | **GET** /api/v2/services-v2/{service_id}/versions | Get Service Versions
|
|
259
262
|
*DefaultApi* | [**get_session_api_v2_sessions_session_id_get**](docs/DefaultApi.md#get_session_api_v2_sessions_session_id_get) | **GET** /api/v2/sessions/{session_id} | Get Session
|
|
260
263
|
*DefaultApi* | [**get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get**](docs/DefaultApi.md#get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get) | **GET** /api/v2/logs/session_command_logs/{session_id}/{session_command_id} | Get Session Command Logs Download
|
|
@@ -262,6 +265,8 @@ Class | Method | HTTP request | Description
|
|
|
262
265
|
*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
|
|
263
266
|
*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
|
|
264
267
|
*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
|
|
268
|
+
*DefaultApi* | [**get_table_metadata_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_metadata_get**](docs/DefaultApi.md#get_table_metadata_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_metadata_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables/{table_id}/metadata | Get Table Metadata
|
|
269
|
+
*DefaultApi* | [**get_table_preview_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_preview_get**](docs/DefaultApi.md#get_table_preview_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_preview_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables/{table_id}/preview | Get Table Preview
|
|
265
270
|
*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
|
|
266
271
|
*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
|
|
267
272
|
*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
|
|
@@ -325,11 +330,14 @@ Class | Method | HTTP request | Description
|
|
|
325
330
|
*DefaultApi* | [**list_projects_api_v2_projects_get**](docs/DefaultApi.md#list_projects_api_v2_projects_get) | **GET** /api/v2/projects/ | List Projects
|
|
326
331
|
*DefaultApi* | [**list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get**](docs/DefaultApi.md#list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get) | **GET** /api/v2/tasks_dashboard/list_ray_sessions | List Ray Sessions
|
|
327
332
|
*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
|
|
333
|
+
*DefaultApi* | [**list_schemas_in_catalog_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_get**](docs/DefaultApi.md#list_schemas_in_catalog_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas | List Schemas In Catalog
|
|
328
334
|
*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
|
|
329
335
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
|
336
|
+
*DefaultApi* | [**list_tables_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_get**](docs/DefaultApi.md#list_tables_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables | List Tables In Schema
|
|
330
337
|
*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
|
|
331
338
|
*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
|
|
332
339
|
*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
|
|
340
|
+
*DefaultApi* | [**list_volumes_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_volumes_get**](docs/DefaultApi.md#list_volumes_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_volumes_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/volumes | List Volumes In Schema
|
|
333
341
|
*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
|
|
334
342
|
*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
|
|
335
343
|
*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
|
|
@@ -399,6 +407,7 @@ Class | Method | HTTP request | Description
|
|
|
399
407
|
*DefaultApi* | [**trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post**](docs/DefaultApi.md#trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/trigger | Trigger Cron Job
|
|
400
408
|
*DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
|
|
401
409
|
*DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
|
|
410
|
+
*DefaultApi* | [**unpublish_template_api_v2_workspace_templates_template_id_unpublish_post**](docs/DefaultApi.md#unpublish_template_api_v2_workspace_templates_template_id_unpublish_post) | **POST** /api/v2/workspace_templates/{template_id}/unpublish | Unpublish Template
|
|
402
411
|
*DefaultApi* | [**update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put**](docs/DefaultApi.md#update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put) | **PUT** /api/v2/clouds/{cloud_id}/auto_add_user | Update Cloud Auto Add User
|
|
403
412
|
*DefaultApi* | [**update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put**](docs/DefaultApi.md#update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/deployment/{cloud_deployment_id}/config | Update Cloud Deployment Config
|
|
404
413
|
*DefaultApi* | [**update_cloud_resources_api_v2_clouds_cloud_id_resources_put**](docs/DefaultApi.md#update_cloud_resources_api_v2_clouds_cloud_id_resources_put) | **PUT** /api/v2/clouds/{cloud_id}/resources | Update Cloud Resources
|
|
@@ -416,6 +425,7 @@ Class | Method | HTTP request | Description
|
|
|
416
425
|
*DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
|
|
417
426
|
*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
|
|
418
427
|
*DefaultApi* | [**update_template_api_v2_workspace_templates_template_id_put**](docs/DefaultApi.md#update_template_api_v2_workspace_templates_template_id_put) | **PUT** /api/v2/workspace_templates/{template_id} | Update Template
|
|
428
|
+
*DefaultApi* | [**upgrade_multi_version_weights_api_v2_services_v2_service_id_update_weights_put**](docs/DefaultApi.md#upgrade_multi_version_weights_api_v2_services_v2_service_id_update_weights_put) | **PUT** /api/v2/services-v2/{service_id}/update_weights | Upgrade Multi Version Weights
|
|
419
429
|
*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
|
|
420
430
|
*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
|
|
421
431
|
*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
|
|
@@ -463,8 +473,10 @@ Class | Method | HTTP request | Description
|
|
|
463
473
|
- [ApplicationType](docs/ApplicationType.md)
|
|
464
474
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
465
475
|
- [ApplyAutoscalingConfigUpdateModel](docs/ApplyAutoscalingConfigUpdateModel.md)
|
|
476
|
+
- [ApplyMultiVersionUpdateWeightsUpdateModel](docs/ApplyMultiVersionUpdateWeightsUpdateModel.md)
|
|
466
477
|
- [ApplyProductionServiceMultiVersionV2Model](docs/ApplyProductionServiceMultiVersionV2Model.md)
|
|
467
478
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
479
|
+
- [ApplyVersionWeightUpdateModel](docs/ApplyVersionWeightUpdateModel.md)
|
|
468
480
|
- [ArchiveStatus](docs/ArchiveStatus.md)
|
|
469
481
|
- [AttachMachinePoolToCloudRequest](docs/AttachMachinePoolToCloudRequest.md)
|
|
470
482
|
- [AttachmachinepooltocloudresponseResponse](docs/AttachmachinepooltocloudresponseResponse.md)
|
|
@@ -472,6 +484,8 @@ Class | Method | HTTP request | Description
|
|
|
472
484
|
- [AwsRegionInfo](docs/AwsRegionInfo.md)
|
|
473
485
|
- [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
|
|
474
486
|
- [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
|
|
487
|
+
- [BackendServerApiProductModelsCatalogClientModelsTableMetadata](docs/BackendServerApiProductModelsCatalogClientModelsTableMetadata.md)
|
|
488
|
+
- [BackendServerApiProductModelsDataCatalogsTableMetadata](docs/BackendServerApiProductModelsDataCatalogsTableMetadata.md)
|
|
475
489
|
- [BackendServerApiProductModelsDatasetRunsDatasetResponse](docs/BackendServerApiProductModelsDatasetRunsDatasetResponse.md)
|
|
476
490
|
- [BackendServerApiProductRoutersDatasetsRouterDatasetResponse](docs/BackendServerApiProductRoutersDatasetsRouterDatasetResponse.md)
|
|
477
491
|
- [BaseJobStatus](docs/BaseJobStatus.md)
|
|
@@ -486,6 +500,7 @@ Class | Method | HTTP request | Description
|
|
|
486
500
|
- [BuildStatus](docs/BuildStatus.md)
|
|
487
501
|
- [BuildlogresponseResponse](docs/BuildlogresponseResponse.md)
|
|
488
502
|
- [CLIUsagePayload](docs/CLIUsagePayload.md)
|
|
503
|
+
- [CatalogMetadata](docs/CatalogMetadata.md)
|
|
489
504
|
- [ChangePasswordParams](docs/ChangePasswordParams.md)
|
|
490
505
|
- [CleanupLeakedGrafanaDashboardResponse](docs/CleanupLeakedGrafanaDashboardResponse.md)
|
|
491
506
|
- [CleanupleakedgrafanadashboardresponseResponse](docs/CleanupleakedgrafanadashboardresponseResponse.md)
|
|
@@ -563,6 +578,7 @@ Class | Method | HTTP request | Description
|
|
|
563
578
|
- [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
|
|
564
579
|
- [ClusteroperationResponse](docs/ClusteroperationResponse.md)
|
|
565
580
|
- [CollaboratorType](docs/CollaboratorType.md)
|
|
581
|
+
- [ColumnInfo](docs/ColumnInfo.md)
|
|
566
582
|
- [CommitLedgerItemType](docs/CommitLedgerItemType.md)
|
|
567
583
|
- [CommitLedgerRecordV2](docs/CommitLedgerRecordV2.md)
|
|
568
584
|
- [ComplexityLevel](docs/ComplexityLevel.md)
|
|
@@ -573,6 +589,7 @@ Class | Method | HTTP request | Description
|
|
|
573
589
|
- [ComputeTemplateQuery](docs/ComputeTemplateQuery.md)
|
|
574
590
|
- [ComputetemplateResponse](docs/ComputetemplateResponse.md)
|
|
575
591
|
- [ComputetemplateconfigResponse](docs/ComputetemplateconfigResponse.md)
|
|
592
|
+
- [ConnectionMetadata](docs/ConnectionMetadata.md)
|
|
576
593
|
- [ConnectionType](docs/ConnectionType.md)
|
|
577
594
|
- [CreateAioaCloudWaitlist](docs/CreateAioaCloudWaitlist.md)
|
|
578
595
|
- [CreateAnalyticsEvent](docs/CreateAnalyticsEvent.md)
|
|
@@ -632,7 +649,11 @@ Class | Method | HTTP request | Description
|
|
|
632
649
|
- [DataCatalog](docs/DataCatalog.md)
|
|
633
650
|
- [DataCatalogConnection](docs/DataCatalogConnection.md)
|
|
634
651
|
- [DataCatalogConnectionStatus](docs/DataCatalogConnectionStatus.md)
|
|
652
|
+
- [DataCatalogObjectType](docs/DataCatalogObjectType.md)
|
|
635
653
|
- [DataCatalogProvider](docs/DataCatalogProvider.md)
|
|
654
|
+
- [DataCatalogSchema](docs/DataCatalogSchema.md)
|
|
655
|
+
- [DataCatalogTable](docs/DataCatalogTable.md)
|
|
656
|
+
- [DataCatalogVolume](docs/DataCatalogVolume.md)
|
|
636
657
|
- [DatabricksConnectionConfig](docs/DatabricksConnectionConfig.md)
|
|
637
658
|
- [DatabricksConnectionInfo](docs/DatabricksConnectionInfo.md)
|
|
638
659
|
- [DatabricksConnectionResponse](docs/DatabricksConnectionResponse.md)
|
|
@@ -641,6 +662,9 @@ Class | Method | HTTP request | Description
|
|
|
641
662
|
- [DatabricksconnectionresponseResponse](docs/DatabricksconnectionresponseResponse.md)
|
|
642
663
|
- [DatacatalogListResponse](docs/DatacatalogListResponse.md)
|
|
643
664
|
- [DatacatalogconnectionListResponse](docs/DatacatalogconnectionListResponse.md)
|
|
665
|
+
- [DatacatalogschemaListResponse](docs/DatacatalogschemaListResponse.md)
|
|
666
|
+
- [DatacatalogtableListResponse](docs/DatacatalogtableListResponse.md)
|
|
667
|
+
- [DatacatalogvolumeListResponse](docs/DatacatalogvolumeListResponse.md)
|
|
644
668
|
- [DataplaneServices](docs/DataplaneServices.md)
|
|
645
669
|
- [Dataset](docs/Dataset.md)
|
|
646
670
|
- [DatasetDag](docs/DatasetDag.md)
|
|
@@ -689,6 +713,7 @@ Class | Method | HTTP request | Description
|
|
|
689
713
|
- [DecoratedproductionjobstatetransitionListResponse](docs/DecoratedproductionjobstatetransitionListResponse.md)
|
|
690
714
|
- [Decoratedproductionservicev2ApimodelResponse](docs/Decoratedproductionservicev2ApimodelResponse.md)
|
|
691
715
|
- [Decoratedproductionservicev2VersionapimodelListResponse](docs/Decoratedproductionservicev2VersionapimodelListResponse.md)
|
|
716
|
+
- [Decoratedproductionservicev2VersionapimodelResponse](docs/Decoratedproductionservicev2VersionapimodelResponse.md)
|
|
692
717
|
- [DecoratedscheduleListResponse](docs/DecoratedscheduleListResponse.md)
|
|
693
718
|
- [DecoratedscheduleResponse](docs/DecoratedscheduleResponse.md)
|
|
694
719
|
- [DecoratedservedeploymentListResponse](docs/DecoratedservedeploymentListResponse.md)
|
|
@@ -922,6 +947,7 @@ Class | Method | HTTP request | Description
|
|
|
922
947
|
- [PartitionInfo](docs/PartitionInfo.md)
|
|
923
948
|
- [PauseSchedule](docs/PauseSchedule.md)
|
|
924
949
|
- [PermissionLevel](docs/PermissionLevel.md)
|
|
950
|
+
- [PhysicalResources](docs/PhysicalResources.md)
|
|
925
951
|
- [PlanStatus](docs/PlanStatus.md)
|
|
926
952
|
- [PresignedUrlResponse](docs/PresignedUrlResponse.md)
|
|
927
953
|
- [ProductionJob](docs/ProductionJob.md)
|
|
@@ -990,6 +1016,7 @@ Class | Method | HTTP request | Description
|
|
|
990
1016
|
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
|
991
1017
|
- [ScheduleConfig](docs/ScheduleConfig.md)
|
|
992
1018
|
- [SchedulerInfo](docs/SchedulerInfo.md)
|
|
1019
|
+
- [SchemaMetadata](docs/SchemaMetadata.md)
|
|
993
1020
|
- [ServeDeploymentGrafanaDashboardStatus](docs/ServeDeploymentGrafanaDashboardStatus.md)
|
|
994
1021
|
- [ServeDeploymentState](docs/ServeDeploymentState.md)
|
|
995
1022
|
- [ServerSessionToken](docs/ServerSessionToken.md)
|
|
@@ -1039,6 +1066,7 @@ Class | Method | HTTP request | Description
|
|
|
1039
1066
|
- [SummarizemachinepoolresponseResponse](docs/SummarizemachinepoolresponseResponse.md)
|
|
1040
1067
|
- [SupportRequestsQuery](docs/SupportRequestsQuery.md)
|
|
1041
1068
|
- [SystemWorkloadName](docs/SystemWorkloadName.md)
|
|
1069
|
+
- [TableDataPreview](docs/TableDataPreview.md)
|
|
1042
1070
|
- [TagKey](docs/TagKey.md)
|
|
1043
1071
|
- [TagKeyValue](docs/TagKeyValue.md)
|
|
1044
1072
|
- [TagSearchIn](docs/TagSearchIn.md)
|
|
@@ -1116,6 +1144,7 @@ Class | Method | HTTP request | Description
|
|
|
1116
1144
|
- [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
|
|
1117
1145
|
- [ValidationError](docs/ValidationError.md)
|
|
1118
1146
|
- [ValidationStatus](docs/ValidationStatus.md)
|
|
1147
|
+
- [VolumeMetadata](docs/VolumeMetadata.md)
|
|
1119
1148
|
- [WaitlistStatusResponse](docs/WaitlistStatusResponse.md)
|
|
1120
1149
|
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
|
1121
1150
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
|
@@ -57,8 +57,10 @@ from openapi_client.models.appconfig_response import AppconfigResponse
|
|
|
57
57
|
from openapi_client.models.application_type import ApplicationType
|
|
58
58
|
from openapi_client.models.applied_snapshot import AppliedSnapshot
|
|
59
59
|
from openapi_client.models.apply_autoscaling_config_update_model import ApplyAutoscalingConfigUpdateModel
|
|
60
|
+
from openapi_client.models.apply_multi_version_update_weights_update_model import ApplyMultiVersionUpdateWeightsUpdateModel
|
|
60
61
|
from openapi_client.models.apply_production_service_multi_version_v2_model import ApplyProductionServiceMultiVersionV2Model
|
|
61
62
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
63
|
+
from openapi_client.models.apply_version_weight_update_model import ApplyVersionWeightUpdateModel
|
|
62
64
|
from openapi_client.models.archive_status import ArchiveStatus
|
|
63
65
|
from openapi_client.models.attach_machine_pool_to_cloud_request import AttachMachinePoolToCloudRequest
|
|
64
66
|
from openapi_client.models.attachmachinepooltocloudresponse_response import AttachmachinepooltocloudresponseResponse
|
|
@@ -66,6 +68,8 @@ from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
|
|
|
66
68
|
from openapi_client.models.aws_region_info import AwsRegionInfo
|
|
67
69
|
from openapi_client.models.awsregionandzones_response import AwsregionandzonesResponse
|
|
68
70
|
from openapi_client.models.baseimagesenum import BASEIMAGESENUM
|
|
71
|
+
from openapi_client.models.backend_server_api_product_models_catalog_client_models_table_metadata import BackendServerApiProductModelsCatalogClientModelsTableMetadata
|
|
72
|
+
from openapi_client.models.backend_server_api_product_models_data_catalogs_table_metadata import BackendServerApiProductModelsDataCatalogsTableMetadata
|
|
69
73
|
from openapi_client.models.backend_server_api_product_models_dataset_runs_dataset_response import BackendServerApiProductModelsDatasetRunsDatasetResponse
|
|
70
74
|
from openapi_client.models.backend_server_api_product_routers_datasets_router_dataset_response import BackendServerApiProductRoutersDatasetsRouterDatasetResponse
|
|
71
75
|
from openapi_client.models.base_job_status import BaseJobStatus
|
|
@@ -80,6 +84,7 @@ from openapi_client.models.build_response import BuildResponse
|
|
|
80
84
|
from openapi_client.models.build_status import BuildStatus
|
|
81
85
|
from openapi_client.models.buildlogresponse_response import BuildlogresponseResponse
|
|
82
86
|
from openapi_client.models.cli_usage_payload import CLIUsagePayload
|
|
87
|
+
from openapi_client.models.catalog_metadata import CatalogMetadata
|
|
83
88
|
from openapi_client.models.change_password_params import ChangePasswordParams
|
|
84
89
|
from openapi_client.models.cleanup_leaked_grafana_dashboard_response import CleanupLeakedGrafanaDashboardResponse
|
|
85
90
|
from openapi_client.models.cleanupleakedgrafanadashboardresponse_response import CleanupleakedgrafanadashboardresponseResponse
|
|
@@ -157,6 +162,7 @@ from openapi_client.models.clusterevent_list_response import ClustereventListRes
|
|
|
157
162
|
from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
|
|
158
163
|
from openapi_client.models.clusteroperation_response import ClusteroperationResponse
|
|
159
164
|
from openapi_client.models.collaborator_type import CollaboratorType
|
|
165
|
+
from openapi_client.models.column_info import ColumnInfo
|
|
160
166
|
from openapi_client.models.commit_ledger_item_type import CommitLedgerItemType
|
|
161
167
|
from openapi_client.models.commit_ledger_record_v2 import CommitLedgerRecordV2
|
|
162
168
|
from openapi_client.models.complexity_level import ComplexityLevel
|
|
@@ -167,6 +173,7 @@ from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
|
167
173
|
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
|
168
174
|
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
|
169
175
|
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
|
176
|
+
from openapi_client.models.connection_metadata import ConnectionMetadata
|
|
170
177
|
from openapi_client.models.connection_type import ConnectionType
|
|
171
178
|
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
|
172
179
|
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
|
@@ -226,7 +233,11 @@ from openapi_client.models.dashboard_panel import DashboardPanel
|
|
|
226
233
|
from openapi_client.models.data_catalog import DataCatalog
|
|
227
234
|
from openapi_client.models.data_catalog_connection import DataCatalogConnection
|
|
228
235
|
from openapi_client.models.data_catalog_connection_status import DataCatalogConnectionStatus
|
|
236
|
+
from openapi_client.models.data_catalog_object_type import DataCatalogObjectType
|
|
229
237
|
from openapi_client.models.data_catalog_provider import DataCatalogProvider
|
|
238
|
+
from openapi_client.models.data_catalog_schema import DataCatalogSchema
|
|
239
|
+
from openapi_client.models.data_catalog_table import DataCatalogTable
|
|
240
|
+
from openapi_client.models.data_catalog_volume import DataCatalogVolume
|
|
230
241
|
from openapi_client.models.databricks_connection_config import DatabricksConnectionConfig
|
|
231
242
|
from openapi_client.models.databricks_connection_info import DatabricksConnectionInfo
|
|
232
243
|
from openapi_client.models.databricks_connection_response import DatabricksConnectionResponse
|
|
@@ -235,6 +246,9 @@ from openapi_client.models.databricksconnectioninfo_response import Databricksco
|
|
|
235
246
|
from openapi_client.models.databricksconnectionresponse_response import DatabricksconnectionresponseResponse
|
|
236
247
|
from openapi_client.models.datacatalog_list_response import DatacatalogListResponse
|
|
237
248
|
from openapi_client.models.datacatalogconnection_list_response import DatacatalogconnectionListResponse
|
|
249
|
+
from openapi_client.models.datacatalogschema_list_response import DatacatalogschemaListResponse
|
|
250
|
+
from openapi_client.models.datacatalogtable_list_response import DatacatalogtableListResponse
|
|
251
|
+
from openapi_client.models.datacatalogvolume_list_response import DatacatalogvolumeListResponse
|
|
238
252
|
from openapi_client.models.dataplane_services import DataplaneServices
|
|
239
253
|
from openapi_client.models.dataset import Dataset
|
|
240
254
|
from openapi_client.models.dataset_dag import DatasetDag
|
|
@@ -283,6 +297,7 @@ from openapi_client.models.decoratedproductionjob_response import Decoratedprodu
|
|
|
283
297
|
from openapi_client.models.decoratedproductionjobstatetransition_list_response import DecoratedproductionjobstatetransitionListResponse
|
|
284
298
|
from openapi_client.models.decoratedproductionservicev2_apimodel_response import Decoratedproductionservicev2ApimodelResponse
|
|
285
299
|
from openapi_client.models.decoratedproductionservicev2_versionapimodel_list_response import Decoratedproductionservicev2VersionapimodelListResponse
|
|
300
|
+
from openapi_client.models.decoratedproductionservicev2_versionapimodel_response import Decoratedproductionservicev2VersionapimodelResponse
|
|
286
301
|
from openapi_client.models.decoratedschedule_list_response import DecoratedscheduleListResponse
|
|
287
302
|
from openapi_client.models.decoratedschedule_response import DecoratedscheduleResponse
|
|
288
303
|
from openapi_client.models.decoratedservedeployment_list_response import DecoratedservedeploymentListResponse
|
|
@@ -516,6 +531,7 @@ from openapi_client.models.page_query import PageQuery
|
|
|
516
531
|
from openapi_client.models.partition_info import PartitionInfo
|
|
517
532
|
from openapi_client.models.pause_schedule import PauseSchedule
|
|
518
533
|
from openapi_client.models.permission_level import PermissionLevel
|
|
534
|
+
from openapi_client.models.physical_resources import PhysicalResources
|
|
519
535
|
from openapi_client.models.plan_status import PlanStatus
|
|
520
536
|
from openapi_client.models.presigned_url_response import PresignedUrlResponse
|
|
521
537
|
from openapi_client.models.production_job import ProductionJob
|
|
@@ -584,6 +600,7 @@ from openapi_client.models.sso_mode import SSOMode
|
|
|
584
600
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
|
585
601
|
from openapi_client.models.schedule_config import ScheduleConfig
|
|
586
602
|
from openapi_client.models.scheduler_info import SchedulerInfo
|
|
603
|
+
from openapi_client.models.schema_metadata import SchemaMetadata
|
|
587
604
|
from openapi_client.models.serve_deployment_grafana_dashboard_status import ServeDeploymentGrafanaDashboardStatus
|
|
588
605
|
from openapi_client.models.serve_deployment_state import ServeDeploymentState
|
|
589
606
|
from openapi_client.models.server_session_token import ServerSessionToken
|
|
@@ -633,6 +650,7 @@ from openapi_client.models.summarize_machine_pool_response import SummarizeMachi
|
|
|
633
650
|
from openapi_client.models.summarizemachinepoolresponse_response import SummarizemachinepoolresponseResponse
|
|
634
651
|
from openapi_client.models.support_requests_query import SupportRequestsQuery
|
|
635
652
|
from openapi_client.models.system_workload_name import SystemWorkloadName
|
|
653
|
+
from openapi_client.models.table_data_preview import TableDataPreview
|
|
636
654
|
from openapi_client.models.tag_key import TagKey
|
|
637
655
|
from openapi_client.models.tag_key_value import TagKeyValue
|
|
638
656
|
from openapi_client.models.tag_search_in import TagSearchIn
|
|
@@ -710,6 +728,7 @@ from openapi_client.models.utm_fields import UtmFields
|
|
|
710
728
|
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
|
711
729
|
from openapi_client.models.validation_error import ValidationError
|
|
712
730
|
from openapi_client.models.validation_status import ValidationStatus
|
|
731
|
+
from openapi_client.models.volume_metadata import VolumeMetadata
|
|
713
732
|
from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
|
|
714
733
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
|
715
734
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|