anyscale 0.26.68__tar.gz → 0.26.70__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.68/anyscale.egg-info → anyscale-0.26.70}/PKG-INFO +1 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/anyscale_client/anyscale_client.py +67 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/anyscale_client/common.py +20 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/anyscale_client/fake_anyscale_client.py +77 -10
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/README.md +16 -4
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/__init__.py +12 -4
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/api/default_api.py +588 -23
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/__init__.py +12 -4
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/api_key_info.py +29 -3
- anyscale-0.26.70/anyscale/client/openapi_client/models/apply_autoscaling_config_update_model.py +350 -0
- anyscale-0.26.70/anyscale/client/openapi_client/models/apply_production_service_multi_version_v2_model.py +207 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +31 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/baseimagesenum.py +70 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +2 -1
- anyscale-0.26.70/anyscale/client/openapi_client/models/clouddeployment_response.py +121 -0
- anyscale-0.26.70/anyscale/client/openapi_client/models/clusterdashboardnode_response.py +121 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_workspace_from_template.py +29 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_workspace_template_version.py +31 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +58 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +60 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +3 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +33 -5
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +33 -5
- anyscale-0.26.70/anyscale/client/openapi_client/models/entity_type.py +102 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/event_level.py +2 -1
- anyscale-0.26.70/anyscale/client/openapi_client/models/job_event_fields.py +206 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_graph_node.py +70 -42
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_workload.py +31 -3
- anyscale-0.26.70/anyscale/client/openapi_client/models/machine_type_partition_filter.py +152 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/partition_info.py +30 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/production_job_event.py +3 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/rollout_strategy.py +2 -1
- anyscale-0.26.70/anyscale/client/openapi_client/models/service_event_fields.py +318 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +70 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_summary_config.py +29 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_table_config.py +29 -3
- anyscale-0.26.70/anyscale/client/openapi_client/models/unified_event.py +377 -0
- anyscale-0.26.70/anyscale/client/openapi_client/models/unified_origin_filter.py +113 -0
- anyscale-0.26.70/anyscale/client/openapi_client/models/unifiedevent_list_response.py +147 -0
- anyscale-0.26.70/anyscale/client/openapi_client/models/workspace_event_fields.py +122 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_version.py +30 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_version_data_object.py +30 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cloud/models.py +2 -2
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/cloud_commands.py +148 -11
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/command_examples.py +53 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/job_commands.py +1 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/service_commands.py +130 -67
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/setup_k8s.py +615 -49
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/cloud_controller.py +19 -5
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/kubernetes_verifier.py +80 -66
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job/_private/job_sdk.py +47 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job/commands.py +3 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +31 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/apply_service_model.py +31 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +70 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +2 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +70 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service/__init__.py +11 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service/_private/service_sdk.py +361 -35
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service/commands.py +15 -3
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service/models.py +12 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale-0.26.70/anyscale/version.py +1 -0
- {anyscale-0.26.68 → anyscale-0.26.70/anyscale.egg-info}/PKG-INFO +1 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale.egg-info/SOURCES.txt +12 -4
- anyscale-0.26.68/anyscale/client/openapi_client/models/ha_job_event_level.py +0 -101
- anyscale-0.26.68/anyscale/client/openapi_client/models/o_auth_connection_response.py +0 -229
- anyscale-0.26.68/anyscale/client/openapi_client/models/oauthconnectionresponse_response.py +0 -121
- anyscale-0.26.68/anyscale/client/openapi_client/models/service_event_level.py +0 -102
- anyscale-0.26.68/anyscale/version.py +0 -1
- {anyscale-0.26.68 → anyscale-0.26.70}/.covrc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/README.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/api-client.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/architecture.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/authentication.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/cloud-providers.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/development.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/error-handling.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/rules.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/style-guide.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/telemetry.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/testing-guide.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/testing.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/.cursor/workflow-simple.mdc +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/BUILD.bazel +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/LICENSE +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/MANIFEST.in +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/NOTICE +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/README.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/anyscale_client/README.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/anyscale_client/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/docgen/README.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/docgen/__main__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/docgen/api.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/docgen/generator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/docgen/generator_legacy.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/docgen/models.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/models/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/models/image_uri.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/models/model_base.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/sdk/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/sdk/base_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/sdk/timer.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/utils/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/utils/progress_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/workload/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/workload/workload_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/workload/workload_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/aggregated_instance_usage/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/aggregated_instance_usage/_private/aggregated_instance_usage_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/aggregated_instance_usage/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/aggregated_instance_usage/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale-cloud-setup-oa.yaml +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/LICENSE +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/README.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/cursor.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/halo.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_halo/halo_notebook.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/HISTORY.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/LICENSE +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/PKG-INFO +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/README.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/_hypothesis_plugin.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/annotated_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/class_validators.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/color.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/dataclasses.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/datetime_parse.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/decorator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/env_settings.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/error_wrappers.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/errors.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/fields.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/generics.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/json.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/main.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/mypy.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/networks.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/parse.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/py.typed +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/tools.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/typing.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/validators.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_pydantic/version.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/common_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/authenticate.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/background/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cli_logger.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/.gitignore +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/access_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/actor_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/admin_create_user.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/admin_created_user.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/admincreateduser_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aggregated_usage.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aggregated_usage_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aggregatedusage_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aioa_cloud_waitlist_record.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aioacloudwaitlistrecord_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/alert_issue_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/anyscale_service_account.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/anyscaleserviceaccount_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/apikeyinfo_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/application_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aws_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/backend_server_api_product_models_dataset_runs_dataset_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/backend_server_api_product_routers_datasets_router_dataset_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/billing_version_code.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/body_aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/build_registration.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cli_usage_payload.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_analytics_event.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_analytics_event_command_name.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_analytics_event_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_analytics_event_name.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_access_mode.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_scheme.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_scheme.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_data_bucket_request_scope.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_deployment.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_deployment_compute_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_deployment_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_overview_dashboard.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_waitlist_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clouddatabucketpresignedurlresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clouddeploymentconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudoverviewdashboard_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudresource_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudresourcegcp_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_dashboard_node.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_event.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_event_source.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_events_output.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_operation.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/cluster_status_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clusterdashboardnode_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clusterevent_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clustereventsoutput_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/collaborator_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/commit_ledger_item_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/commit_ledger_record_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/complexity_level.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/compute_stack.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/connection_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_analytics_event.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_billing_version.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_bug_report_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_dataset.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_instance_usage_budget.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_job_queue_requests.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_machine_pool_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_machine_pool_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_machine_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_machine_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_metronome_webhook_notification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_notification_channel_record.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_organization_configuration.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_resource_notification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_resource_quota.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/create_workspace_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/createbugreportresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/createmachinepoolresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/createmachineresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credit_grant_record_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credit_ledger_item_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credit_ledger_record_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credit_record_commit_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credit_record_credit_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credit_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/credits_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/customer_alert_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dashboard_panel.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/data_catalog.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/data_catalog_connection.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/data_catalog_connection_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/data_catalog_provider.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/databricks_connection_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/databricks_connection_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/databricks_connection_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/databricks_register_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/databricksconnectioninfo_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/databricksconnectionresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/datacatalog_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/datacatalogconnection_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_dag.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_dag_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_jobs.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_metrics.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/dataset_upload.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/datasetupload_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_interactive_session.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_job_queue.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedcloudresource_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedcloudresource_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedjobqueue_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedjobqueue_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/delete_machine_pool_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/delete_machine_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/delete_resource_tags_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/deleted_count.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/deletedcount_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_requests_filters.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_machine_pool_workloads_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describe_system_workload_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/describesystemworkloadresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/domain_verification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/editable_cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/email_verification_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/email_verification_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/emailverificationresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/experimental_workspaces_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/file_storage.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/fine_tune_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/fine_tuned_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/finetunedmodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/finetunedmodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/gcp_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/gcp_memorystore_instance_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/get_or_create_build_from_image_uri_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/global_workspace_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/globalworkspacetemplate_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/gpu_usage.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/grafana_dashboard.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ha_job_error_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ha_job_event_origin.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/http_protocol_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/i_know_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/i_know_time_series_event.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/instance_usage_budget.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/instanceusagebudget_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/instanceusagebudget_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue_sort_directive.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue_spec.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queue_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_queues_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_report.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/job_with_report.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/jobqueue_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/jobwithreport_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/kubernetes_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lb_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lbresource_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_artifact.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_artifact_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_artifact_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_direction.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_graph.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_workload_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineage_workload_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineageartifact_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineageartifact_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineagegraph_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineageworkload_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/lineageworkload_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_databricks_connections.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_machine_pools_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_machines_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_ray_sessions_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_resource_notifications_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_resource_quotas_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/listmachinesresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/listraysessionsresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_item.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/log_item_batch.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/logitembatch_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/long_running_workload.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/longrunningworkload_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_allocation_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_connection_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_launch_failure.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_pool.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_pool_search_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_pool_search_result.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machine_state_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machinepoolsearchresult_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/machinestateinfo_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metric.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metrics_query_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metricsqueryresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metronome_customer_info_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metronome_dashboard_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/metronomecustomerinfomodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_compute_template_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_job_run.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/networking_mode.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/nfs_mount_target.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_metrics.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_metrics_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_registration_k8_s.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_registration_provisioned.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/nodemetricsresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/notification_channel_email_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/notification_channel_slack_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/notification_channel_webhook_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/oauth_auth_url_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/object_storage.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operation_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operation_progress.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operation_result.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_branch.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_check_result.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_check_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_event.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_event_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_event_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_id.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_metrics.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/operator_status_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_configuration.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_configuration_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_marketing_questions.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_summary.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_usage_alert.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organization_usage_alert_severity.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationconfiguration_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationconfigurationresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/organizationusagealert_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/plan_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/presigned_url_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/production_job_event_scope_filter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/productionjobevent_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/protocols.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/published_filter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/quota.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ray_session.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/read_billing_version.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/readbillingversion_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/replica_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/replica_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/request_email_magic_link_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/request_state_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/requeststateinfo_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_alert_event_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_notification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_quota.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_quota_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_tag_record.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_tag_resource_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resource_tags_list.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resourcenotification_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resourcenotification_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resourcequota_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resourcequota_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/resourcetagslist_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/revoke_api_keys_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/revoke_api_keys_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/revokeapikeysresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/rollback_service_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/run_attempt_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/run_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/scheduler_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/serve_deployment_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_event_scope.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_event_scope_filter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_event_verbose_message_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/service_version_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/serviceeventverbosemessagemodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sso_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sso_connection.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sso_connection_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/sso_mode.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/summarize_machine_pool_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/summarize_machine_pool_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/summarizemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/system_workload_name.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tag_key.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tag_key_value.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tag_search_in.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tag_value.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tagkey_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tagkeyvalue_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tagvalue_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_attempts.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_exception_group_aggregate.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_function_name_group_aggregate.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_function_name_group_aggregate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_job_group_aggregate.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_job_group_aggregate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_summary.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_table_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_table_row.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/task_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tasksummary_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tracing_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/train_resources.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/train_run.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/train_run_attempt.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/train_worker.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/trainrun_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/try_login_email_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/tryloginemailresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_cloud_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_job_queue_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_machine_pool_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_payment_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_resource_quota.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/update_workspace_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/updatemachinepoolresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/upsert_resource_tags_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usage_by_cloud.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usage_by_cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usage_by_cluster_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usage_by_instance_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usage_by_project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usage_by_user.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usagebycloud_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usagebycluster_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usagebyclustertype_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usagebyinstancetype_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usagebyproject_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/usagebyuser_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/use_work_os_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/useworkosresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/utm_fields.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/ux_instance.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/validation_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/waitlist_status_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/waitlist_status_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/waitliststatusresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/work_os_authorize_url_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workload_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workload_machine_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workload_state_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workload_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workloadstateinfo_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workosauthorizeurlresponse_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_dataplane_artifact.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_event.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_event_source.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_event_source_filter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_snapshot_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_system_artifacts.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_category.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_complexity.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_icon_background_color.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_icon_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_template_readme.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspace_templates_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacedataplaneartifacts_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacedataplaneproxiedartifacts_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspaceevent_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacetemplate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacetemplateclusterenvironmentmetadata_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacetemplatereadme_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacetemplateversion_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/workspacetemplateversion_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/setup.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/client/tox.ini +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cloud/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cloud/_private/cloud_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cloud/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cloud_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/cluster_env.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/aggregated_instance_usage_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/anyscale_api/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/compute_config_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/image_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/job_queue_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/list_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/machine_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/machine_pool_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/organization_invitation_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/resource_quota_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/service_account_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/user_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/commands/workspace_commands_v2.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/compute_config/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/compute_config/_private/compute_config_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/compute_config/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/compute_config/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/conf.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/connect.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/connect_utils/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/cloud_file_storage_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/cloud_functional_verification_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/compute_config_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/machine_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/machine_pool_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/feature_flags.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/fingerprint.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/formatters/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/image/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/image/_private/image_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/image/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/image/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/integrations.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job_queue/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job_queue/_private/job_queue_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job_queue/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/job_queue/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/links.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/memorydb_supported_zones.json +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/models/job_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/models/service_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/organization_invitation/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/organization_invitation/_private/organization_invitation_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/organization_invitation/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/organization_invitation/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/project/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/project/_private/project_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/project/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/project/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/project_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/resource_quota/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/resource_quota/_private/resource_quota_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/resource_quota/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/resource_quota/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/schedule/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/schedule/_private/schedule_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/schedule/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/schedule/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/scripts.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/access_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/cluster_status_details.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/compute_stack.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_job_queue_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/grpc_protocol_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/http_protocol_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job_queue_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job_queue_execution_mode.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job_queue_spec.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/protocols.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/rollback_service_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_model.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/service_version_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/servicemodel_list_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/servicemodel_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/system_workload_name.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/tracing_config.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/ux_instance.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service_account/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service_account/_private/service_account_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service_account/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/service_account/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/bytes_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/constants.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/tests/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/tests/test_asyncio.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/tests/test_ray_semver.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/collections.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/snapshot.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/tables.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/telemetry.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/user/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/user/_private/user_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/user/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/user/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/cli_version_check_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/cloud_update_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/cloudformation_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/cluster_debug.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/imports/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/ray_version_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/s3.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/ssh_websocket_proxy.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/user_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/workspace_notification.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/utils/workspace_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/webterminal/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/workspace/__init__.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/workspace/_private/workspace_sdk.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/workspace/commands.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/workspace/models.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale/workspace_utils.py +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale.egg-info/requires.txt +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/requirements.in +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/setup.cfg +0 -0
- {anyscale-0.26.68 → anyscale-0.26.70}/setup.py +0 -0
|
@@ -34,6 +34,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
34
34
|
AdminCreateUser,
|
|
35
35
|
AnyscaleServiceAccount,
|
|
36
36
|
ApiKeyParameters,
|
|
37
|
+
ApplyProductionServiceMultiVersionV2Model,
|
|
37
38
|
ArchiveStatus,
|
|
38
39
|
Cloud,
|
|
39
40
|
CloudDataBucketAccessMode,
|
|
@@ -58,6 +59,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
58
59
|
DecoratedjobqueueListResponse,
|
|
59
60
|
DecoratedlistserviceapimodelListResponse,
|
|
60
61
|
DecoratedProductionServiceV2APIModel,
|
|
62
|
+
DecoratedProductionServiceV2VersionAPIModel,
|
|
61
63
|
DecoratedSession,
|
|
62
64
|
ExperimentalWorkspace,
|
|
63
65
|
GetOrCreateBuildFromImageUriRequest,
|
|
@@ -1053,6 +1055,13 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1053
1055
|
sort_order=sort_order,
|
|
1054
1056
|
)
|
|
1055
1057
|
|
|
1058
|
+
def get_service_versions(
|
|
1059
|
+
self, service_id: str
|
|
1060
|
+
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
1061
|
+
return self._internal_api_client.get_service_versions_api_v2_services_v2_service_id_versions_get(
|
|
1062
|
+
service_id
|
|
1063
|
+
).results
|
|
1064
|
+
|
|
1056
1065
|
@handle_api_exceptions
|
|
1057
1066
|
def get_project(self, project_id: str) -> Project:
|
|
1058
1067
|
return self._internal_api_client.get_project_api_v2_projects_project_id_get(
|
|
@@ -1238,6 +1247,15 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1238
1247
|
).result
|
|
1239
1248
|
return result
|
|
1240
1249
|
|
|
1250
|
+
@handle_api_exceptions
|
|
1251
|
+
def rollout_service_multi_version(
|
|
1252
|
+
self, model: ApplyProductionServiceMultiVersionV2Model
|
|
1253
|
+
) -> DecoratedProductionServiceV2APIModel:
|
|
1254
|
+
result = self._internal_api_client.apply_service_multi_version_api_v2_services_v2_apply_multi_version_put(
|
|
1255
|
+
model
|
|
1256
|
+
).result
|
|
1257
|
+
return result
|
|
1258
|
+
|
|
1241
1259
|
@handle_api_exceptions
|
|
1242
1260
|
def rollback_service(
|
|
1243
1261
|
self, service_id: str, *, max_surge_percent: Optional[int] = None
|
|
@@ -1493,7 +1511,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1493
1511
|
|
|
1494
1512
|
return all_log_chunk_urls, bearer_token
|
|
1495
1513
|
|
|
1496
|
-
def _read_log_lines(
|
|
1514
|
+
def _read_log_lines( # noqa: PLR0912
|
|
1497
1515
|
self,
|
|
1498
1516
|
log_chunk_urls: List[str],
|
|
1499
1517
|
head: bool,
|
|
@@ -1558,6 +1576,8 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1558
1576
|
if line_count == max_lines:
|
|
1559
1577
|
break
|
|
1560
1578
|
|
|
1579
|
+
if not result_lines:
|
|
1580
|
+
return ""
|
|
1561
1581
|
return "\n".join(result_lines) + "\n"
|
|
1562
1582
|
|
|
1563
1583
|
@handle_api_exceptions
|
|
@@ -1584,6 +1604,52 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1584
1604
|
)
|
|
1585
1605
|
return logs
|
|
1586
1606
|
|
|
1607
|
+
@handle_api_exceptions
|
|
1608
|
+
def stream_logs_for_job_run(
|
|
1609
|
+
self, job_run_id: str, next_page_token: Optional[str] = None,
|
|
1610
|
+
) -> Tuple[str, Optional[str]]:
|
|
1611
|
+
"""Stream logs incrementally for a job run with pagination support.
|
|
1612
|
+
|
|
1613
|
+
Args:
|
|
1614
|
+
job_run_id: The ID of the job run to fetch logs for
|
|
1615
|
+
next_page_token: Token for fetching the next page of logs (for incremental streaming)
|
|
1616
|
+
|
|
1617
|
+
Returns:
|
|
1618
|
+
Tuple of (logs, next_page_token) where next_page_token can be used for the next call
|
|
1619
|
+
"""
|
|
1620
|
+
# Fetch only the new log chunks since the last call
|
|
1621
|
+
if next_page_token:
|
|
1622
|
+
# Incremental fetch - get only new chunks
|
|
1623
|
+
log_download_result = self._internal_api_client.get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get(
|
|
1624
|
+
job_id=job_run_id, next_page_token=next_page_token,
|
|
1625
|
+
).result
|
|
1626
|
+
else:
|
|
1627
|
+
# First fetch - get all available chunks
|
|
1628
|
+
log_download_result = self._internal_api_client.get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get(
|
|
1629
|
+
job_id=job_run_id,
|
|
1630
|
+
).result
|
|
1631
|
+
|
|
1632
|
+
# Download and concatenate log chunks
|
|
1633
|
+
log_chunk_urls = [chunk.chunk_url for chunk in log_download_result.log_chunks]
|
|
1634
|
+
bearer_token = log_download_result.bearer_token
|
|
1635
|
+
|
|
1636
|
+
logs = self._read_log_lines(
|
|
1637
|
+
log_chunk_urls,
|
|
1638
|
+
head=False,
|
|
1639
|
+
bearer_token=bearer_token,
|
|
1640
|
+
max_lines=None,
|
|
1641
|
+
parse_json=False,
|
|
1642
|
+
)
|
|
1643
|
+
|
|
1644
|
+
# Return logs and the token for the next page
|
|
1645
|
+
new_next_page_token = (
|
|
1646
|
+
log_download_result.next_page_token
|
|
1647
|
+
if len(log_download_result.log_chunks) > 0
|
|
1648
|
+
else next_page_token
|
|
1649
|
+
)
|
|
1650
|
+
|
|
1651
|
+
return logs, new_next_page_token
|
|
1652
|
+
|
|
1587
1653
|
@handle_api_exceptions
|
|
1588
1654
|
def controller_logs_for_service_version(
|
|
1589
1655
|
self,
|
|
@@ -7,6 +7,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
7
7
|
AdminCreatedUser,
|
|
8
8
|
AdminCreateUser,
|
|
9
9
|
AnyscaleServiceAccount,
|
|
10
|
+
ApplyProductionServiceMultiVersionV2Model,
|
|
10
11
|
Cloud,
|
|
11
12
|
ClusteroperationResponse,
|
|
12
13
|
CollaboratorType,
|
|
@@ -20,6 +21,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
20
21
|
DecoratedjobqueueListResponse,
|
|
21
22
|
DecoratedlistserviceapimodelListResponse,
|
|
22
23
|
DecoratedProductionServiceV2APIModel,
|
|
24
|
+
DecoratedProductionServiceV2VersionAPIModel,
|
|
23
25
|
InternalProductionJob,
|
|
24
26
|
JobQueueSortDirective,
|
|
25
27
|
OrganizationCollaborator,
|
|
@@ -57,7 +59,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
|
57
59
|
# Maybe just make it part of the release process to update it, or fetch the
|
|
58
60
|
# default builds and get the latest one. The best thing to do is probably
|
|
59
61
|
# to populate this in the backend.
|
|
60
|
-
DEFAULT_RAY_VERSION = "2.50.
|
|
62
|
+
DEFAULT_RAY_VERSION = "2.50.1" # RAY_RELEASE_UPDATE: update to latest version
|
|
61
63
|
DEFAULT_PYTHON_VERSION = "py311"
|
|
62
64
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
|
63
65
|
|
|
@@ -381,6 +383,13 @@ class AnyscaleClientInterface(ABC):
|
|
|
381
383
|
"""List projects."""
|
|
382
384
|
raise NotImplementedError
|
|
383
385
|
|
|
386
|
+
@abstractmethod
|
|
387
|
+
def get_service_versions(
|
|
388
|
+
self, service_id: str
|
|
389
|
+
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
390
|
+
"""Get the versions of a service."""
|
|
391
|
+
raise NotImplementedError
|
|
392
|
+
|
|
384
393
|
@abstractmethod
|
|
385
394
|
def create_project(self, project: WriteProject) -> ProjectBase:
|
|
386
395
|
"""Create a project."""
|
|
@@ -470,6 +479,16 @@ class AnyscaleClientInterface(ABC):
|
|
|
470
479
|
"""
|
|
471
480
|
raise NotImplementedError
|
|
472
481
|
|
|
482
|
+
@abstractmethod
|
|
483
|
+
def rollout_service_multi_version(
|
|
484
|
+
self, model: ApplyProductionServiceMultiVersionV2Model
|
|
485
|
+
) -> DecoratedProductionServiceV2APIModel:
|
|
486
|
+
"""Deploy or update the service to use the provided multi-version configs.
|
|
487
|
+
|
|
488
|
+
Returns the service ID.
|
|
489
|
+
"""
|
|
490
|
+
raise NotImplementedError
|
|
491
|
+
|
|
473
492
|
@abstractmethod
|
|
474
493
|
def rollback_service(
|
|
475
494
|
self, service_id: str, *, max_surge_percent: Optional[int] = None
|
{anyscale-0.26.68 → anyscale-0.26.70}/anyscale/_private/anyscale_client/fake_anyscale_client.py
RENAMED
|
@@ -2,7 +2,7 @@ from collections import defaultdict
|
|
|
2
2
|
from datetime import date, datetime
|
|
3
3
|
import logging
|
|
4
4
|
import os
|
|
5
|
-
from typing import DefaultDict, Dict, Generator, List, Optional, Tuple
|
|
5
|
+
from typing import DefaultDict, Dict, Generator, List, Optional, Tuple, Union
|
|
6
6
|
from unittest.mock import Mock
|
|
7
7
|
import uuid
|
|
8
8
|
|
|
@@ -16,6 +16,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
16
16
|
AdminCreatedUser,
|
|
17
17
|
AdminCreateUser,
|
|
18
18
|
AnyscaleServiceAccount,
|
|
19
|
+
ApplyProductionServiceMultiVersionV2Model,
|
|
19
20
|
Cloud,
|
|
20
21
|
CloudProviders,
|
|
21
22
|
ClusterOperation,
|
|
@@ -31,6 +32,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
31
32
|
DecoratedComputeTemplate,
|
|
32
33
|
DecoratedlistserviceapimodelListResponse,
|
|
33
34
|
DecoratedProductionServiceV2APIModel,
|
|
35
|
+
DecoratedProductionServiceV2VersionAPIModel,
|
|
34
36
|
DeletedPlatformFineTunedModel,
|
|
35
37
|
ExperimentalWorkspace,
|
|
36
38
|
FineTunedModel,
|
|
@@ -153,6 +155,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
153
155
|
self._workspace_cluster: Optional[Cluster] = None
|
|
154
156
|
self._workspace_dependency_tracking_enabled: bool = False
|
|
155
157
|
self._services: Dict[str, DecoratedProductionServiceV2APIModel] = {}
|
|
158
|
+
self._versions: Dict[
|
|
159
|
+
str, Dict[str, ProductionServiceV2VersionModel]
|
|
160
|
+
] = defaultdict(dict)
|
|
156
161
|
self._archived_services: Dict[str, DecoratedProductionServiceV2APIModel] = {}
|
|
157
162
|
self._deleted_services: Dict[str, DecoratedProductionServiceV2APIModel] = {}
|
|
158
163
|
self._jobs: Dict[str, ProductionJob] = {}
|
|
@@ -658,6 +663,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
658
663
|
|
|
659
664
|
def update_service(self, model: DecoratedProductionServiceV2APIModel):
|
|
660
665
|
self._services[model.id] = model
|
|
666
|
+
if model.versions is not None:
|
|
667
|
+
for version in model.versions:
|
|
668
|
+
self._versions[model.id][version.id] = version
|
|
661
669
|
|
|
662
670
|
def get_service(
|
|
663
671
|
self,
|
|
@@ -897,7 +905,11 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
897
905
|
return project_id
|
|
898
906
|
|
|
899
907
|
@property
|
|
900
|
-
def rolled_out_model(
|
|
908
|
+
def rolled_out_model(
|
|
909
|
+
self,
|
|
910
|
+
) -> Optional[
|
|
911
|
+
Union[ApplyProductionServiceV2Model, ApplyProductionServiceMultiVersionV2Model]
|
|
912
|
+
]:
|
|
901
913
|
return self._rolled_out_model
|
|
902
914
|
|
|
903
915
|
def rollout_service(
|
|
@@ -917,6 +929,18 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
917
929
|
else:
|
|
918
930
|
service_id = f"service-id-{uuid.uuid4()!s}"
|
|
919
931
|
|
|
932
|
+
primary_version = ProductionServiceV2VersionModel(
|
|
933
|
+
id=str(uuid.uuid4()),
|
|
934
|
+
created_at=datetime.now(),
|
|
935
|
+
version=model.version,
|
|
936
|
+
current_state=ServiceVersionState.RUNNING,
|
|
937
|
+
weight=100,
|
|
938
|
+
build_id=model.build_id,
|
|
939
|
+
compute_config_id=model.compute_config_id,
|
|
940
|
+
ray_serve_config=model.ray_serve_config,
|
|
941
|
+
ray_gcs_external_storage_config=model.ray_gcs_external_storage_config,
|
|
942
|
+
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
943
|
+
)
|
|
920
944
|
service = DecoratedProductionServiceV2APIModel(
|
|
921
945
|
id=service_id,
|
|
922
946
|
name=model.name,
|
|
@@ -925,18 +949,56 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
925
949
|
current_state=ServiceEventCurrentState.STARTING,
|
|
926
950
|
base_url=f"http://{model.name}.fake.url",
|
|
927
951
|
auth_token="fake-auth-token",
|
|
928
|
-
primary_version=
|
|
952
|
+
primary_version=primary_version,
|
|
953
|
+
versions=[primary_version],
|
|
954
|
+
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
955
|
+
)
|
|
956
|
+
self.update_service(service)
|
|
957
|
+
return service
|
|
958
|
+
|
|
959
|
+
def rollout_service_multi_version(
|
|
960
|
+
self, model: ApplyProductionServiceMultiVersionV2Model
|
|
961
|
+
) -> DecoratedProductionServiceV2APIModel:
|
|
962
|
+
self._rolled_out_model = model
|
|
963
|
+
version = model.service_versions[0]
|
|
964
|
+
project_model = self.get_project(version.project_id)
|
|
965
|
+
project = project_model.name if project_model else None
|
|
966
|
+
compute_config = self.get_compute_config(version.compute_config_id)
|
|
967
|
+
cloud_id = compute_config.config.cloud_id if compute_config else None
|
|
968
|
+
cloud_model = self.get_cloud(cloud_id=cloud_id)
|
|
969
|
+
cloud = cloud_model.name if cloud_model else None
|
|
970
|
+
existing_service = self.get_service(version.name, project=project, cloud=cloud)
|
|
971
|
+
if existing_service is not None:
|
|
972
|
+
service_id = existing_service.id
|
|
973
|
+
else:
|
|
974
|
+
service_id = f"service-id-{uuid.uuid4()!s}"
|
|
975
|
+
|
|
976
|
+
service_versions = []
|
|
977
|
+
for version in model.service_versions:
|
|
978
|
+
service_version = ProductionServiceV2VersionModel(
|
|
929
979
|
id=str(uuid.uuid4()),
|
|
930
980
|
created_at=datetime.now(),
|
|
931
|
-
version=
|
|
981
|
+
version=version.version,
|
|
932
982
|
current_state=ServiceVersionState.RUNNING,
|
|
933
|
-
weight=
|
|
934
|
-
build_id=
|
|
935
|
-
compute_config_id=
|
|
936
|
-
ray_serve_config=
|
|
937
|
-
ray_gcs_external_storage_config=
|
|
983
|
+
weight=version.traffic_percent,
|
|
984
|
+
build_id=version.build_id,
|
|
985
|
+
compute_config_id=version.compute_config_id,
|
|
986
|
+
ray_serve_config=version.ray_serve_config,
|
|
987
|
+
ray_gcs_external_storage_config=version.ray_gcs_external_storage_config,
|
|
938
988
|
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
939
|
-
)
|
|
989
|
+
)
|
|
990
|
+
service_versions.append(service_version)
|
|
991
|
+
|
|
992
|
+
service = DecoratedProductionServiceV2APIModel(
|
|
993
|
+
id=service_id,
|
|
994
|
+
name=version.name,
|
|
995
|
+
project_id=version.project_id,
|
|
996
|
+
cloud_id=self.get_cloud_id(compute_config_id=version.compute_config_id),
|
|
997
|
+
current_state=ServiceEventCurrentState.STARTING,
|
|
998
|
+
base_url=f"http://{version.name}.fake.url",
|
|
999
|
+
auth_token="fake-auth-token",
|
|
1000
|
+
primary_version="",
|
|
1001
|
+
versions=service_versions,
|
|
940
1002
|
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
941
1003
|
)
|
|
942
1004
|
self.update_service(service)
|
|
@@ -1603,3 +1665,8 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
1603
1665
|
local_vars_configuration=OPENAPI_NO_VALIDATION,
|
|
1604
1666
|
)
|
|
1605
1667
|
return response
|
|
1668
|
+
|
|
1669
|
+
def get_service_versions(
|
|
1670
|
+
self, service_id: str
|
|
1671
|
+
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
1672
|
+
return list(self._versions[service_id].values())
|
|
@@ -83,7 +83,9 @@ Class | Method | HTTP request | Description
|
|
|
83
83
|
*DefaultApi* | [**alter_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_identity_id_put**](docs/DefaultApi.md#alter_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_identity_id_put) | **PUT** /api/v2/clouds/{cloud_id}/collaborators/users/{identity_id} | Alter Cloud Collaborator
|
|
84
84
|
*DefaultApi* | [**alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put**](docs/DefaultApi.md#alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put) | **PUT** /api/v2/organization_collaborators/{identity_id} | Alter Organization Collaborator
|
|
85
85
|
*DefaultApi* | [**alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put**](docs/DefaultApi.md#alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put) | **PUT** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Alter Project Collaborator
|
|
86
|
+
*DefaultApi* | [**apply_autoscaling_config_update_api_v2_services_v2_service_id_apply_autoscaling_config_update_put**](docs/DefaultApi.md#apply_autoscaling_config_update_api_v2_services_v2_service_id_apply_autoscaling_config_update_put) | **PUT** /api/v2/services-v2/{service_id}/apply_autoscaling_config_update | Apply Autoscaling Config Update
|
|
86
87
|
*DefaultApi* | [**apply_service_api_v2_services_v2_apply_put**](docs/DefaultApi.md#apply_service_api_v2_services_v2_apply_put) | **PUT** /api/v2/services-v2/apply | Apply Service
|
|
88
|
+
*DefaultApi* | [**apply_service_multi_version_api_v2_services_v2_apply_multi_version_put**](docs/DefaultApi.md#apply_service_multi_version_api_v2_services_v2_apply_multi_version_put) | **PUT** /api/v2/services-v2/apply_multi_version | Apply Service Multi Version
|
|
87
89
|
*DefaultApi* | [**archive_cluster_environment_api_v2_application_templates_application_template_id_archive_post**](docs/DefaultApi.md#archive_cluster_environment_api_v2_application_templates_application_template_id_archive_post) | **POST** /api/v2/application_templates/{application_template_id}/archive | Archive Cluster Environment
|
|
88
90
|
*DefaultApi* | [**archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post**](docs/DefaultApi.md#archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post) | **POST** /api/v2/compute_templates/{compute_template_id}/archive | Archive Compute Template
|
|
89
91
|
*DefaultApi* | [**archive_job_api_v2_decorated_ha_jobs_production_job_id_archive_post**](docs/DefaultApi.md#archive_job_api_v2_decorated_ha_jobs_production_job_id_archive_post) | **POST** /api/v2/decorated_ha_jobs/{production_job_id}/archive | Archive Job
|
|
@@ -231,6 +233,7 @@ Class | Method | HTTP request | Description
|
|
|
231
233
|
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/{organization_id}/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard By Organization
|
|
232
234
|
*DefaultApi* | [**get_model_api_v2_llm_models_model_id_get**](docs/DefaultApi.md#get_model_api_v2_llm_models_model_id_get) | **GET** /api/v2/llm/models/{model_id} | Get Model
|
|
233
235
|
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
|
236
|
+
*DefaultApi* | [**get_node_api_v2_cluster_dashboard_node_id_get**](docs/DefaultApi.md#get_node_api_v2_cluster_dashboard_node_id_get) | **GET** /api/v2/cluster_dashboard/{node_id} | Get Node
|
|
234
237
|
*DefaultApi* | [**get_nodes_api_v2_cluster_dashboard_get**](docs/DefaultApi.md#get_nodes_api_v2_cluster_dashboard_get) | **GET** /api/v2/cluster_dashboard/ | Get Nodes
|
|
235
238
|
*DefaultApi* | [**get_oauth_login_url_api_v2_integrations_oauth_login_get**](docs/DefaultApi.md#get_oauth_login_url_api_v2_integrations_oauth_login_get) | **GET** /api/v2/integrations/oauth/login | Get Oauth Login Url
|
|
236
239
|
*DefaultApi* | [**get_operator_events_api_v2_dataset_runs_operator_events_get**](docs/DefaultApi.md#get_operator_events_api_v2_dataset_runs_operator_events_get) | **GET** /api/v2/dataset_runs/operator_events | Get Operator Events
|
|
@@ -270,6 +273,7 @@ Class | Method | HTTP request | Description
|
|
|
270
273
|
*DefaultApi* | [**get_total_usage_api_v2_aggregated_instance_usage_get**](docs/DefaultApi.md#get_total_usage_api_v2_aggregated_instance_usage_get) | **GET** /api/v2/aggregated_instance_usage/ | Get Total Usage
|
|
271
274
|
*DefaultApi* | [**get_train_logs_download_api_v2_train_runs_logs_get**](docs/DefaultApi.md#get_train_logs_download_api_v2_train_runs_logs_get) | **GET** /api/v2/train_runs/logs | Get Train Logs Download
|
|
272
275
|
*DefaultApi* | [**get_train_runs_api_v2_train_runs_get**](docs/DefaultApi.md#get_train_runs_api_v2_train_runs_get) | **GET** /api/v2/train_runs/ | Get Train Runs
|
|
276
|
+
*DefaultApi* | [**get_unified_events_api_v2_events_entity_type_entity_id_events_get**](docs/DefaultApi.md#get_unified_events_api_v2_events_entity_type_entity_id_events_get) | **GET** /api/v2/events/{entity_type}/{entity_id}/events | Get Unified Events
|
|
273
277
|
*DefaultApi* | [**get_user_info_api_v2_userinfo_get**](docs/DefaultApi.md#get_user_info_api_v2_userinfo_get) | **GET** /api/v2/userinfo/ | Get User Info
|
|
274
278
|
*DefaultApi* | [**get_version_api_v2_workspace_templates_template_id_versions_version_id_get**](docs/DefaultApi.md#get_version_api_v2_workspace_templates_template_id_versions_version_id_get) | **GET** /api/v2/workspace_templates/{template_id}/versions/{version_id} | Get Version
|
|
275
279
|
*DefaultApi* | [**get_workos_authorize_url_api_v2_workos_authorize_get**](docs/DefaultApi.md#get_workos_authorize_url_api_v2_workos_authorize_get) | **GET** /api/v2/workos/authorize | Get Workos Authorize Url
|
|
@@ -458,6 +462,8 @@ Class | Method | HTTP request | Description
|
|
|
458
462
|
- [AppconfigResponse](docs/AppconfigResponse.md)
|
|
459
463
|
- [ApplicationType](docs/ApplicationType.md)
|
|
460
464
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
465
|
+
- [ApplyAutoscalingConfigUpdateModel](docs/ApplyAutoscalingConfigUpdateModel.md)
|
|
466
|
+
- [ApplyProductionServiceMultiVersionV2Model](docs/ApplyProductionServiceMultiVersionV2Model.md)
|
|
461
467
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
462
468
|
- [ArchiveStatus](docs/ArchiveStatus.md)
|
|
463
469
|
- [AttachMachinePoolToCloudRequest](docs/AttachMachinePoolToCloudRequest.md)
|
|
@@ -530,6 +536,7 @@ Class | Method | HTTP request | Description
|
|
|
530
536
|
- [CloudcollaboratorListResponse](docs/CloudcollaboratorListResponse.md)
|
|
531
537
|
- [ClouddatabucketpresigneduploadinfoResponse](docs/ClouddatabucketpresigneduploadinfoResponse.md)
|
|
532
538
|
- [ClouddatabucketpresignedurlresponseResponse](docs/ClouddatabucketpresignedurlresponseResponse.md)
|
|
539
|
+
- [ClouddeploymentResponse](docs/ClouddeploymentResponse.md)
|
|
533
540
|
- [ClouddeploymentconfigResponse](docs/ClouddeploymentconfigResponse.md)
|
|
534
541
|
- [CloudoverviewdashboardResponse](docs/CloudoverviewdashboardResponse.md)
|
|
535
542
|
- [CloudregionandzonesResponse](docs/CloudregionandzonesResponse.md)
|
|
@@ -551,6 +558,7 @@ Class | Method | HTTP request | Description
|
|
|
551
558
|
- [ClusterStatusDetails](docs/ClusterStatusDetails.md)
|
|
552
559
|
- [ClusterauthresponseResponse](docs/ClusterauthresponseResponse.md)
|
|
553
560
|
- [ClusterdashboardnodeListResponse](docs/ClusterdashboardnodeListResponse.md)
|
|
561
|
+
- [ClusterdashboardnodeResponse](docs/ClusterdashboardnodeResponse.md)
|
|
554
562
|
- [ClustereventListResponse](docs/ClustereventListResponse.md)
|
|
555
563
|
- [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
|
|
556
564
|
- [ClusteroperationResponse](docs/ClusteroperationResponse.md)
|
|
@@ -718,6 +726,7 @@ Class | Method | HTTP request | Description
|
|
|
718
726
|
- [EmailVerificationRequest](docs/EmailVerificationRequest.md)
|
|
719
727
|
- [EmailVerificationResponse](docs/EmailVerificationResponse.md)
|
|
720
728
|
- [EmailverificationresponseResponse](docs/EmailverificationresponseResponse.md)
|
|
729
|
+
- [EntityType](docs/EntityType.md)
|
|
721
730
|
- [Error](docs/Error.md)
|
|
722
731
|
- [EventLevel](docs/EventLevel.md)
|
|
723
732
|
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
|
@@ -746,7 +755,6 @@ Class | Method | HTTP request | Description
|
|
|
746
755
|
- [GrpcProtocolConfig](docs/GrpcProtocolConfig.md)
|
|
747
756
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
748
757
|
- [HaJobErrorTypes](docs/HaJobErrorTypes.md)
|
|
749
|
-
- [HaJobEventLevel](docs/HaJobEventLevel.md)
|
|
750
758
|
- [HaJobEventOrigin](docs/HaJobEventOrigin.md)
|
|
751
759
|
- [HaJobGoalStates](docs/HaJobGoalStates.md)
|
|
752
760
|
- [HaJobStates](docs/HaJobStates.md)
|
|
@@ -767,6 +775,7 @@ Class | Method | HTTP request | Description
|
|
|
767
775
|
- [InternalproductionjobResponse](docs/InternalproductionjobResponse.md)
|
|
768
776
|
- [JobAccess](docs/JobAccess.md)
|
|
769
777
|
- [JobDetails](docs/JobDetails.md)
|
|
778
|
+
- [JobEventFields](docs/JobEventFields.md)
|
|
770
779
|
- [JobQueue](docs/JobQueue.md)
|
|
771
780
|
- [JobQueueConfig](docs/JobQueueConfig.md)
|
|
772
781
|
- [JobQueueExecutionMode](docs/JobQueueExecutionMode.md)
|
|
@@ -836,6 +845,7 @@ Class | Method | HTTP request | Description
|
|
|
836
845
|
- [MachinePoolSearchQuery](docs/MachinePoolSearchQuery.md)
|
|
837
846
|
- [MachinePoolSearchResult](docs/MachinePoolSearchResult.md)
|
|
838
847
|
- [MachineStateInfo](docs/MachineStateInfo.md)
|
|
848
|
+
- [MachineTypePartitionFilter](docs/MachineTypePartitionFilter.md)
|
|
839
849
|
- [MachinepoolsearchresultListResponse](docs/MachinepoolsearchresultListResponse.md)
|
|
840
850
|
- [MachinestateinfoListResponse](docs/MachinestateinfoListResponse.md)
|
|
841
851
|
- [Metric](docs/Metric.md)
|
|
@@ -875,9 +885,7 @@ Class | Method | HTTP request | Description
|
|
|
875
885
|
- [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
|
|
876
886
|
- [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
|
|
877
887
|
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
|
878
|
-
- [OAuthConnectionResponse](docs/OAuthConnectionResponse.md)
|
|
879
888
|
- [OauthAuthUrlResponse](docs/OauthAuthUrlResponse.md)
|
|
880
|
-
- [OauthconnectionresponseResponse](docs/OauthconnectionresponseResponse.md)
|
|
881
889
|
- [ObjectStorage](docs/ObjectStorage.md)
|
|
882
890
|
- [OperationError](docs/OperationError.md)
|
|
883
891
|
- [OperationProgress](docs/OperationProgress.md)
|
|
@@ -988,7 +996,7 @@ Class | Method | HTTP request | Description
|
|
|
988
996
|
- [ServersessiontokenResponse](docs/ServersessiontokenResponse.md)
|
|
989
997
|
- [ServiceConfig](docs/ServiceConfig.md)
|
|
990
998
|
- [ServiceEventCurrentState](docs/ServiceEventCurrentState.md)
|
|
991
|
-
- [
|
|
999
|
+
- [ServiceEventFields](docs/ServiceEventFields.md)
|
|
992
1000
|
- [ServiceEventOrigin](docs/ServiceEventOrigin.md)
|
|
993
1001
|
- [ServiceEventScope](docs/ServiceEventScope.md)
|
|
994
1002
|
- [ServiceEventScopeFilter](docs/ServiceEventScopeFilter.md)
|
|
@@ -1065,9 +1073,12 @@ Class | Method | HTTP request | Description
|
|
|
1065
1073
|
- [TryLoginEmailResponse](docs/TryLoginEmailResponse.md)
|
|
1066
1074
|
- [TryloginemailresponseResponse](docs/TryloginemailresponseResponse.md)
|
|
1067
1075
|
- [UXInstance](docs/UXInstance.md)
|
|
1076
|
+
- [UnifiedEvent](docs/UnifiedEvent.md)
|
|
1068
1077
|
- [UnifiedJobSortField](docs/UnifiedJobSortField.md)
|
|
1069
1078
|
- [UnifiedJobStatus](docs/UnifiedJobStatus.md)
|
|
1070
1079
|
- [UnifiedJobType](docs/UnifiedJobType.md)
|
|
1080
|
+
- [UnifiedOriginFilter](docs/UnifiedOriginFilter.md)
|
|
1081
|
+
- [UnifiedeventListResponse](docs/UnifiedeventListResponse.md)
|
|
1071
1082
|
- [UpdateCloudCollaborator](docs/UpdateCloudCollaborator.md)
|
|
1072
1083
|
- [UpdateCloudWithCloudResource](docs/UpdateCloudWithCloudResource.md)
|
|
1073
1084
|
- [UpdateCloudWithCloudResourceGCP](docs/UpdateCloudWithCloudResourceGCP.md)
|
|
@@ -1121,6 +1132,7 @@ Class | Method | HTTP request | Description
|
|
|
1121
1132
|
- [WorkspaceDataplaneArtifacts](docs/WorkspaceDataplaneArtifacts.md)
|
|
1122
1133
|
- [WorkspaceDataplaneProxiedArtifacts](docs/WorkspaceDataplaneProxiedArtifacts.md)
|
|
1123
1134
|
- [WorkspaceEvent](docs/WorkspaceEvent.md)
|
|
1135
|
+
- [WorkspaceEventFields](docs/WorkspaceEventFields.md)
|
|
1124
1136
|
- [WorkspaceEventSource](docs/WorkspaceEventSource.md)
|
|
1125
1137
|
- [WorkspaceEventSourceFilter](docs/WorkspaceEventSourceFilter.md)
|
|
1126
1138
|
- [WorkspaceReadme](docs/WorkspaceReadme.md)
|
|
@@ -56,6 +56,8 @@ from openapi_client.models.appconfig_list_response import AppconfigListResponse
|
|
|
56
56
|
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
|
+
from openapi_client.models.apply_autoscaling_config_update_model import ApplyAutoscalingConfigUpdateModel
|
|
60
|
+
from openapi_client.models.apply_production_service_multi_version_v2_model import ApplyProductionServiceMultiVersionV2Model
|
|
59
61
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
60
62
|
from openapi_client.models.archive_status import ArchiveStatus
|
|
61
63
|
from openapi_client.models.attach_machine_pool_to_cloud_request import AttachMachinePoolToCloudRequest
|
|
@@ -128,6 +130,7 @@ from openapi_client.models.cloud_with_cloud_resource_gcp import CloudWithCloudRe
|
|
|
128
130
|
from openapi_client.models.cloudcollaborator_list_response import CloudcollaboratorListResponse
|
|
129
131
|
from openapi_client.models.clouddatabucketpresigneduploadinfo_response import ClouddatabucketpresigneduploadinfoResponse
|
|
130
132
|
from openapi_client.models.clouddatabucketpresignedurlresponse_response import ClouddatabucketpresignedurlresponseResponse
|
|
133
|
+
from openapi_client.models.clouddeployment_response import ClouddeploymentResponse
|
|
131
134
|
from openapi_client.models.clouddeploymentconfig_response import ClouddeploymentconfigResponse
|
|
132
135
|
from openapi_client.models.cloudoverviewdashboard_response import CloudoverviewdashboardResponse
|
|
133
136
|
from openapi_client.models.cloudregionandzones_response import CloudregionandzonesResponse
|
|
@@ -149,6 +152,7 @@ from openapi_client.models.cluster_status import ClusterStatus
|
|
|
149
152
|
from openapi_client.models.cluster_status_details import ClusterStatusDetails
|
|
150
153
|
from openapi_client.models.clusterauthresponse_response import ClusterauthresponseResponse
|
|
151
154
|
from openapi_client.models.clusterdashboardnode_list_response import ClusterdashboardnodeListResponse
|
|
155
|
+
from openapi_client.models.clusterdashboardnode_response import ClusterdashboardnodeResponse
|
|
152
156
|
from openapi_client.models.clusterevent_list_response import ClustereventListResponse
|
|
153
157
|
from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
|
|
154
158
|
from openapi_client.models.clusteroperation_response import ClusteroperationResponse
|
|
@@ -316,6 +320,7 @@ from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResou
|
|
|
316
320
|
from openapi_client.models.email_verification_request import EmailVerificationRequest
|
|
317
321
|
from openapi_client.models.email_verification_response import EmailVerificationResponse
|
|
318
322
|
from openapi_client.models.emailverificationresponse_response import EmailverificationresponseResponse
|
|
323
|
+
from openapi_client.models.entity_type import EntityType
|
|
319
324
|
from openapi_client.models.error import Error
|
|
320
325
|
from openapi_client.models.event_level import EventLevel
|
|
321
326
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
|
@@ -344,7 +349,6 @@ from openapi_client.models.grafana_dashboard import GrafanaDashboard
|
|
|
344
349
|
from openapi_client.models.grpc_protocol_config import GrpcProtocolConfig
|
|
345
350
|
from openapi_client.models.http_validation_error import HTTPValidationError
|
|
346
351
|
from openapi_client.models.ha_job_error_types import HaJobErrorTypes
|
|
347
|
-
from openapi_client.models.ha_job_event_level import HaJobEventLevel
|
|
348
352
|
from openapi_client.models.ha_job_event_origin import HaJobEventOrigin
|
|
349
353
|
from openapi_client.models.ha_job_goal_states import HaJobGoalStates
|
|
350
354
|
from openapi_client.models.ha_job_states import HaJobStates
|
|
@@ -365,6 +369,7 @@ from openapi_client.models.internal_production_job import InternalProductionJob
|
|
|
365
369
|
from openapi_client.models.internalproductionjob_response import InternalproductionjobResponse
|
|
366
370
|
from openapi_client.models.job_access import JobAccess
|
|
367
371
|
from openapi_client.models.job_details import JobDetails
|
|
372
|
+
from openapi_client.models.job_event_fields import JobEventFields
|
|
368
373
|
from openapi_client.models.job_queue import JobQueue
|
|
369
374
|
from openapi_client.models.job_queue_config import JobQueueConfig
|
|
370
375
|
from openapi_client.models.job_queue_execution_mode import JobQueueExecutionMode
|
|
@@ -434,6 +439,7 @@ from openapi_client.models.machine_pool import MachinePool
|
|
|
434
439
|
from openapi_client.models.machine_pool_search_query import MachinePoolSearchQuery
|
|
435
440
|
from openapi_client.models.machine_pool_search_result import MachinePoolSearchResult
|
|
436
441
|
from openapi_client.models.machine_state_info import MachineStateInfo
|
|
442
|
+
from openapi_client.models.machine_type_partition_filter import MachineTypePartitionFilter
|
|
437
443
|
from openapi_client.models.machinepoolsearchresult_list_response import MachinepoolsearchresultListResponse
|
|
438
444
|
from openapi_client.models.machinestateinfo_list_response import MachinestateinfoListResponse
|
|
439
445
|
from openapi_client.models.metric import Metric
|
|
@@ -473,9 +479,7 @@ from openapi_client.models.nodemetricsresponse_response import Nodemetricsrespon
|
|
|
473
479
|
from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
|
|
474
480
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
|
475
481
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
|
476
|
-
from openapi_client.models.o_auth_connection_response import OAuthConnectionResponse
|
|
477
482
|
from openapi_client.models.oauth_auth_url_response import OauthAuthUrlResponse
|
|
478
|
-
from openapi_client.models.oauthconnectionresponse_response import OauthconnectionresponseResponse
|
|
479
483
|
from openapi_client.models.object_storage import ObjectStorage
|
|
480
484
|
from openapi_client.models.operation_error import OperationError
|
|
481
485
|
from openapi_client.models.operation_progress import OperationProgress
|
|
@@ -586,7 +590,7 @@ from openapi_client.models.server_session_token import ServerSessionToken
|
|
|
586
590
|
from openapi_client.models.serversessiontoken_response import ServersessiontokenResponse
|
|
587
591
|
from openapi_client.models.service_config import ServiceConfig
|
|
588
592
|
from openapi_client.models.service_event_current_state import ServiceEventCurrentState
|
|
589
|
-
from openapi_client.models.
|
|
593
|
+
from openapi_client.models.service_event_fields import ServiceEventFields
|
|
590
594
|
from openapi_client.models.service_event_origin import ServiceEventOrigin
|
|
591
595
|
from openapi_client.models.service_event_scope import ServiceEventScope
|
|
592
596
|
from openapi_client.models.service_event_scope_filter import ServiceEventScopeFilter
|
|
@@ -663,9 +667,12 @@ from openapi_client.models.trainrun_list_response import TrainrunListResponse
|
|
|
663
667
|
from openapi_client.models.try_login_email_response import TryLoginEmailResponse
|
|
664
668
|
from openapi_client.models.tryloginemailresponse_response import TryloginemailresponseResponse
|
|
665
669
|
from openapi_client.models.ux_instance import UXInstance
|
|
670
|
+
from openapi_client.models.unified_event import UnifiedEvent
|
|
666
671
|
from openapi_client.models.unified_job_sort_field import UnifiedJobSortField
|
|
667
672
|
from openapi_client.models.unified_job_status import UnifiedJobStatus
|
|
668
673
|
from openapi_client.models.unified_job_type import UnifiedJobType
|
|
674
|
+
from openapi_client.models.unified_origin_filter import UnifiedOriginFilter
|
|
675
|
+
from openapi_client.models.unifiedevent_list_response import UnifiedeventListResponse
|
|
669
676
|
from openapi_client.models.update_cloud_collaborator import UpdateCloudCollaborator
|
|
670
677
|
from openapi_client.models.update_cloud_with_cloud_resource import UpdateCloudWithCloudResource
|
|
671
678
|
from openapi_client.models.update_cloud_with_cloud_resource_gcp import UpdateCloudWithCloudResourceGCP
|
|
@@ -719,6 +726,7 @@ from openapi_client.models.workspace_dataplane_artifact import WorkspaceDataplan
|
|
|
719
726
|
from openapi_client.models.workspace_dataplane_artifacts import WorkspaceDataplaneArtifacts
|
|
720
727
|
from openapi_client.models.workspace_dataplane_proxied_artifacts import WorkspaceDataplaneProxiedArtifacts
|
|
721
728
|
from openapi_client.models.workspace_event import WorkspaceEvent
|
|
729
|
+
from openapi_client.models.workspace_event_fields import WorkspaceEventFields
|
|
722
730
|
from openapi_client.models.workspace_event_source import WorkspaceEventSource
|
|
723
731
|
from openapi_client.models.workspace_event_source_filter import WorkspaceEventSourceFilter
|
|
724
732
|
from openapi_client.models.workspace_readme import WorkspaceReadme
|