databricks-sdk 0.57.0__py3-none-any.whl → 0.58.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 (30) hide show
  1. databricks/sdk/__init__.py +25 -4
  2. databricks/sdk/service/aibuilder.py +0 -36
  3. databricks/sdk/service/apps.py +1 -3
  4. databricks/sdk/service/billing.py +53 -23
  5. databricks/sdk/service/catalog.py +1692 -150
  6. databricks/sdk/service/cleanrooms.py +3 -22
  7. databricks/sdk/service/compute.py +245 -322
  8. databricks/sdk/service/dashboards.py +129 -162
  9. databricks/sdk/service/database.py +612 -97
  10. databricks/sdk/service/iam.py +3 -3
  11. databricks/sdk/service/jobs.py +6 -129
  12. databricks/sdk/service/marketplace.py +3 -2
  13. databricks/sdk/service/ml.py +713 -262
  14. databricks/sdk/service/oauth2.py +0 -1
  15. databricks/sdk/service/pipelines.py +12 -29
  16. databricks/sdk/service/provisioning.py +7 -125
  17. databricks/sdk/service/qualitymonitorv2.py +0 -18
  18. databricks/sdk/service/serving.py +39 -13
  19. databricks/sdk/service/settings.py +11 -128
  20. databricks/sdk/service/sharing.py +3 -9
  21. databricks/sdk/service/sql.py +94 -74
  22. databricks/sdk/service/vectorsearch.py +0 -19
  23. databricks/sdk/service/workspace.py +2 -6
  24. databricks/sdk/version.py +1 -1
  25. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.58.0.dist-info}/METADATA +1 -1
  26. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.58.0.dist-info}/RECORD +30 -30
  27. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.58.0.dist-info}/WHEEL +0 -0
  28. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.58.0.dist-info}/licenses/LICENSE +0 -0
  29. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.58.0.dist-info}/licenses/NOTICE +0 -0
  30. {databricks_sdk-0.57.0.dist-info → databricks_sdk-0.58.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
@@ -1230,7 +1211,6 @@ class CleanRoomAssetsAPI:
1230
1211
  :param clean_room_name: str
1231
1212
  Name of the clean room.
1232
1213
  :param asset: :class:`CleanRoomAsset`
1233
- Metadata of the clean room asset
1234
1214
 
1235
1215
  :returns: :class:`CleanRoomAsset`
1236
1216
  """
@@ -1332,7 +1312,8 @@ class CleanRoomAssetsAPI:
1332
1312
 
1333
1313
  For notebooks, the name is the notebook file name.
1334
1314
  :param asset: :class:`CleanRoomAsset`
1335
- Metadata of the clean room asset
1315
+ The asset to update. The asset's `name` and `asset_type` fields are used to identify the asset to
1316
+ update.
1336
1317
 
1337
1318
  :returns: :class:`CleanRoomAsset`
1338
1319
  """
@@ -1403,7 +1384,7 @@ class CleanRoomTaskRunsAPI:
1403
1384
  class CleanRoomsAPI:
1404
1385
  """A clean room uses Delta Sharing and serverless compute to provide a secure and privacy-protecting
1405
1386
  environment where multiple parties can work together on sensitive enterprise data without direct access to
1406
- each others data."""
1387
+ each other's data."""
1407
1388
 
1408
1389
  def __init__(self, api_client):
1409
1390
  self._api = api_client