anyscale 0.26.70__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 +63 -6
- anyscale/_private/anyscale_client/common.py +33 -3
- anyscale/_private/anyscale_client/fake_anyscale_client.py +27 -2
- anyscale/client/README.md +29 -0
- anyscale/client/openapi_client/__init__.py +19 -0
- anyscale/client/openapi_client/api/default_api.py +1307 -4
- anyscale/client/openapi_client/models/__init__.py +19 -0
- anyscale/client/openapi_client/models/apply_multi_version_update_weights_update_model.py +152 -0
- 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 +70 -1
- anyscale/client/openapi_client/models/catalog_metadata.py +150 -0
- 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_workspace_template_version.py +31 -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/data_catalog_object_type.py +100 -0
- 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_serve_deployment.py +27 -1
- anyscale/client/openapi_client/models/decoratedproductionservicev2_versionapimodel_response.py +121 -0
- anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +2 -2
- anyscale/client/openapi_client/models/describe_machine_pool_requests_filters.py +33 -5
- anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +2 -2
- anyscale/client/openapi_client/models/physical_resources.py +178 -0
- anyscale/client/openapi_client/models/schema_metadata.py +150 -0
- anyscale/client/openapi_client/models/sso_config.py +18 -18
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +70 -1
- anyscale/client/openapi_client/models/table_data_preview.py +209 -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_template_version.py +29 -1
- anyscale/client/openapi_client/models/workspace_template_version_data_object.py +29 -1
- anyscale/commands/job_commands.py +120 -0
- anyscale/commands/job_queue_commands.py +99 -2
- anyscale/commands/service_commands.py +139 -2
- 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/job_controller.py +12 -0
- anyscale/controllers/workspace_controller.py +67 -5
- anyscale/job/_private/job_sdk.py +3 -1
- 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/baseimagesenum.py +70 -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/supportedbaseimagesenum.py +70 -1
- anyscale/sdk/anyscale_client/models/worker_node_type.py +29 -1
- anyscale/service/__init__.py +40 -0
- anyscale/service/_private/service_sdk.py +121 -24
- anyscale/service/commands.py +75 -1
- anyscale/service/models.py +46 -2
- 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.70.dist-info → anyscale-0.26.71.dist-info}/METADATA +1 -1
- {anyscale-0.26.70.dist-info → anyscale-0.26.71.dist-info}/RECORD +78 -58
- {anyscale-0.26.70.dist-info → anyscale-0.26.71.dist-info}/WHEEL +0 -0
- {anyscale-0.26.70.dist-info → anyscale-0.26.71.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.70.dist-info → anyscale-0.26.71.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.70.dist-info → anyscale-0.26.71.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.70.dist-info → anyscale-0.26.71.dist-info}/top_level.txt +0 -0
|
@@ -55,12 +55,14 @@ from anyscale.client.openapi_client.models import (
|
|
|
55
55
|
CreateOrganizationInvitation,
|
|
56
56
|
CreateResourceQuota,
|
|
57
57
|
CreateUserProjectCollaborator,
|
|
58
|
+
DecoratedCloudResource,
|
|
58
59
|
DecoratedComputeTemplate,
|
|
59
60
|
DecoratedjobqueueListResponse,
|
|
60
61
|
DecoratedlistserviceapimodelListResponse,
|
|
61
62
|
DecoratedProductionServiceV2APIModel,
|
|
62
63
|
DecoratedProductionServiceV2VersionAPIModel,
|
|
63
64
|
DecoratedSession,
|
|
65
|
+
DeleteResourceTagsRequest,
|
|
64
66
|
ExperimentalWorkspace,
|
|
65
67
|
GetOrCreateBuildFromImageUriRequest,
|
|
66
68
|
InternalProductionJob,
|
|
@@ -74,12 +76,14 @@ from anyscale.client.openapi_client.models import (
|
|
|
74
76
|
ProjectListResponse,
|
|
75
77
|
ResourceQuota,
|
|
76
78
|
ResourceQuotaStatus,
|
|
79
|
+
ResourceTagResourceType,
|
|
77
80
|
ServerSessionToken,
|
|
78
81
|
SessionSshKey,
|
|
79
82
|
SessionState,
|
|
80
83
|
StartSessionOptions,
|
|
81
84
|
StopSessionOptions,
|
|
82
85
|
SystemWorkloadName,
|
|
86
|
+
UpsertResourceTagsRequest,
|
|
83
87
|
WorkspaceDataplaneProxiedArtifacts,
|
|
84
88
|
WriteProject,
|
|
85
89
|
)
|
|
@@ -577,6 +581,14 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
577
581
|
cloud_id = self.get_cloud_id(cloud_name=name)
|
|
578
582
|
return self.get_cloud(cloud_id=cloud_id)
|
|
579
583
|
|
|
584
|
+
@handle_api_exceptions
|
|
585
|
+
def get_cloud_resource_by_name(
|
|
586
|
+
self, cloud_id: str, cloud_resource_name: str
|
|
587
|
+
) -> Optional[DecoratedCloudResource]:
|
|
588
|
+
return self._internal_api_client.find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post(
|
|
589
|
+
cloud_id=cloud_id, cloud_resource_name=cloud_resource_name,
|
|
590
|
+
).result
|
|
591
|
+
|
|
580
592
|
@handle_api_exceptions
|
|
581
593
|
def get_default_cloud(self) -> Optional[Cloud]:
|
|
582
594
|
try:
|
|
@@ -704,9 +716,11 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
704
716
|
)
|
|
705
717
|
|
|
706
718
|
@handle_api_exceptions
|
|
707
|
-
def get_default_compute_config(
|
|
719
|
+
def get_default_compute_config(
|
|
720
|
+
self, *, cloud_id: str, cloud_resource_id: Optional[str] = None
|
|
721
|
+
) -> ClusterCompute:
|
|
708
722
|
return self._external_api_client.get_default_cluster_compute(
|
|
709
|
-
cloud_id=cloud_id,
|
|
723
|
+
cloud_id=cloud_id, cloud_resource_id=cloud_resource_id
|
|
710
724
|
).result
|
|
711
725
|
|
|
712
726
|
def _build_standard_compute_template_from_existing_auto_config(
|
|
@@ -1024,6 +1038,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1024
1038
|
*,
|
|
1025
1039
|
name: Optional[str] = None,
|
|
1026
1040
|
state_filter: Optional[List[str]] = None,
|
|
1041
|
+
tag_filter: Optional[List[str]] = None,
|
|
1027
1042
|
creator_id: Optional[str] = None,
|
|
1028
1043
|
cloud: Optional[str] = None,
|
|
1029
1044
|
project: Optional[str] = None,
|
|
@@ -1049,6 +1064,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1049
1064
|
archive_status=ArchiveStatus.ALL
|
|
1050
1065
|
if include_archived
|
|
1051
1066
|
else ArchiveStatus.NOT_ARCHIVED,
|
|
1067
|
+
tag_filter=tag_filter,
|
|
1052
1068
|
count=count if count else self.LIST_ENDPOINT_COUNT,
|
|
1053
1069
|
paging_token=paging_token,
|
|
1054
1070
|
sort_field=sort_field,
|
|
@@ -1056,11 +1072,29 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1056
1072
|
)
|
|
1057
1073
|
|
|
1058
1074
|
def get_service_versions(
|
|
1059
|
-
self, service_id: str
|
|
1075
|
+
self, service_id: str, read_all_versions: bool = False,
|
|
1060
1076
|
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
1061
|
-
|
|
1062
|
-
service_id
|
|
1063
|
-
)
|
|
1077
|
+
resp = self._internal_api_client.get_service_versions_api_v2_services_v2_service_id_versions_get(
|
|
1078
|
+
service_id=service_id,
|
|
1079
|
+
)
|
|
1080
|
+
|
|
1081
|
+
if not read_all_versions:
|
|
1082
|
+
return resp.results
|
|
1083
|
+
|
|
1084
|
+
all_versions: List[DecoratedProductionServiceV2VersionAPIModel] = []
|
|
1085
|
+
all_versions.extend(resp.results)
|
|
1086
|
+
paging_token = resp.metadata.next_paging_token
|
|
1087
|
+
|
|
1088
|
+
while paging_token is not None:
|
|
1089
|
+
resp = self._internal_api_client.get_service_versions_api_v2_services_v2_service_id_versions_get(
|
|
1090
|
+
service_id=service_id,
|
|
1091
|
+
count=self.LIST_ENDPOINT_COUNT,
|
|
1092
|
+
paging_token=paging_token,
|
|
1093
|
+
)
|
|
1094
|
+
all_versions.extend(resp.results)
|
|
1095
|
+
paging_token = resp.metadata.next_paging_token
|
|
1096
|
+
|
|
1097
|
+
return all_versions
|
|
1064
1098
|
|
|
1065
1099
|
@handle_api_exceptions
|
|
1066
1100
|
def get_project(self, project_id: str) -> Project:
|
|
@@ -1215,6 +1249,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1215
1249
|
cluster_status: Optional[SessionState] = None,
|
|
1216
1250
|
project: Optional[str] = None,
|
|
1217
1251
|
cloud: Optional[str] = None,
|
|
1252
|
+
tags_filter: Optional[Dict[str, List[str]]] = None,
|
|
1218
1253
|
count: Optional[int] = None,
|
|
1219
1254
|
paging_token: Optional[str] = None,
|
|
1220
1255
|
sorting_directives: Optional[List[JobQueueSortDirective]] = None,
|
|
@@ -1233,6 +1268,7 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
1233
1268
|
cluster_status=cluster_status,
|
|
1234
1269
|
project_id=project_id,
|
|
1235
1270
|
cloud_id=cloud_id,
|
|
1271
|
+
tags_filter=tags_filter,
|
|
1236
1272
|
paging=PageQuery(count=count, paging_token=paging_token),
|
|
1237
1273
|
sorting_directives=sorting_directives,
|
|
1238
1274
|
),
|
|
@@ -2145,3 +2181,24 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
|
2145
2181
|
self._internal_api_client.set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch(
|
|
2146
2182
|
resource_quota_id, ResourceQuotaStatus(is_enabled=is_enabled)
|
|
2147
2183
|
).result
|
|
2184
|
+
|
|
2185
|
+
@handle_api_exceptions
|
|
2186
|
+
def upsert_resource_tags(
|
|
2187
|
+
self,
|
|
2188
|
+
resource_type: ResourceTagResourceType,
|
|
2189
|
+
resource_id: str,
|
|
2190
|
+
tags: Dict[str, str],
|
|
2191
|
+
) -> None:
|
|
2192
|
+
req = UpsertResourceTagsRequest(
|
|
2193
|
+
resource_type=resource_type, resource_id=resource_id, tags=tags
|
|
2194
|
+
)
|
|
2195
|
+
self._internal_api_client.upsert_resource_tags_api_v2_tags_resource_put(req)
|
|
2196
|
+
|
|
2197
|
+
@handle_api_exceptions
|
|
2198
|
+
def delete_resource_tags(
|
|
2199
|
+
self, resource_type: ResourceTagResourceType, resource_id: str, keys: List[str],
|
|
2200
|
+
) -> None:
|
|
2201
|
+
req = DeleteResourceTagsRequest(
|
|
2202
|
+
resource_type=resource_type, resource_id=resource_id, keys=keys
|
|
2203
|
+
)
|
|
2204
|
+
self._internal_api_client.delete_resource_tags_api_v2_tags_resource_delete(req)
|
|
@@ -17,6 +17,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
17
17
|
CreateInternalProductionJob,
|
|
18
18
|
CreateResourceQuota,
|
|
19
19
|
CreateUserProjectCollaborator,
|
|
20
|
+
DecoratedCloudResource,
|
|
20
21
|
DecoratedComputeTemplate,
|
|
21
22
|
DecoratedjobqueueListResponse,
|
|
22
23
|
DecoratedlistserviceapimodelListResponse,
|
|
@@ -30,6 +31,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
30
31
|
ProjectBase,
|
|
31
32
|
ProjectListResponse,
|
|
32
33
|
ResourceQuota,
|
|
34
|
+
ResourceTagResourceType,
|
|
33
35
|
ServerSessionToken,
|
|
34
36
|
SessionState,
|
|
35
37
|
WorkspaceDataplaneProxiedArtifacts,
|
|
@@ -59,7 +61,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
|
59
61
|
# Maybe just make it part of the release process to update it, or fetch the
|
|
60
62
|
# default builds and get the latest one. The best thing to do is probably
|
|
61
63
|
# to populate this in the backend.
|
|
62
|
-
DEFAULT_RAY_VERSION = "2.
|
|
64
|
+
DEFAULT_RAY_VERSION = "2.51.0" # RAY_RELEASE_UPDATE: update to latest version
|
|
63
65
|
DEFAULT_PYTHON_VERSION = "py311"
|
|
64
66
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
|
65
67
|
|
|
@@ -168,6 +170,13 @@ class AnyscaleClientInterface(ABC):
|
|
|
168
170
|
"""
|
|
169
171
|
raise NotImplementedError
|
|
170
172
|
|
|
173
|
+
@abstractmethod
|
|
174
|
+
def get_cloud_resource_by_name(
|
|
175
|
+
self, cloud_id: str, cloud_resource_name: str
|
|
176
|
+
) -> Optional[DecoratedCloudResource]:
|
|
177
|
+
"""Get a cloud resource by name."""
|
|
178
|
+
raise NotImplementedError
|
|
179
|
+
|
|
171
180
|
@abstractmethod
|
|
172
181
|
def get_default_cloud(self) -> Optional[Cloud]:
|
|
173
182
|
"""Get the user's default cloud."""
|
|
@@ -236,7 +245,9 @@ class AnyscaleClientInterface(ABC):
|
|
|
236
245
|
raise NotImplementedError
|
|
237
246
|
|
|
238
247
|
@abstractmethod
|
|
239
|
-
def get_default_compute_config(
|
|
248
|
+
def get_default_compute_config(
|
|
249
|
+
self, *, cloud_id: str, cloud_resource_id: Optional[str] = None
|
|
250
|
+
) -> ClusterCompute:
|
|
240
251
|
"""Get the default compute config for the provided cloud ID."""
|
|
241
252
|
raise NotImplementedError
|
|
242
253
|
|
|
@@ -347,6 +358,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
347
358
|
*,
|
|
348
359
|
name: Optional[str],
|
|
349
360
|
state_filter: Optional[List[str]],
|
|
361
|
+
tag_filter: Optional[List[str]],
|
|
350
362
|
creator_id: Optional[str],
|
|
351
363
|
cloud: Optional[str],
|
|
352
364
|
project: Optional[str],
|
|
@@ -385,7 +397,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
385
397
|
|
|
386
398
|
@abstractmethod
|
|
387
399
|
def get_service_versions(
|
|
388
|
-
self, service_id: str
|
|
400
|
+
self, service_id: str, read_all_versions: bool = False
|
|
389
401
|
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
390
402
|
"""Get the versions of a service."""
|
|
391
403
|
raise NotImplementedError
|
|
@@ -462,6 +474,7 @@ class AnyscaleClientInterface(ABC):
|
|
|
462
474
|
cluster_status: Optional[SessionState] = None,
|
|
463
475
|
project: Optional[str] = None,
|
|
464
476
|
cloud: Optional[str] = None,
|
|
477
|
+
tags_filter: Optional[Dict[str, List[str]]] = None,
|
|
465
478
|
count: Optional[int] = None,
|
|
466
479
|
paging_token: Optional[str] = None,
|
|
467
480
|
sorting_directives: Optional[List[JobQueueSortDirective]] = None,
|
|
@@ -840,3 +853,20 @@ class AnyscaleClientInterface(ABC):
|
|
|
840
853
|
) -> None:
|
|
841
854
|
"""Set the status of a resource quota."""
|
|
842
855
|
raise NotImplementedError
|
|
856
|
+
|
|
857
|
+
@abstractmethod
|
|
858
|
+
def upsert_resource_tags(
|
|
859
|
+
self,
|
|
860
|
+
resource_type: ResourceTagResourceType,
|
|
861
|
+
resource_id: str,
|
|
862
|
+
tags: Dict[str, str],
|
|
863
|
+
) -> None:
|
|
864
|
+
"""Upsert tags (add/update) for a resource."""
|
|
865
|
+
raise NotImplementedError
|
|
866
|
+
|
|
867
|
+
@abstractmethod
|
|
868
|
+
def delete_resource_tags(
|
|
869
|
+
self, resource_type: ResourceTagResourceType, resource_id: str, keys: List[str],
|
|
870
|
+
) -> None:
|
|
871
|
+
"""Delete tags for the provided keys from a resource."""
|
|
872
|
+
raise NotImplementedError
|
|
@@ -29,6 +29,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
29
29
|
CreateInternalProductionJob,
|
|
30
30
|
CreateResourceQuota,
|
|
31
31
|
CreateUserProjectCollaborator,
|
|
32
|
+
DecoratedCloudResource,
|
|
32
33
|
DecoratedComputeTemplate,
|
|
33
34
|
DecoratedlistserviceapimodelListResponse,
|
|
34
35
|
DecoratedProductionServiceV2APIModel,
|
|
@@ -52,6 +53,7 @@ from anyscale.client.openapi_client.models import (
|
|
|
52
53
|
ProjectBase,
|
|
53
54
|
ProjectListResponse,
|
|
54
55
|
ResourceQuota,
|
|
56
|
+
ResourceTagResourceType,
|
|
55
57
|
ServerSessionToken,
|
|
56
58
|
WorkspaceDataplaneProxiedArtifacts,
|
|
57
59
|
WriteProject,
|
|
@@ -414,6 +416,11 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
414
416
|
return c
|
|
415
417
|
return None
|
|
416
418
|
|
|
419
|
+
def get_cloud_resource_by_name(
|
|
420
|
+
self, cloud_id: str, cloud_resource_name: str # noqa: ARG002
|
|
421
|
+
) -> Optional[DecoratedCloudResource]:
|
|
422
|
+
return None
|
|
423
|
+
|
|
417
424
|
def get_default_cloud(self) -> Optional[Cloud]:
|
|
418
425
|
return self._clouds.get(self.DEFAULT_CLOUD_ID, None)
|
|
419
426
|
|
|
@@ -541,7 +548,9 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
541
548
|
):
|
|
542
549
|
self._default_compute_configs[cloud_id] = compute_config
|
|
543
550
|
|
|
544
|
-
def get_default_compute_config(
|
|
551
|
+
def get_default_compute_config(
|
|
552
|
+
self, *, cloud_id: str, cloud_resource_id: Optional[str] = None # noqa: ARG002
|
|
553
|
+
) -> ClusterCompute:
|
|
545
554
|
return self._default_compute_configs[cloud_id]
|
|
546
555
|
|
|
547
556
|
def list_cluster_env_builds(
|
|
@@ -1613,6 +1622,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
1613
1622
|
*,
|
|
1614
1623
|
name: Optional[str] = None,
|
|
1615
1624
|
state_filter: Optional[List[str]] = None,
|
|
1625
|
+
tag_filter: Optional[List[str]] = None, # noqa: ARG002
|
|
1616
1626
|
creator_id: Optional[str] = None, # noqa: ARG002
|
|
1617
1627
|
cloud: Optional[str] = None,
|
|
1618
1628
|
project: Optional[str] = None,
|
|
@@ -1667,6 +1677,21 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
|
|
|
1667
1677
|
return response
|
|
1668
1678
|
|
|
1669
1679
|
def get_service_versions(
|
|
1670
|
-
self, service_id: str
|
|
1680
|
+
self, service_id: str, read_all_versions: bool = False # noqa: ARG002
|
|
1671
1681
|
) -> List[DecoratedProductionServiceV2VersionAPIModel]:
|
|
1672
1682
|
return list(self._versions[service_id].values())
|
|
1683
|
+
|
|
1684
|
+
def upsert_resource_tags(
|
|
1685
|
+
self,
|
|
1686
|
+
resource_type: ResourceTagResourceType,
|
|
1687
|
+
resource_id: str,
|
|
1688
|
+
tags: Dict[str, str],
|
|
1689
|
+
) -> None:
|
|
1690
|
+
_ = resource_type, resource_id, tags
|
|
1691
|
+
return None
|
|
1692
|
+
|
|
1693
|
+
def delete_resource_tags(
|
|
1694
|
+
self, resource_type: ResourceTagResourceType, resource_id: str, keys: List[str],
|
|
1695
|
+
) -> None:
|
|
1696
|
+
_ = resource_type, resource_id, keys
|
|
1697
|
+
return None
|
anyscale/client/README.md
CHANGED
|
@@ -149,6 +149,7 @@ Class | Method | HTTP request | Description
|
|
|
149
149
|
*DefaultApi* | [**delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete**](docs/DefaultApi.md#delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete) | **DELETE** /api/v2/resource_quotas/{resource_quota_id} | Delete Resource Quota
|
|
150
150
|
*DefaultApi* | [**delete_resource_tags_api_v2_tags_resource_delete**](docs/DefaultApi.md#delete_resource_tags_api_v2_tags_resource_delete) | **DELETE** /api/v2/tags/resource | Delete Resource Tags
|
|
151
151
|
*DefaultApi* | [**delete_service_api_v2_services_v2_service_id_delete**](docs/DefaultApi.md#delete_service_api_v2_services_v2_service_id_delete) | **DELETE** /api/v2/services-v2/{service_id} | Delete Service
|
|
152
|
+
*DefaultApi* | [**delete_template_api_v2_workspace_templates_template_id_delete**](docs/DefaultApi.md#delete_template_api_v2_workspace_templates_template_id_delete) | **DELETE** /api/v2/workspace_templates/{template_id} | Delete Template
|
|
152
153
|
*DefaultApi* | [**delete_workspace_api_v2_experimental_workspaces_workspace_id_delete**](docs/DefaultApi.md#delete_workspace_api_v2_experimental_workspaces_workspace_id_delete) | **DELETE** /api/v2/experimental_workspaces/{workspace_id} | Delete Workspace
|
|
153
154
|
*DefaultApi* | [**describe_machine_pool_api_v2_machine_pools_describe_post**](docs/DefaultApi.md#describe_machine_pool_api_v2_machine_pools_describe_post) | **POST** /api/v2/machine_pools/describe | Describe Machine Pool
|
|
154
155
|
*DefaultApi* | [**describe_machine_pool_machines_api_v2_machine_pools_describe_machines_post**](docs/DefaultApi.md#describe_machine_pool_machines_api_v2_machine_pools_describe_machines_post) | **POST** /api/v2/machine_pools/describe_machines | Describe Machine Pool Machines
|
|
@@ -169,6 +170,7 @@ Class | Method | HTTP request | Description
|
|
|
169
170
|
*DefaultApi* | [**fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post**](docs/DefaultApi.md#fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post) | **POST** /api/v2/aggregated_instance_usage/project | Fetch Usage Group By Project
|
|
170
171
|
*DefaultApi* | [**fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post**](docs/DefaultApi.md#fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post) | **POST** /api/v2/aggregated_instance_usage/user | Fetch Usage Group By User
|
|
171
172
|
*DefaultApi* | [**find_cloud_by_name_api_v2_clouds_find_by_name_post**](docs/DefaultApi.md#find_cloud_by_name_api_v2_clouds_find_by_name_post) | **POST** /api/v2/clouds/find_by_name | Find Cloud By Name
|
|
173
|
+
*DefaultApi* | [**find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post**](docs/DefaultApi.md#find_cloud_resource_by_name_api_v2_clouds_cloud_id_find_cloud_resource_by_name_post) | **POST** /api/v2/clouds/{cloud_id}/find_cloud_resource_by_name | Find Cloud Resource By Name
|
|
172
174
|
*DefaultApi* | [**find_dataset_api_v2_datasets_find_get**](docs/DefaultApi.md#find_dataset_api_v2_datasets_find_get) | **GET** /api/v2/datasets/find | Find Dataset
|
|
173
175
|
*DefaultApi* | [**find_project_by_project_name_api_v2_projects_find_by_name_get**](docs/DefaultApi.md#find_project_by_project_name_api_v2_projects_find_by_name_get) | **GET** /api/v2/projects/find_by_name | Find Project By Project Name
|
|
174
176
|
*DefaultApi* | [**finish_session_command_api_v2_session_commands_session_command_id_finish_post**](docs/DefaultApi.md#finish_session_command_api_v2_session_commands_session_command_id_finish_post) | **POST** /api/v2/session_commands/{session_command_id}/finish | Finish Session Command
|
|
@@ -255,6 +257,7 @@ Class | Method | HTTP request | Description
|
|
|
255
257
|
*DefaultApi* | [**get_service_api_v2_services_v2_service_id_get**](docs/DefaultApi.md#get_service_api_v2_services_v2_service_id_get) | **GET** /api/v2/services-v2/{service_id} | Get Service
|
|
256
258
|
*DefaultApi* | [**get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get**](docs/DefaultApi.md#get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get) | **GET** /api/v2/services-v2/events/{event_id}/verbose_message | Get Service Event Verbose Message
|
|
257
259
|
*DefaultApi* | [**get_service_events_api_v2_services_v2_service_id_events_get**](docs/DefaultApi.md#get_service_events_api_v2_services_v2_service_id_events_get) | **GET** /api/v2/services-v2/{service_id}/events | Get Service Events
|
|
260
|
+
*DefaultApi* | [**get_service_version_api_v2_services_v2_service_id_versions_service_version_name_get**](docs/DefaultApi.md#get_service_version_api_v2_services_v2_service_id_versions_service_version_name_get) | **GET** /api/v2/services-v2/{service_id}/versions/{service_version_name} | Get Service Version
|
|
258
261
|
*DefaultApi* | [**get_service_versions_api_v2_services_v2_service_id_versions_get**](docs/DefaultApi.md#get_service_versions_api_v2_services_v2_service_id_versions_get) | **GET** /api/v2/services-v2/{service_id}/versions | Get Service Versions
|
|
259
262
|
*DefaultApi* | [**get_session_api_v2_sessions_session_id_get**](docs/DefaultApi.md#get_session_api_v2_sessions_session_id_get) | **GET** /api/v2/sessions/{session_id} | Get Session
|
|
260
263
|
*DefaultApi* | [**get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get**](docs/DefaultApi.md#get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get) | **GET** /api/v2/logs/session_command_logs/{session_id}/{session_command_id} | Get Session Command Logs Download
|
|
@@ -262,6 +265,8 @@ Class | Method | HTTP request | Description
|
|
|
262
265
|
*DefaultApi* | [**get_session_head_ip_api_v2_sessions_session_id_head_ip_get**](docs/DefaultApi.md#get_session_head_ip_api_v2_sessions_session_id_head_ip_get) | **GET** /api/v2/sessions/{session_id}/head_ip | Get Session Head Ip
|
|
263
266
|
*DefaultApi* | [**get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get**](docs/DefaultApi.md#get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get) | **GET** /api/v2/sessions/{session_id}/ssh_key | Get Session Ssh Key
|
|
264
267
|
*DefaultApi* | [**get_startup_logs_api_v2_sessions_session_id_startup_logs_get**](docs/DefaultApi.md#get_startup_logs_api_v2_sessions_session_id_startup_logs_get) | **GET** /api/v2/sessions/{session_id}/startup_logs | Get Startup Logs
|
|
268
|
+
*DefaultApi* | [**get_table_metadata_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_metadata_get**](docs/DefaultApi.md#get_table_metadata_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_metadata_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables/{table_id}/metadata | Get Table Metadata
|
|
269
|
+
*DefaultApi* | [**get_table_preview_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_preview_get**](docs/DefaultApi.md#get_table_preview_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_table_id_preview_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables/{table_id}/preview | Get Table Preview
|
|
265
270
|
*DefaultApi* | [**get_tags_for_resource_api_v2_tags_resource_get**](docs/DefaultApi.md#get_tags_for_resource_api_v2_tags_resource_get) | **GET** /api/v2/tags/resource | Get Tags For Resource
|
|
266
271
|
*DefaultApi* | [**get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get**](docs/DefaultApi.md#get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_exception | Get Task Exception Aggregates
|
|
267
272
|
*DefaultApi* | [**get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get**](docs/DefaultApi.md#get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_function | Get Task Function Aggregates
|
|
@@ -325,11 +330,14 @@ Class | Method | HTTP request | Description
|
|
|
325
330
|
*DefaultApi* | [**list_projects_api_v2_projects_get**](docs/DefaultApi.md#list_projects_api_v2_projects_get) | **GET** /api/v2/projects/ | List Projects
|
|
326
331
|
*DefaultApi* | [**list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get**](docs/DefaultApi.md#list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get) | **GET** /api/v2/tasks_dashboard/list_ray_sessions | List Ray Sessions
|
|
327
332
|
*DefaultApi* | [**list_recommended_workspace_templates_api_v2_experimental_workspaces_templates_recommended_get**](docs/DefaultApi.md#list_recommended_workspace_templates_api_v2_experimental_workspaces_templates_recommended_get) | **GET** /api/v2/experimental_workspaces/templates/recommended | List Recommended Workspace Templates
|
|
333
|
+
*DefaultApi* | [**list_schemas_in_catalog_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_get**](docs/DefaultApi.md#list_schemas_in_catalog_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas | List Schemas In Catalog
|
|
328
334
|
*DefaultApi* | [**list_services_api_v2_services_v2_get**](docs/DefaultApi.md#list_services_api_v2_services_v2_get) | **GET** /api/v2/services-v2/ | List Services
|
|
329
335
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
|
336
|
+
*DefaultApi* | [**list_tables_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_get**](docs/DefaultApi.md#list_tables_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_tables_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/tables | List Tables In Schema
|
|
330
337
|
*DefaultApi* | [**list_template_versions_api_v2_workspace_templates_template_id_versions_get**](docs/DefaultApi.md#list_template_versions_api_v2_workspace_templates_template_id_versions_get) | **GET** /api/v2/workspace_templates/{template_id}/versions | List Template Versions
|
|
331
338
|
*DefaultApi* | [**list_templates_api_v2_workspace_templates_get**](docs/DefaultApi.md#list_templates_api_v2_workspace_templates_get) | **GET** /api/v2/workspace_templates/ | List Templates
|
|
332
339
|
*DefaultApi* | [**list_values_api_v2_tags_values_get**](docs/DefaultApi.md#list_values_api_v2_tags_values_get) | **GET** /api/v2/tags/values | List Values
|
|
340
|
+
*DefaultApi* | [**list_volumes_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_volumes_get**](docs/DefaultApi.md#list_volumes_in_schema_api_v2_data_catalogs_connections_connection_id_catalogs_catalog_id_schemas_schema_id_volumes_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs/{catalog_id}/schemas/{schema_id}/volumes | List Volumes In Schema
|
|
333
341
|
*DefaultApi* | [**list_workspace_templates_api_v2_experimental_workspaces_templates_get**](docs/DefaultApi.md#list_workspace_templates_api_v2_experimental_workspaces_templates_get) | **GET** /api/v2/experimental_workspaces/templates | List Workspace Templates
|
|
334
342
|
*DefaultApi* | [**list_workspaces_api_v2_experimental_workspaces_get**](docs/DefaultApi.md#list_workspaces_api_v2_experimental_workspaces_get) | **GET** /api/v2/experimental_workspaces/ | List Workspaces
|
|
335
343
|
*DefaultApi* | [**login_user_api_v2_users_login_post**](docs/DefaultApi.md#login_user_api_v2_users_login_post) | **POST** /api/v2/users/login | Login User
|
|
@@ -399,6 +407,7 @@ Class | Method | HTTP request | Description
|
|
|
399
407
|
*DefaultApi* | [**trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post**](docs/DefaultApi.md#trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/trigger | Trigger Cron Job
|
|
400
408
|
*DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
|
|
401
409
|
*DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
|
|
410
|
+
*DefaultApi* | [**unpublish_template_api_v2_workspace_templates_template_id_unpublish_post**](docs/DefaultApi.md#unpublish_template_api_v2_workspace_templates_template_id_unpublish_post) | **POST** /api/v2/workspace_templates/{template_id}/unpublish | Unpublish Template
|
|
402
411
|
*DefaultApi* | [**update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put**](docs/DefaultApi.md#update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put) | **PUT** /api/v2/clouds/{cloud_id}/auto_add_user | Update Cloud Auto Add User
|
|
403
412
|
*DefaultApi* | [**update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put**](docs/DefaultApi.md#update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/deployment/{cloud_deployment_id}/config | Update Cloud Deployment Config
|
|
404
413
|
*DefaultApi* | [**update_cloud_resources_api_v2_clouds_cloud_id_resources_put**](docs/DefaultApi.md#update_cloud_resources_api_v2_clouds_cloud_id_resources_put) | **PUT** /api/v2/clouds/{cloud_id}/resources | Update Cloud Resources
|
|
@@ -416,6 +425,7 @@ Class | Method | HTTP request | Description
|
|
|
416
425
|
*DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
|
|
417
426
|
*DefaultApi* | [**update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put**](docs/DefaultApi.md#update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_system_cluster_config | Update System Cluster Config
|
|
418
427
|
*DefaultApi* | [**update_template_api_v2_workspace_templates_template_id_put**](docs/DefaultApi.md#update_template_api_v2_workspace_templates_template_id_put) | **PUT** /api/v2/workspace_templates/{template_id} | Update Template
|
|
428
|
+
*DefaultApi* | [**upgrade_multi_version_weights_api_v2_services_v2_service_id_update_weights_put**](docs/DefaultApi.md#upgrade_multi_version_weights_api_v2_services_v2_service_id_update_weights_put) | **PUT** /api/v2/services-v2/{service_id}/update_weights | Upgrade Multi Version Weights
|
|
419
429
|
*DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
|
|
420
430
|
*DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
|
|
421
431
|
*DefaultApi* | [**upsert_resource_tags_api_v2_tags_resource_put**](docs/DefaultApi.md#upsert_resource_tags_api_v2_tags_resource_put) | **PUT** /api/v2/tags/resource | Upsert Resource Tags
|
|
@@ -463,8 +473,10 @@ Class | Method | HTTP request | Description
|
|
|
463
473
|
- [ApplicationType](docs/ApplicationType.md)
|
|
464
474
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
|
465
475
|
- [ApplyAutoscalingConfigUpdateModel](docs/ApplyAutoscalingConfigUpdateModel.md)
|
|
476
|
+
- [ApplyMultiVersionUpdateWeightsUpdateModel](docs/ApplyMultiVersionUpdateWeightsUpdateModel.md)
|
|
466
477
|
- [ApplyProductionServiceMultiVersionV2Model](docs/ApplyProductionServiceMultiVersionV2Model.md)
|
|
467
478
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
|
479
|
+
- [ApplyVersionWeightUpdateModel](docs/ApplyVersionWeightUpdateModel.md)
|
|
468
480
|
- [ArchiveStatus](docs/ArchiveStatus.md)
|
|
469
481
|
- [AttachMachinePoolToCloudRequest](docs/AttachMachinePoolToCloudRequest.md)
|
|
470
482
|
- [AttachmachinepooltocloudresponseResponse](docs/AttachmachinepooltocloudresponseResponse.md)
|
|
@@ -472,6 +484,8 @@ Class | Method | HTTP request | Description
|
|
|
472
484
|
- [AwsRegionInfo](docs/AwsRegionInfo.md)
|
|
473
485
|
- [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
|
|
474
486
|
- [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
|
|
487
|
+
- [BackendServerApiProductModelsCatalogClientModelsTableMetadata](docs/BackendServerApiProductModelsCatalogClientModelsTableMetadata.md)
|
|
488
|
+
- [BackendServerApiProductModelsDataCatalogsTableMetadata](docs/BackendServerApiProductModelsDataCatalogsTableMetadata.md)
|
|
475
489
|
- [BackendServerApiProductModelsDatasetRunsDatasetResponse](docs/BackendServerApiProductModelsDatasetRunsDatasetResponse.md)
|
|
476
490
|
- [BackendServerApiProductRoutersDatasetsRouterDatasetResponse](docs/BackendServerApiProductRoutersDatasetsRouterDatasetResponse.md)
|
|
477
491
|
- [BaseJobStatus](docs/BaseJobStatus.md)
|
|
@@ -486,6 +500,7 @@ Class | Method | HTTP request | Description
|
|
|
486
500
|
- [BuildStatus](docs/BuildStatus.md)
|
|
487
501
|
- [BuildlogresponseResponse](docs/BuildlogresponseResponse.md)
|
|
488
502
|
- [CLIUsagePayload](docs/CLIUsagePayload.md)
|
|
503
|
+
- [CatalogMetadata](docs/CatalogMetadata.md)
|
|
489
504
|
- [ChangePasswordParams](docs/ChangePasswordParams.md)
|
|
490
505
|
- [CleanupLeakedGrafanaDashboardResponse](docs/CleanupLeakedGrafanaDashboardResponse.md)
|
|
491
506
|
- [CleanupleakedgrafanadashboardresponseResponse](docs/CleanupleakedgrafanadashboardresponseResponse.md)
|
|
@@ -563,6 +578,7 @@ Class | Method | HTTP request | Description
|
|
|
563
578
|
- [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
|
|
564
579
|
- [ClusteroperationResponse](docs/ClusteroperationResponse.md)
|
|
565
580
|
- [CollaboratorType](docs/CollaboratorType.md)
|
|
581
|
+
- [ColumnInfo](docs/ColumnInfo.md)
|
|
566
582
|
- [CommitLedgerItemType](docs/CommitLedgerItemType.md)
|
|
567
583
|
- [CommitLedgerRecordV2](docs/CommitLedgerRecordV2.md)
|
|
568
584
|
- [ComplexityLevel](docs/ComplexityLevel.md)
|
|
@@ -573,6 +589,7 @@ Class | Method | HTTP request | Description
|
|
|
573
589
|
- [ComputeTemplateQuery](docs/ComputeTemplateQuery.md)
|
|
574
590
|
- [ComputetemplateResponse](docs/ComputetemplateResponse.md)
|
|
575
591
|
- [ComputetemplateconfigResponse](docs/ComputetemplateconfigResponse.md)
|
|
592
|
+
- [ConnectionMetadata](docs/ConnectionMetadata.md)
|
|
576
593
|
- [ConnectionType](docs/ConnectionType.md)
|
|
577
594
|
- [CreateAioaCloudWaitlist](docs/CreateAioaCloudWaitlist.md)
|
|
578
595
|
- [CreateAnalyticsEvent](docs/CreateAnalyticsEvent.md)
|
|
@@ -632,7 +649,11 @@ Class | Method | HTTP request | Description
|
|
|
632
649
|
- [DataCatalog](docs/DataCatalog.md)
|
|
633
650
|
- [DataCatalogConnection](docs/DataCatalogConnection.md)
|
|
634
651
|
- [DataCatalogConnectionStatus](docs/DataCatalogConnectionStatus.md)
|
|
652
|
+
- [DataCatalogObjectType](docs/DataCatalogObjectType.md)
|
|
635
653
|
- [DataCatalogProvider](docs/DataCatalogProvider.md)
|
|
654
|
+
- [DataCatalogSchema](docs/DataCatalogSchema.md)
|
|
655
|
+
- [DataCatalogTable](docs/DataCatalogTable.md)
|
|
656
|
+
- [DataCatalogVolume](docs/DataCatalogVolume.md)
|
|
636
657
|
- [DatabricksConnectionConfig](docs/DatabricksConnectionConfig.md)
|
|
637
658
|
- [DatabricksConnectionInfo](docs/DatabricksConnectionInfo.md)
|
|
638
659
|
- [DatabricksConnectionResponse](docs/DatabricksConnectionResponse.md)
|
|
@@ -641,6 +662,9 @@ Class | Method | HTTP request | Description
|
|
|
641
662
|
- [DatabricksconnectionresponseResponse](docs/DatabricksconnectionresponseResponse.md)
|
|
642
663
|
- [DatacatalogListResponse](docs/DatacatalogListResponse.md)
|
|
643
664
|
- [DatacatalogconnectionListResponse](docs/DatacatalogconnectionListResponse.md)
|
|
665
|
+
- [DatacatalogschemaListResponse](docs/DatacatalogschemaListResponse.md)
|
|
666
|
+
- [DatacatalogtableListResponse](docs/DatacatalogtableListResponse.md)
|
|
667
|
+
- [DatacatalogvolumeListResponse](docs/DatacatalogvolumeListResponse.md)
|
|
644
668
|
- [DataplaneServices](docs/DataplaneServices.md)
|
|
645
669
|
- [Dataset](docs/Dataset.md)
|
|
646
670
|
- [DatasetDag](docs/DatasetDag.md)
|
|
@@ -689,6 +713,7 @@ Class | Method | HTTP request | Description
|
|
|
689
713
|
- [DecoratedproductionjobstatetransitionListResponse](docs/DecoratedproductionjobstatetransitionListResponse.md)
|
|
690
714
|
- [Decoratedproductionservicev2ApimodelResponse](docs/Decoratedproductionservicev2ApimodelResponse.md)
|
|
691
715
|
- [Decoratedproductionservicev2VersionapimodelListResponse](docs/Decoratedproductionservicev2VersionapimodelListResponse.md)
|
|
716
|
+
- [Decoratedproductionservicev2VersionapimodelResponse](docs/Decoratedproductionservicev2VersionapimodelResponse.md)
|
|
692
717
|
- [DecoratedscheduleListResponse](docs/DecoratedscheduleListResponse.md)
|
|
693
718
|
- [DecoratedscheduleResponse](docs/DecoratedscheduleResponse.md)
|
|
694
719
|
- [DecoratedservedeploymentListResponse](docs/DecoratedservedeploymentListResponse.md)
|
|
@@ -922,6 +947,7 @@ Class | Method | HTTP request | Description
|
|
|
922
947
|
- [PartitionInfo](docs/PartitionInfo.md)
|
|
923
948
|
- [PauseSchedule](docs/PauseSchedule.md)
|
|
924
949
|
- [PermissionLevel](docs/PermissionLevel.md)
|
|
950
|
+
- [PhysicalResources](docs/PhysicalResources.md)
|
|
925
951
|
- [PlanStatus](docs/PlanStatus.md)
|
|
926
952
|
- [PresignedUrlResponse](docs/PresignedUrlResponse.md)
|
|
927
953
|
- [ProductionJob](docs/ProductionJob.md)
|
|
@@ -990,6 +1016,7 @@ Class | Method | HTTP request | Description
|
|
|
990
1016
|
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
|
991
1017
|
- [ScheduleConfig](docs/ScheduleConfig.md)
|
|
992
1018
|
- [SchedulerInfo](docs/SchedulerInfo.md)
|
|
1019
|
+
- [SchemaMetadata](docs/SchemaMetadata.md)
|
|
993
1020
|
- [ServeDeploymentGrafanaDashboardStatus](docs/ServeDeploymentGrafanaDashboardStatus.md)
|
|
994
1021
|
- [ServeDeploymentState](docs/ServeDeploymentState.md)
|
|
995
1022
|
- [ServerSessionToken](docs/ServerSessionToken.md)
|
|
@@ -1039,6 +1066,7 @@ Class | Method | HTTP request | Description
|
|
|
1039
1066
|
- [SummarizemachinepoolresponseResponse](docs/SummarizemachinepoolresponseResponse.md)
|
|
1040
1067
|
- [SupportRequestsQuery](docs/SupportRequestsQuery.md)
|
|
1041
1068
|
- [SystemWorkloadName](docs/SystemWorkloadName.md)
|
|
1069
|
+
- [TableDataPreview](docs/TableDataPreview.md)
|
|
1042
1070
|
- [TagKey](docs/TagKey.md)
|
|
1043
1071
|
- [TagKeyValue](docs/TagKeyValue.md)
|
|
1044
1072
|
- [TagSearchIn](docs/TagSearchIn.md)
|
|
@@ -1116,6 +1144,7 @@ Class | Method | HTTP request | Description
|
|
|
1116
1144
|
- [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
|
|
1117
1145
|
- [ValidationError](docs/ValidationError.md)
|
|
1118
1146
|
- [ValidationStatus](docs/ValidationStatus.md)
|
|
1147
|
+
- [VolumeMetadata](docs/VolumeMetadata.md)
|
|
1119
1148
|
- [WaitlistStatusResponse](docs/WaitlistStatusResponse.md)
|
|
1120
1149
|
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
|
1121
1150
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
|
@@ -57,8 +57,10 @@ from openapi_client.models.appconfig_response import AppconfigResponse
|
|
|
57
57
|
from openapi_client.models.application_type import ApplicationType
|
|
58
58
|
from openapi_client.models.applied_snapshot import AppliedSnapshot
|
|
59
59
|
from openapi_client.models.apply_autoscaling_config_update_model import ApplyAutoscalingConfigUpdateModel
|
|
60
|
+
from openapi_client.models.apply_multi_version_update_weights_update_model import ApplyMultiVersionUpdateWeightsUpdateModel
|
|
60
61
|
from openapi_client.models.apply_production_service_multi_version_v2_model import ApplyProductionServiceMultiVersionV2Model
|
|
61
62
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
|
63
|
+
from openapi_client.models.apply_version_weight_update_model import ApplyVersionWeightUpdateModel
|
|
62
64
|
from openapi_client.models.archive_status import ArchiveStatus
|
|
63
65
|
from openapi_client.models.attach_machine_pool_to_cloud_request import AttachMachinePoolToCloudRequest
|
|
64
66
|
from openapi_client.models.attachmachinepooltocloudresponse_response import AttachmachinepooltocloudresponseResponse
|
|
@@ -66,6 +68,8 @@ from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
|
|
|
66
68
|
from openapi_client.models.aws_region_info import AwsRegionInfo
|
|
67
69
|
from openapi_client.models.awsregionandzones_response import AwsregionandzonesResponse
|
|
68
70
|
from openapi_client.models.baseimagesenum import BASEIMAGESENUM
|
|
71
|
+
from openapi_client.models.backend_server_api_product_models_catalog_client_models_table_metadata import BackendServerApiProductModelsCatalogClientModelsTableMetadata
|
|
72
|
+
from openapi_client.models.backend_server_api_product_models_data_catalogs_table_metadata import BackendServerApiProductModelsDataCatalogsTableMetadata
|
|
69
73
|
from openapi_client.models.backend_server_api_product_models_dataset_runs_dataset_response import BackendServerApiProductModelsDatasetRunsDatasetResponse
|
|
70
74
|
from openapi_client.models.backend_server_api_product_routers_datasets_router_dataset_response import BackendServerApiProductRoutersDatasetsRouterDatasetResponse
|
|
71
75
|
from openapi_client.models.base_job_status import BaseJobStatus
|
|
@@ -80,6 +84,7 @@ from openapi_client.models.build_response import BuildResponse
|
|
|
80
84
|
from openapi_client.models.build_status import BuildStatus
|
|
81
85
|
from openapi_client.models.buildlogresponse_response import BuildlogresponseResponse
|
|
82
86
|
from openapi_client.models.cli_usage_payload import CLIUsagePayload
|
|
87
|
+
from openapi_client.models.catalog_metadata import CatalogMetadata
|
|
83
88
|
from openapi_client.models.change_password_params import ChangePasswordParams
|
|
84
89
|
from openapi_client.models.cleanup_leaked_grafana_dashboard_response import CleanupLeakedGrafanaDashboardResponse
|
|
85
90
|
from openapi_client.models.cleanupleakedgrafanadashboardresponse_response import CleanupleakedgrafanadashboardresponseResponse
|
|
@@ -157,6 +162,7 @@ from openapi_client.models.clusterevent_list_response import ClustereventListRes
|
|
|
157
162
|
from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
|
|
158
163
|
from openapi_client.models.clusteroperation_response import ClusteroperationResponse
|
|
159
164
|
from openapi_client.models.collaborator_type import CollaboratorType
|
|
165
|
+
from openapi_client.models.column_info import ColumnInfo
|
|
160
166
|
from openapi_client.models.commit_ledger_item_type import CommitLedgerItemType
|
|
161
167
|
from openapi_client.models.commit_ledger_record_v2 import CommitLedgerRecordV2
|
|
162
168
|
from openapi_client.models.complexity_level import ComplexityLevel
|
|
@@ -167,6 +173,7 @@ from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
|
167
173
|
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
|
168
174
|
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
|
169
175
|
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
|
176
|
+
from openapi_client.models.connection_metadata import ConnectionMetadata
|
|
170
177
|
from openapi_client.models.connection_type import ConnectionType
|
|
171
178
|
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
|
172
179
|
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
|
@@ -226,7 +233,11 @@ from openapi_client.models.dashboard_panel import DashboardPanel
|
|
|
226
233
|
from openapi_client.models.data_catalog import DataCatalog
|
|
227
234
|
from openapi_client.models.data_catalog_connection import DataCatalogConnection
|
|
228
235
|
from openapi_client.models.data_catalog_connection_status import DataCatalogConnectionStatus
|
|
236
|
+
from openapi_client.models.data_catalog_object_type import DataCatalogObjectType
|
|
229
237
|
from openapi_client.models.data_catalog_provider import DataCatalogProvider
|
|
238
|
+
from openapi_client.models.data_catalog_schema import DataCatalogSchema
|
|
239
|
+
from openapi_client.models.data_catalog_table import DataCatalogTable
|
|
240
|
+
from openapi_client.models.data_catalog_volume import DataCatalogVolume
|
|
230
241
|
from openapi_client.models.databricks_connection_config import DatabricksConnectionConfig
|
|
231
242
|
from openapi_client.models.databricks_connection_info import DatabricksConnectionInfo
|
|
232
243
|
from openapi_client.models.databricks_connection_response import DatabricksConnectionResponse
|
|
@@ -235,6 +246,9 @@ from openapi_client.models.databricksconnectioninfo_response import Databricksco
|
|
|
235
246
|
from openapi_client.models.databricksconnectionresponse_response import DatabricksconnectionresponseResponse
|
|
236
247
|
from openapi_client.models.datacatalog_list_response import DatacatalogListResponse
|
|
237
248
|
from openapi_client.models.datacatalogconnection_list_response import DatacatalogconnectionListResponse
|
|
249
|
+
from openapi_client.models.datacatalogschema_list_response import DatacatalogschemaListResponse
|
|
250
|
+
from openapi_client.models.datacatalogtable_list_response import DatacatalogtableListResponse
|
|
251
|
+
from openapi_client.models.datacatalogvolume_list_response import DatacatalogvolumeListResponse
|
|
238
252
|
from openapi_client.models.dataplane_services import DataplaneServices
|
|
239
253
|
from openapi_client.models.dataset import Dataset
|
|
240
254
|
from openapi_client.models.dataset_dag import DatasetDag
|
|
@@ -283,6 +297,7 @@ from openapi_client.models.decoratedproductionjob_response import Decoratedprodu
|
|
|
283
297
|
from openapi_client.models.decoratedproductionjobstatetransition_list_response import DecoratedproductionjobstatetransitionListResponse
|
|
284
298
|
from openapi_client.models.decoratedproductionservicev2_apimodel_response import Decoratedproductionservicev2ApimodelResponse
|
|
285
299
|
from openapi_client.models.decoratedproductionservicev2_versionapimodel_list_response import Decoratedproductionservicev2VersionapimodelListResponse
|
|
300
|
+
from openapi_client.models.decoratedproductionservicev2_versionapimodel_response import Decoratedproductionservicev2VersionapimodelResponse
|
|
286
301
|
from openapi_client.models.decoratedschedule_list_response import DecoratedscheduleListResponse
|
|
287
302
|
from openapi_client.models.decoratedschedule_response import DecoratedscheduleResponse
|
|
288
303
|
from openapi_client.models.decoratedservedeployment_list_response import DecoratedservedeploymentListResponse
|
|
@@ -516,6 +531,7 @@ from openapi_client.models.page_query import PageQuery
|
|
|
516
531
|
from openapi_client.models.partition_info import PartitionInfo
|
|
517
532
|
from openapi_client.models.pause_schedule import PauseSchedule
|
|
518
533
|
from openapi_client.models.permission_level import PermissionLevel
|
|
534
|
+
from openapi_client.models.physical_resources import PhysicalResources
|
|
519
535
|
from openapi_client.models.plan_status import PlanStatus
|
|
520
536
|
from openapi_client.models.presigned_url_response import PresignedUrlResponse
|
|
521
537
|
from openapi_client.models.production_job import ProductionJob
|
|
@@ -584,6 +600,7 @@ from openapi_client.models.sso_mode import SSOMode
|
|
|
584
600
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
|
585
601
|
from openapi_client.models.schedule_config import ScheduleConfig
|
|
586
602
|
from openapi_client.models.scheduler_info import SchedulerInfo
|
|
603
|
+
from openapi_client.models.schema_metadata import SchemaMetadata
|
|
587
604
|
from openapi_client.models.serve_deployment_grafana_dashboard_status import ServeDeploymentGrafanaDashboardStatus
|
|
588
605
|
from openapi_client.models.serve_deployment_state import ServeDeploymentState
|
|
589
606
|
from openapi_client.models.server_session_token import ServerSessionToken
|
|
@@ -633,6 +650,7 @@ from openapi_client.models.summarize_machine_pool_response import SummarizeMachi
|
|
|
633
650
|
from openapi_client.models.summarizemachinepoolresponse_response import SummarizemachinepoolresponseResponse
|
|
634
651
|
from openapi_client.models.support_requests_query import SupportRequestsQuery
|
|
635
652
|
from openapi_client.models.system_workload_name import SystemWorkloadName
|
|
653
|
+
from openapi_client.models.table_data_preview import TableDataPreview
|
|
636
654
|
from openapi_client.models.tag_key import TagKey
|
|
637
655
|
from openapi_client.models.tag_key_value import TagKeyValue
|
|
638
656
|
from openapi_client.models.tag_search_in import TagSearchIn
|
|
@@ -710,6 +728,7 @@ from openapi_client.models.utm_fields import UtmFields
|
|
|
710
728
|
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
|
711
729
|
from openapi_client.models.validation_error import ValidationError
|
|
712
730
|
from openapi_client.models.validation_status import ValidationStatus
|
|
731
|
+
from openapi_client.models.volume_metadata import VolumeMetadata
|
|
713
732
|
from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
|
|
714
733
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
|
715
734
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|