anyscale 0.26.69__py3-none-any.whl → 0.26.71__py3-none-any.whl
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/_private/anyscale_client/anyscale_client.py +126 -3
- anyscale/_private/anyscale_client/common.py +51 -2
- anyscale/_private/anyscale_client/fake_anyscale_client.py +103 -11
- anyscale/client/README.md +43 -4
- anyscale/client/openapi_client/__init__.py +30 -4
- anyscale/client/openapi_client/api/default_api.py +1769 -27
- anyscale/client/openapi_client/models/__init__.py +30 -4
- anyscale/client/openapi_client/models/api_key_info.py +29 -3
- anyscale/client/openapi_client/models/apply_autoscaling_config_update_model.py +350 -0
- anyscale/client/openapi_client/models/apply_multi_version_update_weights_update_model.py +152 -0
- anyscale/client/openapi_client/models/apply_production_service_multi_version_v2_model.py +207 -0
- anyscale/client/openapi_client/models/apply_production_service_v2_model.py +31 -3
- anyscale/client/openapi_client/models/apply_version_weight_update_model.py +181 -0
- anyscale/client/openapi_client/models/backend_server_api_product_models_catalog_client_models_table_metadata.py +546 -0
- anyscale/client/openapi_client/models/backend_server_api_product_models_data_catalogs_table_metadata.py +178 -0
- anyscale/client/openapi_client/models/baseimagesenum.py +139 -1
- anyscale/client/openapi_client/models/catalog_metadata.py +150 -0
- anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py +2 -1
- anyscale/client/openapi_client/models/{oauthconnectionresponse_response.py → clouddeployment_response.py} +11 -11
- anyscale/client/openapi_client/models/column_info.py +265 -0
- anyscale/client/openapi_client/models/compute_node_type.py +29 -1
- anyscale/client/openapi_client/models/connection_metadata.py +206 -0
- anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
- anyscale/client/openapi_client/models/create_workspace_from_template.py +29 -1
- anyscale/client/openapi_client/models/create_workspace_template_version.py +59 -3
- anyscale/client/openapi_client/models/data_catalog.py +45 -31
- anyscale/client/openapi_client/models/data_catalog_connection.py +74 -58
- anyscale/client/openapi_client/models/{ha_job_event_level.py → data_catalog_object_type.py} +7 -8
- anyscale/client/openapi_client/models/data_catalog_schema.py +324 -0
- anyscale/client/openapi_client/models/data_catalog_table.py +437 -0
- anyscale/client/openapi_client/models/data_catalog_volume.py +437 -0
- anyscale/client/openapi_client/models/datacatalogschema_list_response.py +147 -0
- anyscale/client/openapi_client/models/datacatalogtable_list_response.py +147 -0
- anyscale/client/openapi_client/models/datacatalogvolume_list_response.py +147 -0
- anyscale/client/openapi_client/models/decorated_list_service_api_model.py +58 -1
- anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +60 -3
- anyscale/client/openapi_client/models/decorated_serve_deployment.py +27 -1
- anyscale/client/openapi_client/models/decorated_service_event_api_model.py +3 -3
- anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_response.py +121 -0
- anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +33 -5
- anyscale/client/openapi_client/models/describe_machine_pool_requests_filters.py +33 -5
- anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +33 -5
- anyscale/client/openapi_client/models/{service_event_level.py → entity_type.py} +9 -9
- anyscale/client/openapi_client/models/event_level.py +2 -1
- anyscale/client/openapi_client/models/job_event_fields.py +206 -0
- anyscale/client/openapi_client/models/machine_type_partition_filter.py +152 -0
- anyscale/client/openapi_client/models/partition_info.py +30 -1
- anyscale/client/openapi_client/models/physical_resources.py +178 -0
- anyscale/client/openapi_client/models/production_job_event.py +3 -3
- anyscale/client/openapi_client/models/rollout_strategy.py +2 -1
- anyscale/client/openapi_client/models/schema_metadata.py +150 -0
- anyscale/client/openapi_client/models/service_event_fields.py +318 -0
- anyscale/client/openapi_client/models/sso_config.py +18 -18
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +139 -1
- anyscale/client/openapi_client/models/table_data_preview.py +209 -0
- anyscale/client/openapi_client/models/task_summary_config.py +29 -3
- anyscale/client/openapi_client/models/task_table_config.py +29 -3
- anyscale/client/openapi_client/models/unified_event.py +377 -0
- anyscale/client/openapi_client/models/unified_origin_filter.py +113 -0
- anyscale/client/openapi_client/models/unifiedevent_list_response.py +147 -0
- anyscale/client/openapi_client/models/volume_metadata.py +150 -0
- anyscale/client/openapi_client/models/worker_node_type.py +29 -1
- anyscale/client/openapi_client/models/workspace_event_fields.py +122 -0
- anyscale/client/openapi_client/models/workspace_template_version.py +58 -1
- anyscale/client/openapi_client/models/workspace_template_version_data_object.py +58 -1
- anyscale/cloud/models.py +2 -2
- anyscale/commands/cloud_commands.py +133 -2
- anyscale/commands/job_commands.py +121 -1
- anyscale/commands/job_queue_commands.py +99 -2
- anyscale/commands/service_commands.py +267 -67
- anyscale/commands/setup_k8s.py +546 -31
- anyscale/commands/util.py +104 -1
- anyscale/commands/workspace_commands.py +123 -5
- anyscale/commands/workspace_commands_v2.py +17 -1
- anyscale/compute_config/_private/compute_config_sdk.py +25 -12
- anyscale/compute_config/models.py +15 -0
- anyscale/controllers/cloud_controller.py +15 -2
- anyscale/controllers/job_controller.py +12 -0
- anyscale/controllers/kubernetes_verifier.py +80 -66
- anyscale/controllers/workspace_controller.py +67 -5
- anyscale/job/_private/job_sdk.py +50 -2
- anyscale/job/commands.py +3 -0
- anyscale/job/models.py +16 -0
- anyscale/job_queue/__init__.py +37 -1
- anyscale/job_queue/_private/job_queue_sdk.py +28 -1
- anyscale/job_queue/commands.py +61 -1
- anyscale/sdk/anyscale_client/__init__.py +1 -0
- anyscale/sdk/anyscale_client/api/default_api.py +12 -2
- anyscale/sdk/anyscale_client/models/__init__.py +1 -0
- anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +31 -3
- anyscale/sdk/anyscale_client/models/apply_service_model.py +31 -3
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +139 -1
- anyscale/sdk/anyscale_client/models/compute_node_type.py +29 -1
- anyscale/sdk/anyscale_client/models/physical_resources.py +178 -0
- anyscale/sdk/anyscale_client/models/rollout_strategy.py +2 -1
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +139 -1
- anyscale/sdk/anyscale_client/models/worker_node_type.py +29 -1
- anyscale/service/__init__.py +51 -3
- anyscale/service/_private/service_sdk.py +481 -58
- anyscale/service/commands.py +90 -4
- anyscale/service/models.py +56 -0
- anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale/version.py +1 -1
- anyscale/workspace/_private/workspace_sdk.py +1 -0
- anyscale/workspace/models.py +19 -0
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/METADATA +1 -1
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/RECORD +112 -85
- anyscale/client/openapi_client/models/o_auth_connection_response.py +0 -229
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/WHEEL +0 -0
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.69.dist-info → anyscale-0.26.71.dist-info}/top_level.txt +0 -0
anyscale/client/README.md
CHANGED
|
@@ -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
|
|
@@ -147,6 +149,7 @@ Class | Method | HTTP request | Description
|
|
|
147
149
|
*DefaultApi* | [**delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete**](docs/DefaultApi.md#delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete) | **DELETE** /api/v2/resource_quotas/{resource_quota_id} | Delete Resource Quota
|
|
148
150
|
*DefaultApi* | [**delete_resource_tags_api_v2_tags_resource_delete**](docs/DefaultApi.md#delete_resource_tags_api_v2_tags_resource_delete) | **DELETE** /api/v2/tags/resource | Delete Resource Tags
|
|
149
151
|
*DefaultApi* | [**delete_service_api_v2_services_v2_service_id_delete**](docs/DefaultApi.md#delete_service_api_v2_services_v2_service_id_delete) | **DELETE** /api/v2/services-v2/{service_id} | Delete Service
|
|
152
|
+
*DefaultApi* | [**delete_template_api_v2_workspace_templates_template_id_delete**](docs/DefaultApi.md#delete_template_api_v2_workspace_templates_template_id_delete) | **DELETE** /api/v2/workspace_templates/{template_id} | Delete Template
|
|
150
153
|
*DefaultApi* | [**delete_workspace_api_v2_experimental_workspaces_workspace_id_delete**](docs/DefaultApi.md#delete_workspace_api_v2_experimental_workspaces_workspace_id_delete) | **DELETE** /api/v2/experimental_workspaces/{workspace_id} | Delete Workspace
|
|
151
154
|
*DefaultApi* | [**describe_machine_pool_api_v2_machine_pools_describe_post**](docs/DefaultApi.md#describe_machine_pool_api_v2_machine_pools_describe_post) | **POST** /api/v2/machine_pools/describe | Describe Machine Pool
|
|
152
155
|
*DefaultApi* | [**describe_machine_pool_machines_api_v2_machine_pools_describe_machines_post**](docs/DefaultApi.md#describe_machine_pool_machines_api_v2_machine_pools_describe_machines_post) | **POST** /api/v2/machine_pools/describe_machines | Describe Machine Pool Machines
|
|
@@ -167,6 +170,7 @@ Class | Method | HTTP request | Description
|
|
|
167
170
|
*DefaultApi* | [**fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post**](docs/DefaultApi.md#fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post) | **POST** /api/v2/aggregated_instance_usage/project | Fetch Usage Group By Project
|
|
168
171
|
*DefaultApi* | [**fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post**](docs/DefaultApi.md#fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post) | **POST** /api/v2/aggregated_instance_usage/user | Fetch Usage Group By User
|
|
169
172
|
*DefaultApi* | [**find_cloud_by_name_api_v2_clouds_find_by_name_post**](docs/DefaultApi.md#find_cloud_by_name_api_v2_clouds_find_by_name_post) | **POST** /api/v2/clouds/find_by_name | Find Cloud By Name
|
|
173
|
+
*DefaultApi* | [**find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post**](docs/DefaultApi.md#find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post) | **POST** /api/v2/clouds/{cloud_id}/find_cloud_resource_by_name | Find Cloud Resource By Name
|
|
170
174
|
*DefaultApi* | [**find_dataset_api_v2_datasets_find_get**](docs/DefaultApi.md#find_dataset_api_v2_datasets_find_get) | **GET** /api/v2/datasets/find | Find Dataset
|
|
171
175
|
*DefaultApi* | [**find_project_by_project_name_api_v2_projects_find_by_name_get**](docs/DefaultApi.md#find_project_by_project_name_api_v2_projects_find_by_name_get) | **GET** /api/v2/projects/find_by_name | Find Project By Project Name
|
|
172
176
|
*DefaultApi* | [**finish_session_command_api_v2_session_commands_session_command_id_finish_post**](docs/DefaultApi.md#finish_session_command_api_v2_session_commands_session_command_id_finish_post) | **POST** /api/v2/session_commands/{session_command_id}/finish | Finish Session Command
|
|
@@ -253,6 +257,7 @@ Class | Method | HTTP request | Description
|
|
|
253
257
|
*DefaultApi* | [**get_service_api_v2_services_v2_service_id_get**](docs/DefaultApi.md#get_service_api_v2_services_v2_service_id_get) | **GET** /api/v2/services-v2/{service_id} | Get Service
|
|
254
258
|
*DefaultApi* | [**get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get**](docs/DefaultApi.md#get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get) | **GET** /api/v2/services-v2/events/{event_id}/verbose_message | Get Service Event Verbose Message
|
|
255
259
|
*DefaultApi* | [**get_service_events_api_v2_services_v2_service_id_events_get**](docs/DefaultApi.md#get_service_events_api_v2_services_v2_service_id_events_get) | **GET** /api/v2/services-v2/{service_id}/events | Get Service Events
|
|
260
|
+
*DefaultApi* | [**get_service_version_api_v2_services_v2_service_id_versions_service_version_name_get**](docs/DefaultApi.md#get_service_version_api_v2_services_v2_service_id_versions_service_version_name_get) | **GET** /api/v2/services-v2/{service_id}/versions/{service_version_name} | Get Service Version
|
|
256
261
|
*DefaultApi* | [**get_service_versions_api_v2_services_v2_service_id_versions_get**](docs/DefaultApi.md#get_service_versions_api_v2_services_v2_service_id_versions_get) | **GET** /api/v2/services-v2/{service_id}/versions | Get Service Versions
|
|
257
262
|
*DefaultApi* | [**get_session_api_v2_sessions_session_id_get**](docs/DefaultApi.md#get_session_api_v2_sessions_session_id_get) | **GET** /api/v2/sessions/{session_id} | Get Session
|
|
258
263
|
*DefaultApi* | [**get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get**](docs/DefaultApi.md#get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get) | **GET** /api/v2/logs/session_command_logs/{session_id}/{session_command_id} | Get Session Command Logs Download
|
|
@@ -260,6 +265,8 @@ Class | Method | HTTP request | Description
|
|
|
260
265
|
*DefaultApi* | [**get_session_head_ip_api_v2_sessions_session_id_head_ip_get**](docs/DefaultApi.md#get_session_head_ip_api_v2_sessions_session_id_head_ip_get) | **GET** /api/v2/sessions/{session_id}/head_ip | Get Session Head Ip
|
|
261
266
|
*DefaultApi* | [**get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get**](docs/DefaultApi.md#get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get) | **GET** /api/v2/sessions/{session_id}/ssh_key | Get Session Ssh Key
|
|
262
267
|
*DefaultApi* | [**get_startup_logs_api_v2_sessions_session_id_startup_logs_get**](docs/DefaultApi.md#get_startup_logs_api_v2_sessions_session_id_startup_logs_get) | **GET** /api/v2/sessions/{session_id}/startup_logs | Get Startup Logs
|
|
268
|
+
*DefaultApi* | [**get_table_metadata_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_metadata_get**](docs/DefaultApi.md#get_table_metadata_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_metadata_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables/{table_id}/metadata | Get Table Metadata
|
|
269
|
+
*DefaultApi* | [**get_table_preview_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_preview_get**](docs/DefaultApi.md#get_table_preview_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_preview_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables/{table_id}/preview | Get Table Preview
|
|
263
270
|
*DefaultApi* | [**get_tags_for_resource_api_v2_tags_resource_get**](docs/DefaultApi.md#get_tags_for_resource_api_v2_tags_resource_get) | **GET** /api/v2/tags/resource | Get Tags For Resource
|
|
264
271
|
*DefaultApi* | [**get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get**](docs/DefaultApi.md#get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_exception | Get Task Exception Aggregates
|
|
265
272
|
*DefaultApi* | [**get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get**](docs/DefaultApi.md#get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_function | Get Task Function Aggregates
|
|
@@ -271,6 +278,7 @@ Class | Method | HTTP request | Description
|
|
|
271
278
|
*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
|
|
272
279
|
*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
|
|
273
280
|
*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
|
|
281
|
+
*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
|
|
274
282
|
*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
|
|
275
283
|
*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
|
|
276
284
|
*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
|
|
@@ -322,11 +330,14 @@ Class | Method | HTTP request | Description
|
|
|
322
330
|
*DefaultApi* | [**list_projects_api_v2_projects_get**](docs/DefaultApi.md#list_projects_api_v2_projects_get) | **GET** /api/v2/projects/ | List Projects
|
|
323
331
|
*DefaultApi* | [**list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get**](docs/DefaultApi.md#list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get) | **GET** /api/v2/tasks_dashboard/list_ray_sessions | List Ray Sessions
|
|
324
332
|
*DefaultApi* | [**list_recommended_workspace_templates_api_v2_experimental_workspaces_templates_recommended_get**](docs/DefaultApi.md#list_recommended_workspace_templates_api_v2_experimental_workspaces_templates_recommended_get) | **GET** /api/v2/experimental_workspaces/templates/recommended | List Recommended Workspace Templates
|
|
333
|
+
*DefaultApi* | [**list_schemas_in_catalog_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_get**](docs/DefaultApi.md#list_schemas_in_catalog_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas | List Schemas In Catalog
|
|
325
334
|
*DefaultApi* | [**list_services_api_v2_services_v2_get**](docs/DefaultApi.md#list_services_api_v2_services_v2_get) | **GET** /api/v2/services-v2/ | List Services
|
|
326
335
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
|
336
|
+
*DefaultApi* | [**list_tables_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_get**](docs/DefaultApi.md#list_tables_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables | List Tables In Schema
|
|
327
337
|
*DefaultApi* | [**list_template_versions_api_v2_workspace_templates_template_id_versions_get**](docs/DefaultApi.md#list_template_versions_api_v2_workspace_templates_template_id_versions_get) | **GET** /api/v2/workspace_templates/{template_id}/versions | List Template Versions
|
|
328
338
|
*DefaultApi* | [**list_templates_api_v2_workspace_templates_get**](docs/DefaultApi.md#list_templates_api_v2_workspace_templates_get) | **GET** /api/v2/workspace_templates/ | List Templates
|
|
329
339
|
*DefaultApi* | [**list_values_api_v2_tags_values_get**](docs/DefaultApi.md#list_values_api_v2_tags_values_get) | **GET** /api/v2/tags/values | List Values
|
|
340
|
+
*DefaultApi* | [**list_volumes_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_volumes_get**](docs/DefaultApi.md#list_volumes_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_volumes_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/volumes | List Volumes In Schema
|
|
330
341
|
*DefaultApi* | [**list_workspace_templates_api_v2_experimental_workspaces_templates_get**](docs/DefaultApi.md#list_workspace_templates_api_v2_experimental_workspaces_templates_get) | **GET** /api/v2/experimental_workspaces/templates | List Workspace Templates
|
|
331
342
|
*DefaultApi* | [**list_workspaces_api_v2_experimental_workspaces_get**](docs/DefaultApi.md#list_workspaces_api_v2_experimental_workspaces_get) | **GET** /api/v2/experimental_workspaces/ | List Workspaces
|
|
332
343
|
*DefaultApi* | [**login_user_api_v2_users_login_post**](docs/DefaultApi.md#login_user_api_v2_users_login_post) | **POST** /api/v2/users/login | Login User
|
|
@@ -396,6 +407,7 @@ Class | Method | HTTP request | Description
|
|
|
396
407
|
*DefaultApi* | [**trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post**](docs/DefaultApi.md#trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/trigger | Trigger Cron Job
|
|
397
408
|
*DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
|
|
398
409
|
*DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
|
|
410
|
+
*DefaultApi* | [**unpublish_template_api_v2_workspace_templates_template_id_unpublish_post**](docs/DefaultApi.md#unpublish_template_api_v2_workspace_templates_template_id_unpublish_post) | **POST** /api/v2/workspace_templates/{template_id}/unpublish | Unpublish Template
|
|
399
411
|
*DefaultApi* | [**update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put**](docs/DefaultApi.md#update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put) | **PUT** /api/v2/clouds/{cloud_id}/auto_add_user | Update Cloud Auto Add User
|
|
400
412
|
*DefaultApi* | [**update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put**](docs/DefaultApi.md#update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/deployment/{cloud_deployment_id}/config | Update Cloud Deployment Config
|
|
401
413
|
*DefaultApi* | [**update_cloud_resources_api_v2_clouds_cloud_id_resources_put**](docs/DefaultApi.md#update_cloud_resources_api_v2_clouds_cloud_id_resources_put) | **PUT** /api/v2/clouds/{cloud_id}/resources | Update Cloud Resources
|
|
@@ -413,6 +425,7 @@ Class | Method | HTTP request | Description
|
|
|
413
425
|
*DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
|
|
414
426
|
*DefaultApi* | [**update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put**](docs/DefaultApi.md#update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_system_cluster_config | Update System Cluster Config
|
|
415
427
|
*DefaultApi* | [**update_template_api_v2_workspace_templates_template_id_put**](docs/DefaultApi.md#update_template_api_v2_workspace_templates_template_id_put) | **PUT** /api/v2/workspace_templates/{template_id} | Update Template
|
|
428
|
+
*DefaultApi* | [**upgrade_multi_version_weights_api_v2_services_v2_service_id_update_weights_put**](docs/DefaultApi.md#upgrade_multi_version_weights_api_v2_services_v2_service_id_update_weights_put) | **PUT** /api/v2/services-v2/{service_id}/update_weights | Upgrade Multi Version Weights
|
|
416
429
|
*DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
|
|
417
430
|
*DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
|
|
418
431
|
*DefaultApi* | [**upsert_resource_tags_api_v2_tags_resource_put**](docs/DefaultApi.md#upsert_resource_tags_api_v2_tags_resource_put) | **PUT** /api/v2/tags/resource | Upsert Resource Tags
|
|
@@ -459,7 +472,11 @@ Class | Method | HTTP request | Description
|
|
|
459
472
|
- [AppconfigResponse](docs/AppconfigResponse.md)
|
|
460
473
|
- [ApplicationType](docs/ApplicationType.md)
|
|
461
474
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
475
|
+
- [ApplyAutoscalingConfigUpdateModel](docs/ApplyAutoscalingConfigUpdateModel.md)
|
|
476
|
+
- [ApplyMultiVersionUpdateWeightsUpdateModel](docs/ApplyMultiVersionUpdateWeightsUpdateModel.md)
|
|
477
|
+
- [ApplyProductionServiceMultiVersionV2Model](docs/ApplyProductionServiceMultiVersionV2Model.md)
|
|
462
478
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
479
|
+
- [ApplyVersionWeightUpdateModel](docs/ApplyVersionWeightUpdateModel.md)
|
|
463
480
|
- [ArchiveStatus](docs/ArchiveStatus.md)
|
|
464
481
|
- [AttachMachinePoolToCloudRequest](docs/AttachMachinePoolToCloudRequest.md)
|
|
465
482
|
- [AttachmachinepooltocloudresponseResponse](docs/AttachmachinepooltocloudresponseResponse.md)
|
|
@@ -467,6 +484,8 @@ Class | Method | HTTP request | Description
|
|
|
467
484
|
- [AwsRegionInfo](docs/AwsRegionInfo.md)
|
|
468
485
|
- [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
|
|
469
486
|
- [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
|
|
487
|
+
- [BackendServerApiProductModelsCatalogClientModelsTableMetadata](docs/BackendServerApiProductModelsCatalogClientModelsTableMetadata.md)
|
|
488
|
+
- [BackendServerApiProductModelsDataCatalogsTableMetadata](docs/BackendServerApiProductModelsDataCatalogsTableMetadata.md)
|
|
470
489
|
- [BackendServerApiProductModelsDatasetRunsDatasetResponse](docs/BackendServerApiProductModelsDatasetRunsDatasetResponse.md)
|
|
471
490
|
- [BackendServerApiProductRoutersDatasetsRouterDatasetResponse](docs/BackendServerApiProductRoutersDatasetsRouterDatasetResponse.md)
|
|
472
491
|
- [BaseJobStatus](docs/BaseJobStatus.md)
|
|
@@ -481,6 +500,7 @@ Class | Method | HTTP request | Description
|
|
|
481
500
|
- [BuildStatus](docs/BuildStatus.md)
|
|
482
501
|
- [BuildlogresponseResponse](docs/BuildlogresponseResponse.md)
|
|
483
502
|
- [CLIUsagePayload](docs/CLIUsagePayload.md)
|
|
503
|
+
- [CatalogMetadata](docs/CatalogMetadata.md)
|
|
484
504
|
- [ChangePasswordParams](docs/ChangePasswordParams.md)
|
|
485
505
|
- [CleanupLeakedGrafanaDashboardResponse](docs/CleanupLeakedGrafanaDashboardResponse.md)
|
|
486
506
|
- [CleanupleakedgrafanadashboardresponseResponse](docs/CleanupleakedgrafanadashboardresponseResponse.md)
|
|
@@ -531,6 +551,7 @@ Class | Method | HTTP request | Description
|
|
|
531
551
|
- [CloudcollaboratorListResponse](docs/CloudcollaboratorListResponse.md)
|
|
532
552
|
- [ClouddatabucketpresigneduploadinfoResponse](docs/ClouddatabucketpresigneduploadinfoResponse.md)
|
|
533
553
|
- [ClouddatabucketpresignedurlresponseResponse](docs/ClouddatabucketpresignedurlresponseResponse.md)
|
|
554
|
+
- [ClouddeploymentResponse](docs/ClouddeploymentResponse.md)
|
|
534
555
|
- [ClouddeploymentconfigResponse](docs/ClouddeploymentconfigResponse.md)
|
|
535
556
|
- [CloudoverviewdashboardResponse](docs/CloudoverviewdashboardResponse.md)
|
|
536
557
|
- [CloudregionandzonesResponse](docs/CloudregionandzonesResponse.md)
|
|
@@ -557,6 +578,7 @@ Class | Method | HTTP request | Description
|
|
|
557
578
|
- [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
|
|
558
579
|
- [ClusteroperationResponse](docs/ClusteroperationResponse.md)
|
|
559
580
|
- [CollaboratorType](docs/CollaboratorType.md)
|
|
581
|
+
- [ColumnInfo](docs/ColumnInfo.md)
|
|
560
582
|
- [CommitLedgerItemType](docs/CommitLedgerItemType.md)
|
|
561
583
|
- [CommitLedgerRecordV2](docs/CommitLedgerRecordV2.md)
|
|
562
584
|
- [ComplexityLevel](docs/ComplexityLevel.md)
|
|
@@ -567,6 +589,7 @@ Class | Method | HTTP request | Description
|
|
|
567
589
|
- [ComputeTemplateQuery](docs/ComputeTemplateQuery.md)
|
|
568
590
|
- [ComputetemplateResponse](docs/ComputetemplateResponse.md)
|
|
569
591
|
- [ComputetemplateconfigResponse](docs/ComputetemplateconfigResponse.md)
|
|
592
|
+
- [ConnectionMetadata](docs/ConnectionMetadata.md)
|
|
570
593
|
- [ConnectionType](docs/ConnectionType.md)
|
|
571
594
|
- [CreateAioaCloudWaitlist](docs/CreateAioaCloudWaitlist.md)
|
|
572
595
|
- [CreateAnalyticsEvent](docs/CreateAnalyticsEvent.md)
|
|
@@ -626,7 +649,11 @@ Class | Method | HTTP request | Description
|
|
|
626
649
|
- [DataCatalog](docs/DataCatalog.md)
|
|
627
650
|
- [DataCatalogConnection](docs/DataCatalogConnection.md)
|
|
628
651
|
- [DataCatalogConnectionStatus](docs/DataCatalogConnectionStatus.md)
|
|
652
|
+
- [DataCatalogObjectType](docs/DataCatalogObjectType.md)
|
|
629
653
|
- [DataCatalogProvider](docs/DataCatalogProvider.md)
|
|
654
|
+
- [DataCatalogSchema](docs/DataCatalogSchema.md)
|
|
655
|
+
- [DataCatalogTable](docs/DataCatalogTable.md)
|
|
656
|
+
- [DataCatalogVolume](docs/DataCatalogVolume.md)
|
|
630
657
|
- [DatabricksConnectionConfig](docs/DatabricksConnectionConfig.md)
|
|
631
658
|
- [DatabricksConnectionInfo](docs/DatabricksConnectionInfo.md)
|
|
632
659
|
- [DatabricksConnectionResponse](docs/DatabricksConnectionResponse.md)
|
|
@@ -635,6 +662,9 @@ Class | Method | HTTP request | Description
|
|
|
635
662
|
- [DatabricksconnectionresponseResponse](docs/DatabricksconnectionresponseResponse.md)
|
|
636
663
|
- [DatacatalogListResponse](docs/DatacatalogListResponse.md)
|
|
637
664
|
- [DatacatalogconnectionListResponse](docs/DatacatalogconnectionListResponse.md)
|
|
665
|
+
- [DatacatalogschemaListResponse](docs/DatacatalogschemaListResponse.md)
|
|
666
|
+
- [DatacatalogtableListResponse](docs/DatacatalogtableListResponse.md)
|
|
667
|
+
- [DatacatalogvolumeListResponse](docs/DatacatalogvolumeListResponse.md)
|
|
638
668
|
- [DataplaneServices](docs/DataplaneServices.md)
|
|
639
669
|
- [Dataset](docs/Dataset.md)
|
|
640
670
|
- [DatasetDag](docs/DatasetDag.md)
|
|
@@ -683,6 +713,7 @@ Class | Method | HTTP request | Description
|
|
|
683
713
|
- [DecoratedproductionjobstatetransitionListResponse](docs/DecoratedproductionjobstatetransitionListResponse.md)
|
|
684
714
|
- [Decoratedproductionservicev2ApimodelResponse](docs/Decoratedproductionservicev2ApimodelResponse.md)
|
|
685
715
|
- [Decoratedproductionservicev2VersionapimodelListResponse](docs/Decoratedproductionservicev2VersionapimodelListResponse.md)
|
|
716
|
+
- [Decoratedproductionservicev2VersionapimodelResponse](docs/Decoratedproductionservicev2VersionapimodelResponse.md)
|
|
686
717
|
- [DecoratedscheduleListResponse](docs/DecoratedscheduleListResponse.md)
|
|
687
718
|
- [DecoratedscheduleResponse](docs/DecoratedscheduleResponse.md)
|
|
688
719
|
- [DecoratedservedeploymentListResponse](docs/DecoratedservedeploymentListResponse.md)
|
|
@@ -720,6 +751,7 @@ Class | Method | HTTP request | Description
|
|
|
720
751
|
- [EmailVerificationRequest](docs/EmailVerificationRequest.md)
|
|
721
752
|
- [EmailVerificationResponse](docs/EmailVerificationResponse.md)
|
|
722
753
|
- [EmailverificationresponseResponse](docs/EmailverificationresponseResponse.md)
|
|
754
|
+
- [EntityType](docs/EntityType.md)
|
|
723
755
|
- [Error](docs/Error.md)
|
|
724
756
|
- [EventLevel](docs/EventLevel.md)
|
|
725
757
|
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
|
@@ -748,7 +780,6 @@ Class | Method | HTTP request | Description
|
|
|
748
780
|
- [GrpcProtocolConfig](docs/GrpcProtocolConfig.md)
|
|
749
781
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
750
782
|
- [HaJobErrorTypes](docs/HaJobErrorTypes.md)
|
|
751
|
-
- [HaJobEventLevel](docs/HaJobEventLevel.md)
|
|
752
783
|
- [HaJobEventOrigin](docs/HaJobEventOrigin.md)
|
|
753
784
|
- [HaJobGoalStates](docs/HaJobGoalStates.md)
|
|
754
785
|
- [HaJobStates](docs/HaJobStates.md)
|
|
@@ -769,6 +800,7 @@ Class | Method | HTTP request | Description
|
|
|
769
800
|
- [InternalproductionjobResponse](docs/InternalproductionjobResponse.md)
|
|
770
801
|
- [JobAccess](docs/JobAccess.md)
|
|
771
802
|
- [JobDetails](docs/JobDetails.md)
|
|
803
|
+
- [JobEventFields](docs/JobEventFields.md)
|
|
772
804
|
- [JobQueue](docs/JobQueue.md)
|
|
773
805
|
- [JobQueueConfig](docs/JobQueueConfig.md)
|
|
774
806
|
- [JobQueueExecutionMode](docs/JobQueueExecutionMode.md)
|
|
@@ -838,6 +870,7 @@ Class | Method | HTTP request | Description
|
|
|
838
870
|
- [MachinePoolSearchQuery](docs/MachinePoolSearchQuery.md)
|
|
839
871
|
- [MachinePoolSearchResult](docs/MachinePoolSearchResult.md)
|
|
840
872
|
- [MachineStateInfo](docs/MachineStateInfo.md)
|
|
873
|
+
- [MachineTypePartitionFilter](docs/MachineTypePartitionFilter.md)
|
|
841
874
|
- [MachinepoolsearchresultListResponse](docs/MachinepoolsearchresultListResponse.md)
|
|
842
875
|
- [MachinestateinfoListResponse](docs/MachinestateinfoListResponse.md)
|
|
843
876
|
- [Metric](docs/Metric.md)
|
|
@@ -877,9 +910,7 @@ Class | Method | HTTP request | Description
|
|
|
877
910
|
- [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
|
|
878
911
|
- [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
|
|
879
912
|
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
|
880
|
-
- [OAuthConnectionResponse](docs/OAuthConnectionResponse.md)
|
|
881
913
|
- [OauthAuthUrlResponse](docs/OauthAuthUrlResponse.md)
|
|
882
|
-
- [OauthconnectionresponseResponse](docs/OauthconnectionresponseResponse.md)
|
|
883
914
|
- [ObjectStorage](docs/ObjectStorage.md)
|
|
884
915
|
- [OperationError](docs/OperationError.md)
|
|
885
916
|
- [OperationProgress](docs/OperationProgress.md)
|
|
@@ -916,6 +947,7 @@ Class | Method | HTTP request | Description
|
|
|
916
947
|
- [PartitionInfo](docs/PartitionInfo.md)
|
|
917
948
|
- [PauseSchedule](docs/PauseSchedule.md)
|
|
918
949
|
- [PermissionLevel](docs/PermissionLevel.md)
|
|
950
|
+
- [PhysicalResources](docs/PhysicalResources.md)
|
|
919
951
|
- [PlanStatus](docs/PlanStatus.md)
|
|
920
952
|
- [PresignedUrlResponse](docs/PresignedUrlResponse.md)
|
|
921
953
|
- [ProductionJob](docs/ProductionJob.md)
|
|
@@ -984,13 +1016,14 @@ Class | Method | HTTP request | Description
|
|
|
984
1016
|
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
|
985
1017
|
- [ScheduleConfig](docs/ScheduleConfig.md)
|
|
986
1018
|
- [SchedulerInfo](docs/SchedulerInfo.md)
|
|
1019
|
+
- [SchemaMetadata](docs/SchemaMetadata.md)
|
|
987
1020
|
- [ServeDeploymentGrafanaDashboardStatus](docs/ServeDeploymentGrafanaDashboardStatus.md)
|
|
988
1021
|
- [ServeDeploymentState](docs/ServeDeploymentState.md)
|
|
989
1022
|
- [ServerSessionToken](docs/ServerSessionToken.md)
|
|
990
1023
|
- [ServersessiontokenResponse](docs/ServersessiontokenResponse.md)
|
|
991
1024
|
- [ServiceConfig](docs/ServiceConfig.md)
|
|
992
1025
|
- [ServiceEventCurrentState](docs/ServiceEventCurrentState.md)
|
|
993
|
-
- [
|
|
1026
|
+
- [ServiceEventFields](docs/ServiceEventFields.md)
|
|
994
1027
|
- [ServiceEventOrigin](docs/ServiceEventOrigin.md)
|
|
995
1028
|
- [ServiceEventScope](docs/ServiceEventScope.md)
|
|
996
1029
|
- [ServiceEventScopeFilter](docs/ServiceEventScopeFilter.md)
|
|
@@ -1033,6 +1066,7 @@ Class | Method | HTTP request | Description
|
|
|
1033
1066
|
- [SummarizemachinepoolresponseResponse](docs/SummarizemachinepoolresponseResponse.md)
|
|
1034
1067
|
- [SupportRequestsQuery](docs/SupportRequestsQuery.md)
|
|
1035
1068
|
- [SystemWorkloadName](docs/SystemWorkloadName.md)
|
|
1069
|
+
- [TableDataPreview](docs/TableDataPreview.md)
|
|
1036
1070
|
- [TagKey](docs/TagKey.md)
|
|
1037
1071
|
- [TagKeyValue](docs/TagKeyValue.md)
|
|
1038
1072
|
- [TagSearchIn](docs/TagSearchIn.md)
|
|
@@ -1067,9 +1101,12 @@ Class | Method | HTTP request | Description
|
|
|
1067
1101
|
- [TryLoginEmailResponse](docs/TryLoginEmailResponse.md)
|
|
1068
1102
|
- [TryloginemailresponseResponse](docs/TryloginemailresponseResponse.md)
|
|
1069
1103
|
- [UXInstance](docs/UXInstance.md)
|
|
1104
|
+
- [UnifiedEvent](docs/UnifiedEvent.md)
|
|
1070
1105
|
- [UnifiedJobSortField](docs/UnifiedJobSortField.md)
|
|
1071
1106
|
- [UnifiedJobStatus](docs/UnifiedJobStatus.md)
|
|
1072
1107
|
- [UnifiedJobType](docs/UnifiedJobType.md)
|
|
1108
|
+
- [UnifiedOriginFilter](docs/UnifiedOriginFilter.md)
|
|
1109
|
+
- [UnifiedeventListResponse](docs/UnifiedeventListResponse.md)
|
|
1073
1110
|
- [UpdateCloudCollaborator](docs/UpdateCloudCollaborator.md)
|
|
1074
1111
|
- [UpdateCloudWithCloudResource](docs/UpdateCloudWithCloudResource.md)
|
|
1075
1112
|
- [UpdateCloudWithCloudResourceGCP](docs/UpdateCloudWithCloudResourceGCP.md)
|
|
@@ -1107,6 +1144,7 @@ Class | Method | HTTP request | Description
|
|
|
1107
1144
|
- [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
|
|
1108
1145
|
- [ValidationError](docs/ValidationError.md)
|
|
1109
1146
|
- [ValidationStatus](docs/ValidationStatus.md)
|
|
1147
|
+
- [VolumeMetadata](docs/VolumeMetadata.md)
|
|
1110
1148
|
- [WaitlistStatusResponse](docs/WaitlistStatusResponse.md)
|
|
1111
1149
|
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
|
1112
1150
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
|
@@ -1123,6 +1161,7 @@ Class | Method | HTTP request | Description
|
|
|
1123
1161
|
- [WorkspaceDataplaneArtifacts](docs/WorkspaceDataplaneArtifacts.md)
|
|
1124
1162
|
- [WorkspaceDataplaneProxiedArtifacts](docs/WorkspaceDataplaneProxiedArtifacts.md)
|
|
1125
1163
|
- [WorkspaceEvent](docs/WorkspaceEvent.md)
|
|
1164
|
+
- [WorkspaceEventFields](docs/WorkspaceEventFields.md)
|
|
1126
1165
|
- [WorkspaceEventSource](docs/WorkspaceEventSource.md)
|
|
1127
1166
|
- [WorkspaceEventSourceFilter](docs/WorkspaceEventSourceFilter.md)
|
|
1128
1167
|
- [WorkspaceReadme](docs/WorkspaceReadme.md)
|
|
@@ -56,7 +56,11 @@ 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_multi_version_update_weights_update_model import ApplyMultiVersionUpdateWeightsUpdateModel
|
|
61
|
+
from openapi_client.models.apply_production_service_multi_version_v2_model import ApplyProductionServiceMultiVersionV2Model
|
|
59
62
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
63
|
+
from openapi_client.models.apply_version_weight_update_model import ApplyVersionWeightUpdateModel
|
|
60
64
|
from openapi_client.models.archive_status import ArchiveStatus
|
|
61
65
|
from openapi_client.models.attach_machine_pool_to_cloud_request import AttachMachinePoolToCloudRequest
|
|
62
66
|
from openapi_client.models.attachmachinepooltocloudresponse_response import AttachmachinepooltocloudresponseResponse
|
|
@@ -64,6 +68,8 @@ from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
|
|
|
64
68
|
from openapi_client.models.aws_region_info import AwsRegionInfo
|
|
65
69
|
from openapi_client.models.awsregionandzones_response import AwsregionandzonesResponse
|
|
66
70
|
from openapi_client.models.baseimagesenum import BASEIMAGESENUM
|
|
71
|
+
from openapi_client.models.backend_server_api_product_models_catalog_client_models_table_metadata import BackendServerApiProductModelsCatalogClientModelsTableMetadata
|
|
72
|
+
from openapi_client.models.backend_server_api_product_models_data_catalogs_table_metadata import BackendServerApiProductModelsDataCatalogsTableMetadata
|
|
67
73
|
from openapi_client.models.backend_server_api_product_models_dataset_runs_dataset_response import BackendServerApiProductModelsDatasetRunsDatasetResponse
|
|
68
74
|
from openapi_client.models.backend_server_api_product_routers_datasets_router_dataset_response import BackendServerApiProductRoutersDatasetsRouterDatasetResponse
|
|
69
75
|
from openapi_client.models.base_job_status import BaseJobStatus
|
|
@@ -78,6 +84,7 @@ from openapi_client.models.build_response import BuildResponse
|
|
|
78
84
|
from openapi_client.models.build_status import BuildStatus
|
|
79
85
|
from openapi_client.models.buildlogresponse_response import BuildlogresponseResponse
|
|
80
86
|
from openapi_client.models.cli_usage_payload import CLIUsagePayload
|
|
87
|
+
from openapi_client.models.catalog_metadata import CatalogMetadata
|
|
81
88
|
from openapi_client.models.change_password_params import ChangePasswordParams
|
|
82
89
|
from openapi_client.models.cleanup_leaked_grafana_dashboard_response import CleanupLeakedGrafanaDashboardResponse
|
|
83
90
|
from openapi_client.models.cleanupleakedgrafanadashboardresponse_response import CleanupleakedgrafanadashboardresponseResponse
|
|
@@ -128,6 +135,7 @@ from openapi_client.models.cloud_with_cloud_resource_gcp import CloudWithCloudRe
|
|
|
128
135
|
from openapi_client.models.cloudcollaborator_list_response import CloudcollaboratorListResponse
|
|
129
136
|
from openapi_client.models.clouddatabucketpresigneduploadinfo_response import ClouddatabucketpresigneduploadinfoResponse
|
|
130
137
|
from openapi_client.models.clouddatabucketpresignedurlresponse_response import ClouddatabucketpresignedurlresponseResponse
|
|
138
|
+
from openapi_client.models.clouddeployment_response import ClouddeploymentResponse
|
|
131
139
|
from openapi_client.models.clouddeploymentconfig_response import ClouddeploymentconfigResponse
|
|
132
140
|
from openapi_client.models.cloudoverviewdashboard_response import CloudoverviewdashboardResponse
|
|
133
141
|
from openapi_client.models.cloudregionandzones_response import CloudregionandzonesResponse
|
|
@@ -154,6 +162,7 @@ from openapi_client.models.clusterevent_list_response import ClustereventListRes
|
|
|
154
162
|
from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
|
|
155
163
|
from openapi_client.models.clusteroperation_response import ClusteroperationResponse
|
|
156
164
|
from openapi_client.models.collaborator_type import CollaboratorType
|
|
165
|
+
from openapi_client.models.column_info import ColumnInfo
|
|
157
166
|
from openapi_client.models.commit_ledger_item_type import CommitLedgerItemType
|
|
158
167
|
from openapi_client.models.commit_ledger_record_v2 import CommitLedgerRecordV2
|
|
159
168
|
from openapi_client.models.complexity_level import ComplexityLevel
|
|
@@ -164,6 +173,7 @@ from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
|
164
173
|
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
|
165
174
|
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
|
166
175
|
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
|
176
|
+
from openapi_client.models.connection_metadata import ConnectionMetadata
|
|
167
177
|
from openapi_client.models.connection_type import ConnectionType
|
|
168
178
|
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
|
169
179
|
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
|
@@ -223,7 +233,11 @@ from openapi_client.models.dashboard_panel import DashboardPanel
|
|
|
223
233
|
from openapi_client.models.data_catalog import DataCatalog
|
|
224
234
|
from openapi_client.models.data_catalog_connection import DataCatalogConnection
|
|
225
235
|
from openapi_client.models.data_catalog_connection_status import DataCatalogConnectionStatus
|
|
236
|
+
from openapi_client.models.data_catalog_object_type import DataCatalogObjectType
|
|
226
237
|
from openapi_client.models.data_catalog_provider import DataCatalogProvider
|
|
238
|
+
from openapi_client.models.data_catalog_schema import DataCatalogSchema
|
|
239
|
+
from openapi_client.models.data_catalog_table import DataCatalogTable
|
|
240
|
+
from openapi_client.models.data_catalog_volume import DataCatalogVolume
|
|
227
241
|
from openapi_client.models.databricks_connection_config import DatabricksConnectionConfig
|
|
228
242
|
from openapi_client.models.databricks_connection_info import DatabricksConnectionInfo
|
|
229
243
|
from openapi_client.models.databricks_connection_response import DatabricksConnectionResponse
|
|
@@ -232,6 +246,9 @@ from openapi_client.models.databricksconnectioninfo_response import Databricksco
|
|
|
232
246
|
from openapi_client.models.databricksconnectionresponse_response import DatabricksconnectionresponseResponse
|
|
233
247
|
from openapi_client.models.datacatalog_list_response import DatacatalogListResponse
|
|
234
248
|
from openapi_client.models.datacatalogconnection_list_response import DatacatalogconnectionListResponse
|
|
249
|
+
from openapi_client.models.datacatalogschema_list_response import DatacatalogschemaListResponse
|
|
250
|
+
from openapi_client.models.datacatalogtable_list_response import DatacatalogtableListResponse
|
|
251
|
+
from openapi_client.models.datacatalogvolume_list_response import DatacatalogvolumeListResponse
|
|
235
252
|
from openapi_client.models.dataplane_services import DataplaneServices
|
|
236
253
|
from openapi_client.models.dataset import Dataset
|
|
237
254
|
from openapi_client.models.dataset_dag import DatasetDag
|
|
@@ -280,6 +297,7 @@ from openapi_client.models.decoratedproductionjob_response import Decoratedprodu
|
|
|
280
297
|
from openapi_client.models.decoratedproductionjobstatetransition_list_response import DecoratedproductionjobstatetransitionListResponse
|
|
281
298
|
from openapi_client.models.decoratedproductionservicev2_apimodel_response import Decoratedproductionservicev2ApimodelResponse
|
|
282
299
|
from openapi_client.models.decoratedproductionservicev2_versionapimodel_list_response import Decoratedproductionservicev2VersionapimodelListResponse
|
|
300
|
+
from openapi_client.models.decoratedproductionservicev2_versionapimodel_response import Decoratedproductionservicev2VersionapimodelResponse
|
|
283
301
|
from openapi_client.models.decoratedschedule_list_response import DecoratedscheduleListResponse
|
|
284
302
|
from openapi_client.models.decoratedschedule_response import DecoratedscheduleResponse
|
|
285
303
|
from openapi_client.models.decoratedservedeployment_list_response import DecoratedservedeploymentListResponse
|
|
@@ -317,6 +335,7 @@ from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResou
|
|
|
317
335
|
from openapi_client.models.email_verification_request import EmailVerificationRequest
|
|
318
336
|
from openapi_client.models.email_verification_response import EmailVerificationResponse
|
|
319
337
|
from openapi_client.models.emailverificationresponse_response import EmailverificationresponseResponse
|
|
338
|
+
from openapi_client.models.entity_type import EntityType
|
|
320
339
|
from openapi_client.models.error import Error
|
|
321
340
|
from openapi_client.models.event_level import EventLevel
|
|
322
341
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
|
@@ -345,7 +364,6 @@ from openapi_client.models.grafana_dashboard import GrafanaDashboard
|
|
|
345
364
|
from openapi_client.models.grpc_protocol_config import GrpcProtocolConfig
|
|
346
365
|
from openapi_client.models.http_validation_error import HTTPValidationError
|
|
347
366
|
from openapi_client.models.ha_job_error_types import HaJobErrorTypes
|
|
348
|
-
from openapi_client.models.ha_job_event_level import HaJobEventLevel
|
|
349
367
|
from openapi_client.models.ha_job_event_origin import HaJobEventOrigin
|
|
350
368
|
from openapi_client.models.ha_job_goal_states import HaJobGoalStates
|
|
351
369
|
from openapi_client.models.ha_job_states import HaJobStates
|
|
@@ -366,6 +384,7 @@ from openapi_client.models.internal_production_job import InternalProductionJob
|
|
|
366
384
|
from openapi_client.models.internalproductionjob_response import InternalproductionjobResponse
|
|
367
385
|
from openapi_client.models.job_access import JobAccess
|
|
368
386
|
from openapi_client.models.job_details import JobDetails
|
|
387
|
+
from openapi_client.models.job_event_fields import JobEventFields
|
|
369
388
|
from openapi_client.models.job_queue import JobQueue
|
|
370
389
|
from openapi_client.models.job_queue_config import JobQueueConfig
|
|
371
390
|
from openapi_client.models.job_queue_execution_mode import JobQueueExecutionMode
|
|
@@ -435,6 +454,7 @@ from openapi_client.models.machine_pool import MachinePool
|
|
|
435
454
|
from openapi_client.models.machine_pool_search_query import MachinePoolSearchQuery
|
|
436
455
|
from openapi_client.models.machine_pool_search_result import MachinePoolSearchResult
|
|
437
456
|
from openapi_client.models.machine_state_info import MachineStateInfo
|
|
457
|
+
from openapi_client.models.machine_type_partition_filter import MachineTypePartitionFilter
|
|
438
458
|
from openapi_client.models.machinepoolsearchresult_list_response import MachinepoolsearchresultListResponse
|
|
439
459
|
from openapi_client.models.machinestateinfo_list_response import MachinestateinfoListResponse
|
|
440
460
|
from openapi_client.models.metric import Metric
|
|
@@ -474,9 +494,7 @@ from openapi_client.models.nodemetricsresponse_response import Nodemetricsrespon
|
|
|
474
494
|
from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
|
|
475
495
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
|
476
496
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
|
477
|
-
from openapi_client.models.o_auth_connection_response import OAuthConnectionResponse
|
|
478
497
|
from openapi_client.models.oauth_auth_url_response import OauthAuthUrlResponse
|
|
479
|
-
from openapi_client.models.oauthconnectionresponse_response import OauthconnectionresponseResponse
|
|
480
498
|
from openapi_client.models.object_storage import ObjectStorage
|
|
481
499
|
from openapi_client.models.operation_error import OperationError
|
|
482
500
|
from openapi_client.models.operation_progress import OperationProgress
|
|
@@ -513,6 +531,7 @@ from openapi_client.models.page_query import PageQuery
|
|
|
513
531
|
from openapi_client.models.partition_info import PartitionInfo
|
|
514
532
|
from openapi_client.models.pause_schedule import PauseSchedule
|
|
515
533
|
from openapi_client.models.permission_level import PermissionLevel
|
|
534
|
+
from openapi_client.models.physical_resources import PhysicalResources
|
|
516
535
|
from openapi_client.models.plan_status import PlanStatus
|
|
517
536
|
from openapi_client.models.presigned_url_response import PresignedUrlResponse
|
|
518
537
|
from openapi_client.models.production_job import ProductionJob
|
|
@@ -581,13 +600,14 @@ from openapi_client.models.sso_mode import SSOMode
|
|
|
581
600
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
|
582
601
|
from openapi_client.models.schedule_config import ScheduleConfig
|
|
583
602
|
from openapi_client.models.scheduler_info import SchedulerInfo
|
|
603
|
+
from openapi_client.models.schema_metadata import SchemaMetadata
|
|
584
604
|
from openapi_client.models.serve_deployment_grafana_dashboard_status import ServeDeploymentGrafanaDashboardStatus
|
|
585
605
|
from openapi_client.models.serve_deployment_state import ServeDeploymentState
|
|
586
606
|
from openapi_client.models.server_session_token import ServerSessionToken
|
|
587
607
|
from openapi_client.models.serversessiontoken_response import ServersessiontokenResponse
|
|
588
608
|
from openapi_client.models.service_config import ServiceConfig
|
|
589
609
|
from openapi_client.models.service_event_current_state import ServiceEventCurrentState
|
|
590
|
-
from openapi_client.models.
|
|
610
|
+
from openapi_client.models.service_event_fields import ServiceEventFields
|
|
591
611
|
from openapi_client.models.service_event_origin import ServiceEventOrigin
|
|
592
612
|
from openapi_client.models.service_event_scope import ServiceEventScope
|
|
593
613
|
from openapi_client.models.service_event_scope_filter import ServiceEventScopeFilter
|
|
@@ -630,6 +650,7 @@ from openapi_client.models.summarize_machine_pool_response import SummarizeMachi
|
|
|
630
650
|
from openapi_client.models.summarizemachinepoolresponse_response import SummarizemachinepoolresponseResponse
|
|
631
651
|
from openapi_client.models.support_requests_query import SupportRequestsQuery
|
|
632
652
|
from openapi_client.models.system_workload_name import SystemWorkloadName
|
|
653
|
+
from openapi_client.models.table_data_preview import TableDataPreview
|
|
633
654
|
from openapi_client.models.tag_key import TagKey
|
|
634
655
|
from openapi_client.models.tag_key_value import TagKeyValue
|
|
635
656
|
from openapi_client.models.tag_search_in import TagSearchIn
|
|
@@ -664,9 +685,12 @@ from openapi_client.models.trainrun_list_response import TrainrunListResponse
|
|
|
664
685
|
from openapi_client.models.try_login_email_response import TryLoginEmailResponse
|
|
665
686
|
from openapi_client.models.tryloginemailresponse_response import TryloginemailresponseResponse
|
|
666
687
|
from openapi_client.models.ux_instance import UXInstance
|
|
688
|
+
from openapi_client.models.unified_event import UnifiedEvent
|
|
667
689
|
from openapi_client.models.unified_job_sort_field import UnifiedJobSortField
|
|
668
690
|
from openapi_client.models.unified_job_status import UnifiedJobStatus
|
|
669
691
|
from openapi_client.models.unified_job_type import UnifiedJobType
|
|
692
|
+
from openapi_client.models.unified_origin_filter import UnifiedOriginFilter
|
|
693
|
+
from openapi_client.models.unifiedevent_list_response import UnifiedeventListResponse
|
|
670
694
|
from openapi_client.models.update_cloud_collaborator import UpdateCloudCollaborator
|
|
671
695
|
from openapi_client.models.update_cloud_with_cloud_resource import UpdateCloudWithCloudResource
|
|
672
696
|
from openapi_client.models.update_cloud_with_cloud_resource_gcp import UpdateCloudWithCloudResourceGCP
|
|
@@ -704,6 +728,7 @@ from openapi_client.models.utm_fields import UtmFields
|
|
|
704
728
|
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
|
705
729
|
from openapi_client.models.validation_error import ValidationError
|
|
706
730
|
from openapi_client.models.validation_status import ValidationStatus
|
|
731
|
+
from openapi_client.models.volume_metadata import VolumeMetadata
|
|
707
732
|
from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
|
|
708
733
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
|
709
734
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|
|
@@ -720,6 +745,7 @@ from openapi_client.models.workspace_dataplane_artifact import WorkspaceDataplan
|
|
|
720
745
|
from openapi_client.models.workspace_dataplane_artifacts import WorkspaceDataplaneArtifacts
|
|
721
746
|
from openapi_client.models.workspace_dataplane_proxied_artifacts import WorkspaceDataplaneProxiedArtifacts
|
|
722
747
|
from openapi_client.models.workspace_event import WorkspaceEvent
|
|
748
|
+
from openapi_client.models.workspace_event_fields import WorkspaceEventFields
|
|
723
749
|
from openapi_client.models.workspace_event_source import WorkspaceEventSource
|
|
724
750
|
from openapi_client.models.workspace_event_source_filter import WorkspaceEventSourceFilter
|
|
725
751
|
from openapi_client.models.workspace_readme import WorkspaceReadme
|