databricks-sdk 0.58.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.
- databricks/sdk/__init__.py +13 -5
- databricks/sdk/service/aibuilder.py +0 -127
- databricks/sdk/service/apps.py +52 -46
- databricks/sdk/service/billing.py +9 -200
- databricks/sdk/service/catalog.py +5500 -7697
- databricks/sdk/service/cleanrooms.py +2 -32
- databricks/sdk/service/compute.py +456 -2515
- databricks/sdk/service/dashboards.py +1 -177
- databricks/sdk/service/database.py +18 -52
- databricks/sdk/service/files.py +2 -218
- databricks/sdk/service/iam.py +16 -295
- databricks/sdk/service/jobs.py +108 -1171
- databricks/sdk/service/marketplace.py +0 -573
- databricks/sdk/service/ml.py +76 -2445
- databricks/sdk/service/oauth2.py +122 -237
- databricks/sdk/service/pipelines.py +178 -752
- databricks/sdk/service/provisioning.py +0 -603
- databricks/sdk/service/serving.py +5 -577
- databricks/sdk/service/settings.py +191 -1560
- databricks/sdk/service/sharing.py +3 -469
- databricks/sdk/service/sql.py +117 -1704
- databricks/sdk/service/vectorsearch.py +0 -391
- databricks/sdk/service/workspace.py +250 -721
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.58.0.dist-info → databricks_sdk-0.59.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.58.0.dist-info → databricks_sdk-0.59.0.dist-info}/RECORD +30 -30
- {databricks_sdk-0.58.0.dist-info → databricks_sdk-0.59.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.58.0.dist-info → databricks_sdk-0.59.0.dist-info}/licenses/LICENSE +0 -0
- {databricks_sdk-0.58.0.dist-info → databricks_sdk-0.59.0.dist-info}/licenses/NOTICE +0 -0
- {databricks_sdk-0.58.0.dist-info → databricks_sdk-0.59.0.dist-info}/top_level.txt +0 -0
|
@@ -1164,37 +1164,6 @@ class ListCleanRoomsResponse:
|
|
|
1164
1164
|
)
|
|
1165
1165
|
|
|
1166
1166
|
|
|
1167
|
-
@dataclass
|
|
1168
|
-
class UpdateCleanRoomRequest:
|
|
1169
|
-
clean_room: Optional[CleanRoom] = None
|
|
1170
|
-
|
|
1171
|
-
name: Optional[str] = None
|
|
1172
|
-
"""Name of the clean room."""
|
|
1173
|
-
|
|
1174
|
-
def as_dict(self) -> dict:
|
|
1175
|
-
"""Serializes the UpdateCleanRoomRequest into a dictionary suitable for use as a JSON request body."""
|
|
1176
|
-
body = {}
|
|
1177
|
-
if self.clean_room:
|
|
1178
|
-
body["clean_room"] = self.clean_room.as_dict()
|
|
1179
|
-
if self.name is not None:
|
|
1180
|
-
body["name"] = self.name
|
|
1181
|
-
return body
|
|
1182
|
-
|
|
1183
|
-
def as_shallow_dict(self) -> dict:
|
|
1184
|
-
"""Serializes the UpdateCleanRoomRequest into a shallow dictionary of its immediate attributes."""
|
|
1185
|
-
body = {}
|
|
1186
|
-
if self.clean_room:
|
|
1187
|
-
body["clean_room"] = self.clean_room
|
|
1188
|
-
if self.name is not None:
|
|
1189
|
-
body["name"] = self.name
|
|
1190
|
-
return body
|
|
1191
|
-
|
|
1192
|
-
@classmethod
|
|
1193
|
-
def from_dict(cls, d: Dict[str, Any]) -> UpdateCleanRoomRequest:
|
|
1194
|
-
"""Deserializes the UpdateCleanRoomRequest from a dictionary."""
|
|
1195
|
-
return cls(clean_room=_from_dict(d, "clean_room", CleanRoom), name=d.get("name", None))
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
1167
|
class CleanRoomAssetsAPI:
|
|
1199
1168
|
"""Clean room assets are data and code objects — Tables, volumes, and notebooks that are shared with the
|
|
1200
1169
|
clean room."""
|
|
@@ -1209,7 +1178,8 @@ class CleanRoomAssetsAPI:
|
|
|
1209
1178
|
access the asset. Typically, you should use a group as the clean room owner.
|
|
1210
1179
|
|
|
1211
1180
|
:param clean_room_name: str
|
|
1212
|
-
|
|
1181
|
+
The name of the clean room this asset belongs to. This is an output-only field to ensure proper
|
|
1182
|
+
resource identification.
|
|
1213
1183
|
:param asset: :class:`CleanRoomAsset`
|
|
1214
1184
|
|
|
1215
1185
|
:returns: :class:`CleanRoomAsset`
|