databricks-sdk 0.57.0__py3-none-any.whl → 0.59.0__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.

Potentially problematic release.


This version of databricks-sdk might be problematic. Click here for more details.

Files changed (31) hide show
  1. databricks/sdk/__init__.py +38 -9
  2. databricks/sdk/service/aibuilder.py +0 -163
  3. databricks/sdk/service/apps.py +53 -49
  4. databricks/sdk/service/billing.py +62 -223
  5. databricks/sdk/service/catalog.py +3052 -3707
  6. databricks/sdk/service/cleanrooms.py +5 -54
  7. databricks/sdk/service/compute.py +579 -2715
  8. databricks/sdk/service/dashboards.py +108 -317
  9. databricks/sdk/service/database.py +603 -122
  10. databricks/sdk/service/files.py +2 -218
  11. databricks/sdk/service/iam.py +19 -298
  12. databricks/sdk/service/jobs.py +77 -1263
  13. databricks/sdk/service/marketplace.py +3 -575
  14. databricks/sdk/service/ml.py +816 -2734
  15. databricks/sdk/service/oauth2.py +122 -238
  16. databricks/sdk/service/pipelines.py +133 -724
  17. databricks/sdk/service/provisioning.py +36 -757
  18. databricks/sdk/service/qualitymonitorv2.py +0 -18
  19. databricks/sdk/service/serving.py +37 -583
  20. databricks/sdk/service/settings.py +282 -1768
  21. databricks/sdk/service/sharing.py +6 -478
  22. databricks/sdk/service/sql.py +129 -1696
  23. databricks/sdk/service/vectorsearch.py +0 -410
  24. databricks/sdk/service/workspace.py +252 -727
  25. databricks/sdk/version.py +1 -1
  26. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.59.0.dist-info}/METADATA +1 -1
  27. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.59.0.dist-info}/RECORD +31 -31
  28. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.59.0.dist-info}/WHEEL +0 -0
  29. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.59.0.dist-info}/licenses/LICENSE +0 -0
  30. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.59.0.dist-info}/licenses/NOTICE +0 -0
  31. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.59.0.dist-info}/top_level.txt +0 -0
@@ -851,7 +851,6 @@ class CleanRoomRemoteDetail:
851
851
  2. Its invite_recipient_email is empty."""
852
852
 
853
853
  compliance_security_profile: Optional[ComplianceSecurityProfile] = None
854
- """The compliance security profile used to process regulated data following compliance standards."""
855
854
 
856
855
  creator: Optional[CleanRoomCollaborator] = None
857
856
  """Collaborator who creates the clean room."""
@@ -1063,24 +1062,6 @@ class DeleteCleanRoomAssetResponse:
1063
1062
  return cls()
1064
1063
 
1065
1064
 
1066
- @dataclass
1067
- class DeleteResponse:
1068
- def as_dict(self) -> dict:
1069
- """Serializes the DeleteResponse into a dictionary suitable for use as a JSON request body."""
1070
- body = {}
1071
- return body
1072
-
1073
- def as_shallow_dict(self) -> dict:
1074
- """Serializes the DeleteResponse into a shallow dictionary of its immediate attributes."""
1075
- body = {}
1076
- return body
1077
-
1078
- @classmethod
1079
- def from_dict(cls, d: Dict[str, Any]) -> DeleteResponse:
1080
- """Deserializes the DeleteResponse from a dictionary."""
1081
- return cls()
1082
-
1083
-
1084
1065
  @dataclass
1085
1066
  class ListCleanRoomAssetsResponse:
1086
1067
  assets: Optional[List[CleanRoomAsset]] = None
@@ -1183,37 +1164,6 @@ class ListCleanRoomsResponse:
1183
1164
  )
1184
1165
 
1185
1166
 
1186
- @dataclass
1187
- class UpdateCleanRoomRequest:
1188
- clean_room: Optional[CleanRoom] = None
1189
-
1190
- name: Optional[str] = None
1191
- """Name of the clean room."""
1192
-
1193
- def as_dict(self) -> dict:
1194
- """Serializes the UpdateCleanRoomRequest into a dictionary suitable for use as a JSON request body."""
1195
- body = {}
1196
- if self.clean_room:
1197
- body["clean_room"] = self.clean_room.as_dict()
1198
- if self.name is not None:
1199
- body["name"] = self.name
1200
- return body
1201
-
1202
- def as_shallow_dict(self) -> dict:
1203
- """Serializes the UpdateCleanRoomRequest into a shallow dictionary of its immediate attributes."""
1204
- body = {}
1205
- if self.clean_room:
1206
- body["clean_room"] = self.clean_room
1207
- if self.name is not None:
1208
- body["name"] = self.name
1209
- return body
1210
-
1211
- @classmethod
1212
- def from_dict(cls, d: Dict[str, Any]) -> UpdateCleanRoomRequest:
1213
- """Deserializes the UpdateCleanRoomRequest from a dictionary."""
1214
- return cls(clean_room=_from_dict(d, "clean_room", CleanRoom), name=d.get("name", None))
1215
-
1216
-
1217
1167
  class CleanRoomAssetsAPI:
1218
1168
  """Clean room assets are data and code objects — Tables, volumes, and notebooks that are shared with the
1219
1169
  clean room."""
@@ -1228,9 +1178,9 @@ class CleanRoomAssetsAPI:
1228
1178
  access the asset. Typically, you should use a group as the clean room owner.
1229
1179
 
1230
1180
  :param clean_room_name: str
1231
- Name of the clean room.
1181
+ The name of the clean room this asset belongs to. This is an output-only field to ensure proper
1182
+ resource identification.
1232
1183
  :param asset: :class:`CleanRoomAsset`
1233
- Metadata of the clean room asset
1234
1184
 
1235
1185
  :returns: :class:`CleanRoomAsset`
1236
1186
  """
@@ -1332,7 +1282,8 @@ class CleanRoomAssetsAPI:
1332
1282
 
1333
1283
  For notebooks, the name is the notebook file name.
1334
1284
  :param asset: :class:`CleanRoomAsset`
1335
- Metadata of the clean room asset
1285
+ The asset to update. The asset's `name` and `asset_type` fields are used to identify the asset to
1286
+ update.
1336
1287
 
1337
1288
  :returns: :class:`CleanRoomAsset`
1338
1289
  """
@@ -1403,7 +1354,7 @@ class CleanRoomTaskRunsAPI:
1403
1354
  class CleanRoomsAPI:
1404
1355
  """A clean room uses Delta Sharing and serverless compute to provide a secure and privacy-protecting
1405
1356
  environment where multiple parties can work together on sensitive enterprise data without direct access to
1406
- each others data."""
1357
+ each other's data."""
1407
1358
 
1408
1359
  def __init__(self, api_client):
1409
1360
  self._api = api_client