databricks-sdk 0.55.0__py3-none-any.whl → 0.56.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.

@@ -22,6 +22,7 @@ class AuthenticationType(Enum):
22
22
 
23
23
  DATABRICKS = "DATABRICKS"
24
24
  OAUTH_CLIENT_CREDENTIALS = "OAUTH_CLIENT_CREDENTIALS"
25
+ OIDC_FEDERATION = "OIDC_FEDERATION"
25
26
  TOKEN = "TOKEN"
26
27
 
27
28
 
@@ -2763,7 +2764,7 @@ class UpdateShare:
2763
2764
  @dataclass
2764
2765
  class UpdateSharePermissions:
2765
2766
  changes: Optional[List[PermissionsChange]] = None
2766
- """Array of permission changes."""
2767
+ """Array of permissions change objects."""
2767
2768
 
2768
2769
  name: Optional[str] = None
2769
2770
  """The name of the share."""
@@ -3999,7 +4000,7 @@ class SharesAPI:
3999
4000
  :param name: str
4000
4001
  The name of the share.
4001
4002
  :param changes: List[:class:`PermissionsChange`] (optional)
4002
- Array of permission changes.
4003
+ Array of permissions change objects.
4003
4004
  :param omit_permissions_list: bool (optional)
4004
4005
  Optional. Whether to return the latest permissions list of the share in the response.
4005
4006
 
@@ -1696,6 +1696,68 @@ class CreateQueryRequestQuery:
1696
1696
  )
1697
1697
 
1698
1698
 
1699
+ @dataclass
1700
+ class CreateQueryVisualizationsLegacyRequest:
1701
+ """Add visualization to a query"""
1702
+
1703
+ query_id: str
1704
+ """The identifier returned by :method:queries/create"""
1705
+
1706
+ type: str
1707
+ """The type of visualization: chart, table, pivot table, and so on."""
1708
+
1709
+ options: Any
1710
+ """The options object varies widely from one visualization type to the next and is unsupported.
1711
+ Databricks does not recommend modifying visualization settings in JSON."""
1712
+
1713
+ description: Optional[str] = None
1714
+ """A short description of this visualization. This is not displayed in the UI."""
1715
+
1716
+ name: Optional[str] = None
1717
+ """The name of the visualization that appears on dashboards and the query screen."""
1718
+
1719
+ def as_dict(self) -> dict:
1720
+ """Serializes the CreateQueryVisualizationsLegacyRequest into a dictionary suitable for use as a JSON request body."""
1721
+ body = {}
1722
+ if self.description is not None:
1723
+ body["description"] = self.description
1724
+ if self.name is not None:
1725
+ body["name"] = self.name
1726
+ if self.options:
1727
+ body["options"] = self.options
1728
+ if self.query_id is not None:
1729
+ body["query_id"] = self.query_id
1730
+ if self.type is not None:
1731
+ body["type"] = self.type
1732
+ return body
1733
+
1734
+ def as_shallow_dict(self) -> dict:
1735
+ """Serializes the CreateQueryVisualizationsLegacyRequest into a shallow dictionary of its immediate attributes."""
1736
+ body = {}
1737
+ if self.description is not None:
1738
+ body["description"] = self.description
1739
+ if self.name is not None:
1740
+ body["name"] = self.name
1741
+ if self.options:
1742
+ body["options"] = self.options
1743
+ if self.query_id is not None:
1744
+ body["query_id"] = self.query_id
1745
+ if self.type is not None:
1746
+ body["type"] = self.type
1747
+ return body
1748
+
1749
+ @classmethod
1750
+ def from_dict(cls, d: Dict[str, Any]) -> CreateQueryVisualizationsLegacyRequest:
1751
+ """Deserializes the CreateQueryVisualizationsLegacyRequest from a dictionary."""
1752
+ return cls(
1753
+ description=d.get("description", None),
1754
+ name=d.get("name", None),
1755
+ options=d.get("options", None),
1756
+ query_id=d.get("query_id", None),
1757
+ type=d.get("type", None),
1758
+ )
1759
+
1760
+
1699
1761
  @dataclass
1700
1762
  class CreateVisualizationRequest:
1701
1763
  visualization: Optional[CreateVisualizationRequestVisualization] = None
@@ -6047,6 +6109,10 @@ class QueryMetrics:
6047
6109
  spill_to_disk_bytes: Optional[int] = None
6048
6110
  """Size of data temporarily written to disk while executing the query, in bytes."""
6049
6111
 
6112
+ task_time_over_time_range: Optional[TaskTimeOverRange] = None
6113
+ """sum of task times completed in a range of wall clock time, approximated to a configurable number
6114
+ of points aggregated over all stages and jobs in the query (based on task_total_time_ms)"""
6115
+
6050
6116
  task_total_time_ms: Optional[int] = None
6051
6117
  """Sum of execution time for all of the query’s tasks, in milliseconds."""
6052
6118
 
@@ -6097,6 +6163,8 @@ class QueryMetrics:
6097
6163
  body["rows_read_count"] = self.rows_read_count
6098
6164
  if self.spill_to_disk_bytes is not None:
6099
6165
  body["spill_to_disk_bytes"] = self.spill_to_disk_bytes
6166
+ if self.task_time_over_time_range:
6167
+ body["task_time_over_time_range"] = self.task_time_over_time_range.as_dict()
6100
6168
  if self.task_total_time_ms is not None:
6101
6169
  body["task_total_time_ms"] = self.task_total_time_ms
6102
6170
  if self.total_time_ms is not None:
@@ -6146,6 +6214,8 @@ class QueryMetrics:
6146
6214
  body["rows_read_count"] = self.rows_read_count
6147
6215
  if self.spill_to_disk_bytes is not None:
6148
6216
  body["spill_to_disk_bytes"] = self.spill_to_disk_bytes
6217
+ if self.task_time_over_time_range:
6218
+ body["task_time_over_time_range"] = self.task_time_over_time_range
6149
6219
  if self.task_total_time_ms is not None:
6150
6220
  body["task_total_time_ms"] = self.task_total_time_ms
6151
6221
  if self.total_time_ms is not None:
@@ -6177,6 +6247,7 @@ class QueryMetrics:
6177
6247
  rows_produced_count=d.get("rows_produced_count", None),
6178
6248
  rows_read_count=d.get("rows_read_count", None),
6179
6249
  spill_to_disk_bytes=d.get("spill_to_disk_bytes", None),
6250
+ task_time_over_time_range=_from_dict(d, "task_time_over_time_range", TaskTimeOverRange),
6180
6251
  task_total_time_ms=d.get("task_total_time_ms", None),
6181
6252
  total_time_ms=d.get("total_time_ms", None),
6182
6253
  write_remote_bytes=d.get("write_remote_bytes", None),
@@ -6763,6 +6834,50 @@ class ServiceErrorCode(Enum):
6763
6834
  WORKSPACE_TEMPORARILY_UNAVAILABLE = "WORKSPACE_TEMPORARILY_UNAVAILABLE"
6764
6835
 
6765
6836
 
6837
+ @dataclass
6838
+ class SetRequest:
6839
+ """Set object ACL"""
6840
+
6841
+ access_control_list: Optional[List[AccessControl]] = None
6842
+
6843
+ object_id: Optional[str] = None
6844
+ """Object ID. The ACL for the object with this UUID is overwritten by this request's POST content."""
6845
+
6846
+ object_type: Optional[ObjectTypePlural] = None
6847
+ """The type of object permission to set."""
6848
+
6849
+ def as_dict(self) -> dict:
6850
+ """Serializes the SetRequest into a dictionary suitable for use as a JSON request body."""
6851
+ body = {}
6852
+ if self.access_control_list:
6853
+ body["access_control_list"] = [v.as_dict() for v in self.access_control_list]
6854
+ if self.object_id is not None:
6855
+ body["objectId"] = self.object_id
6856
+ if self.object_type is not None:
6857
+ body["objectType"] = self.object_type.value
6858
+ return body
6859
+
6860
+ def as_shallow_dict(self) -> dict:
6861
+ """Serializes the SetRequest into a shallow dictionary of its immediate attributes."""
6862
+ body = {}
6863
+ if self.access_control_list:
6864
+ body["access_control_list"] = self.access_control_list
6865
+ if self.object_id is not None:
6866
+ body["objectId"] = self.object_id
6867
+ if self.object_type is not None:
6868
+ body["objectType"] = self.object_type
6869
+ return body
6870
+
6871
+ @classmethod
6872
+ def from_dict(cls, d: Dict[str, Any]) -> SetRequest:
6873
+ """Deserializes the SetRequest from a dictionary."""
6874
+ return cls(
6875
+ access_control_list=_repeated_dict(d, "access_control_list", AccessControl),
6876
+ object_id=d.get("objectId", None),
6877
+ object_type=_enum(d, "objectType", ObjectTypePlural),
6878
+ )
6879
+
6880
+
6766
6881
  @dataclass
6767
6882
  class SetResponse:
6768
6883
  access_control_list: Optional[List[AccessControl]] = None
@@ -7167,6 +7282,63 @@ class SuccessMessage(Enum):
7167
7282
  SUCCESS = "Success"
7168
7283
 
7169
7284
 
7285
+ @dataclass
7286
+ class TaskTimeOverRange:
7287
+ entries: Optional[List[TaskTimeOverRangeEntry]] = None
7288
+
7289
+ interval: Optional[int] = None
7290
+ """interval length for all entries (difference in start time and end time of an entry range) the
7291
+ same for all entries start time of first interval is query_start_time_ms"""
7292
+
7293
+ def as_dict(self) -> dict:
7294
+ """Serializes the TaskTimeOverRange into a dictionary suitable for use as a JSON request body."""
7295
+ body = {}
7296
+ if self.entries:
7297
+ body["entries"] = [v.as_dict() for v in self.entries]
7298
+ if self.interval is not None:
7299
+ body["interval"] = self.interval
7300
+ return body
7301
+
7302
+ def as_shallow_dict(self) -> dict:
7303
+ """Serializes the TaskTimeOverRange into a shallow dictionary of its immediate attributes."""
7304
+ body = {}
7305
+ if self.entries:
7306
+ body["entries"] = self.entries
7307
+ if self.interval is not None:
7308
+ body["interval"] = self.interval
7309
+ return body
7310
+
7311
+ @classmethod
7312
+ def from_dict(cls, d: Dict[str, Any]) -> TaskTimeOverRange:
7313
+ """Deserializes the TaskTimeOverRange from a dictionary."""
7314
+ return cls(entries=_repeated_dict(d, "entries", TaskTimeOverRangeEntry), interval=d.get("interval", None))
7315
+
7316
+
7317
+ @dataclass
7318
+ class TaskTimeOverRangeEntry:
7319
+ task_completed_time_ms: Optional[int] = None
7320
+ """total task completion time in this time range, aggregated over all stages and jobs in the query"""
7321
+
7322
+ def as_dict(self) -> dict:
7323
+ """Serializes the TaskTimeOverRangeEntry into a dictionary suitable for use as a JSON request body."""
7324
+ body = {}
7325
+ if self.task_completed_time_ms is not None:
7326
+ body["task_completed_time_ms"] = self.task_completed_time_ms
7327
+ return body
7328
+
7329
+ def as_shallow_dict(self) -> dict:
7330
+ """Serializes the TaskTimeOverRangeEntry into a shallow dictionary of its immediate attributes."""
7331
+ body = {}
7332
+ if self.task_completed_time_ms is not None:
7333
+ body["task_completed_time_ms"] = self.task_completed_time_ms
7334
+ return body
7335
+
7336
+ @classmethod
7337
+ def from_dict(cls, d: Dict[str, Any]) -> TaskTimeOverRangeEntry:
7338
+ """Deserializes the TaskTimeOverRangeEntry from a dictionary."""
7339
+ return cls(task_completed_time_ms=d.get("task_completed_time_ms", None))
7340
+
7341
+
7170
7342
  @dataclass
7171
7343
  class TerminationReason:
7172
7344
  code: Optional[TerminationReasonCode] = None
@@ -7384,6 +7556,51 @@ class TransferOwnershipObjectId:
7384
7556
  return cls(new_owner=d.get("new_owner", None))
7385
7557
 
7386
7558
 
7559
+ @dataclass
7560
+ class TransferOwnershipRequest:
7561
+ """Transfer object ownership"""
7562
+
7563
+ new_owner: Optional[str] = None
7564
+ """Email address for the new owner, who must exist in the workspace."""
7565
+
7566
+ object_id: Optional[TransferOwnershipObjectId] = None
7567
+ """The ID of the object on which to change ownership."""
7568
+
7569
+ object_type: Optional[OwnableObjectType] = None
7570
+ """The type of object on which to change ownership."""
7571
+
7572
+ def as_dict(self) -> dict:
7573
+ """Serializes the TransferOwnershipRequest into a dictionary suitable for use as a JSON request body."""
7574
+ body = {}
7575
+ if self.new_owner is not None:
7576
+ body["new_owner"] = self.new_owner
7577
+ if self.object_id:
7578
+ body["objectId"] = self.object_id.as_dict()
7579
+ if self.object_type is not None:
7580
+ body["objectType"] = self.object_type.value
7581
+ return body
7582
+
7583
+ def as_shallow_dict(self) -> dict:
7584
+ """Serializes the TransferOwnershipRequest into a shallow dictionary of its immediate attributes."""
7585
+ body = {}
7586
+ if self.new_owner is not None:
7587
+ body["new_owner"] = self.new_owner
7588
+ if self.object_id:
7589
+ body["objectId"] = self.object_id
7590
+ if self.object_type is not None:
7591
+ body["objectType"] = self.object_type
7592
+ return body
7593
+
7594
+ @classmethod
7595
+ def from_dict(cls, d: Dict[str, Any]) -> TransferOwnershipRequest:
7596
+ """Deserializes the TransferOwnershipRequest from a dictionary."""
7597
+ return cls(
7598
+ new_owner=d.get("new_owner", None),
7599
+ object_id=_from_dict(d, "objectId", TransferOwnershipObjectId),
7600
+ object_type=_enum(d, "objectType", OwnableObjectType),
7601
+ )
7602
+
7603
+
7387
7604
  @dataclass
7388
7605
  class UpdateAlertRequest:
7389
7606
  update_mask: str
@@ -8760,7 +8977,7 @@ class AlertsLegacyAPI:
8760
8977
 
8761
8978
 
8762
8979
  class AlertsV2API:
8763
- """TODO: Add description"""
8980
+ """New version of SQL Alerts"""
8764
8981
 
8765
8982
  def __init__(self, api_client):
8766
8983
  self._api = api_client
databricks/sdk/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.55.0"
1
+ __version__ = "0.56.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: databricks-sdk
3
- Version: 0.55.0
3
+ Version: 0.56.0
4
4
  Summary: Databricks SDK for Python (Beta)
5
5
  Project-URL: Documentation, https://databricks-sdk-py.readthedocs.io
6
6
  Keywords: databricks,sdk
@@ -1,5 +1,5 @@
1
1
  databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
2
- databricks/sdk/__init__.py,sha256=lliePy2zXmwEuf6KYDV6LjEl3ehc-SwCCZNvipK0xtg,57869
2
+ databricks/sdk/__init__.py,sha256=PNn6lVdcn-IpZyM2Ll_VCmL1GapmIcpLWd3uZ7RXGSw,58527
3
3
  databricks/sdk/_base_client.py,sha256=IMHtzC5BhWt-lBVjifewR1Ah5fegGDMv0__-O1hCxWI,15850
4
4
  databricks/sdk/_property.py,sha256=ccbxhkXZmZOxbx2sqKMTzhVZDuvWXG0WPHFRgac6JAM,1701
5
5
  databricks/sdk/azure.py,sha256=sN_ARpmP9h1JovtiHIsDLtrVQP_K11eNDDtHS6PD19k,1015
@@ -17,7 +17,7 @@ databricks/sdk/oidc_token_supplier.py,sha256=QrO6J0QY4yFfcdQDL5h2OfxMxvBZJPtPmPe
17
17
  databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
18
18
  databricks/sdk/retries.py,sha256=7k2kEexGqGKXHNAWHbPFSZSugU8UIU0qtyly_hix22Q,2581
19
19
  databricks/sdk/useragent.py,sha256=boEgzTv-Zmo6boipZKjSopNy0CXg4GShC1_lTKpJgqs,7361
20
- databricks/sdk/version.py,sha256=UQLHFqXC6UhDcoKB4MFAazCsPAeQEfBN68BEvb4D2Tk,23
20
+ databricks/sdk/version.py,sha256=pLF99dIRilisWyZd9CliPPWqIlV81Xy8XtGEMuThTaM,23
21
21
  databricks/sdk/_widgets/__init__.py,sha256=VhI-VvLlr3rKUT1nbROslHJIbmZX_tPJ9rRhrdFsYUA,2811
22
22
  databricks/sdk/_widgets/default_widgets_utils.py,sha256=_hwCbptLbRzWEmknco0H1wQNAYcuy2pjFO9NiRbvFeo,1127
23
23
  databricks/sdk/_widgets/ipywidgets_utils.py,sha256=mg3rEPG9z76e0yVjGgcLybUvd_zSuN5ziGeKiZ-c8Ew,2927
@@ -44,29 +44,32 @@ databricks/sdk/runtime/__init__.py,sha256=6nthZxeYY1HjHieQcP7kXVLIId7w2yfHpZRXXt
44
44
  databricks/sdk/runtime/dbutils_stub.py,sha256=S_pgWyGmwp3Ay-pMDEXccYsPwNVqCtz7MpD3fZVlHUA,11408
45
45
  databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  databricks/sdk/service/_internal.py,sha256=PY83MPehEwGuMzCnyvolqglnfZeQ7-eS38kedTa7KDU,1985
47
+ databricks/sdk/service/aibuilder.py,sha256=u3WTVBm0sw8aeC9p4kfZAlHtl_6GU2DiNK_vUAMNgfk,12436
47
48
  databricks/sdk/service/apps.py,sha256=az06ij0_I4G3UcdRs5Pob4uXn5EjJoysXl1F8rR_NQ4,58080
48
- databricks/sdk/service/billing.py,sha256=2_6QVp6KPTKqFHgoaa8dGSOrD1P8i-UjKaupWOxpMW8,99177
49
- databricks/sdk/service/catalog.py,sha256=8zJ3NqN90r1GhxeqpvY3rhUiEW3rJ5c89220B2nG2Lk,646689
50
- databricks/sdk/service/cleanrooms.py,sha256=ZrlsMFJ8QSXSztwwQ-qa1QKfe-y--0yAOrfzhRjgyYI,63372
51
- databricks/sdk/service/compute.py,sha256=okznn__wKCZDaDIarf2Qp7SySK6wMa3z9gu5mxPLsCc,571739
52
- databricks/sdk/service/dashboards.py,sha256=NAG1DOPqp8IWcqLVTpB27FeFI56jC7VeX6uoEpJug5o,118497
53
- databricks/sdk/service/files.py,sha256=nAbN1US56vJYk-YDPShfT_mgk_KIhgbidtSGTraCqPo,46335
54
- databricks/sdk/service/iam.py,sha256=E4_FQT0eumpBfR_qy8IK1qL-ssSEhYrJJXsPb6GUzF4,179229
55
- databricks/sdk/service/jobs.py,sha256=tDWwAtN54DvoHIxLld1oKe6DpywSjvbjA-Jl9g3vF8s,466539
49
+ databricks/sdk/service/billing.py,sha256=fAJQNJcFSMwIYlAiX-s9S4FvWZfXE5niwNw7HI9nMUo,96079
50
+ databricks/sdk/service/catalog.py,sha256=ZcHscrNVi0T0gU0uLJXD0PpeEtz9_JXi0DuzoRuPwsk,625998
51
+ databricks/sdk/service/cleanrooms.py,sha256=mFg0hp7GtO_ZZBZ6p38Gx-ggMNUCJpuvITuh6n-zTLs,63702
52
+ databricks/sdk/service/compute.py,sha256=ZNERuPZGZJkNT54Ye9WJhh4ctEssIpcPIRo7eOO8RPg,570795
53
+ databricks/sdk/service/dashboards.py,sha256=aDDf23c7O4hAMlMzpAz4m1eSLgI2OjEjhE04PxpSTGc,103473
54
+ databricks/sdk/service/database.py,sha256=i-CPsMqX8RJnaa_Nr_J6CxDuoyhls-6rfsKxYToQ8D0,51164
55
+ databricks/sdk/service/files.py,sha256=rMu5rmlnhGr1Sic1XWOZi_Pnv-pARQfbumO50JxS4DA,46401
56
+ databricks/sdk/service/iam.py,sha256=ZURErK_Nd9aIuU1b2kGZZJg9tXBSfNBRC7QpozJBvwc,179241
57
+ databricks/sdk/service/jobs.py,sha256=KfYPBWfgll_LKXg8KgB_bhGiMqoAx2h7WfJoKsA1Efw,475787
56
58
  databricks/sdk/service/marketplace.py,sha256=NLCJ7zb0Oj5nhLth9R1Szuz6fSSoxAnsKvFhKgx994s,175741
57
- databricks/sdk/service/ml.py,sha256=ovv33tW8aS28smK8IrDo6J_hxfOeA2Qe_49tWPT6DzY,374308
59
+ databricks/sdk/service/ml.py,sha256=orS3-xEJWtPibxshGDvyso4MtLdrc9UKGcff6bKlB3E,363830
58
60
  databricks/sdk/service/oauth2.py,sha256=OMXkb5eo4D7WfCrxBlJeY_jVTHXdpZNJl-Sv8o25jxc,81101
59
- databricks/sdk/service/pipelines.py,sha256=ha9WnaZguTiS-gXdQ9UFptxCFkGdfKcy41t-umRi3ww,173948
60
- databricks/sdk/service/provisioning.py,sha256=-Ly2o02i-jhNmiP9zLPeYF8H2usoB-oTG0RLF5gkIpc,169311
61
- databricks/sdk/service/serving.py,sha256=ugI94MriielW2X8bjm5C_cGqEwMNFsGVcsiqOY89RLQ,226865
62
- databricks/sdk/service/settings.py,sha256=GJ68sZMDPSOTZqc2-Nd1gEYgWM3dul80zS94mU620vQ,400566
63
- databricks/sdk/service/sharing.py,sha256=i7d5ggmOnHJ2gVp4PfPmf14M-AUDRIU-XZb4SqkrVCo,160173
64
- databricks/sdk/service/sql.py,sha256=v6uspo4o0VoUW0T2eHhPDlJYeYah1vhR_WMxVwEhu2Y,442747
61
+ databricks/sdk/service/pipelines.py,sha256=OUdYMS9h1gxiwpK3OqaXNqJochCaByOuvQ_qBxxO4zA,176094
62
+ databricks/sdk/service/provisioning.py,sha256=CEzgilTXUNbLjDsvVPxC3mYsAVKHO4v0TnwSIgI373Q,169281
63
+ databricks/sdk/service/qualitymonitorv2.py,sha256=lhnw_7wyr3Uj0ywCNE15SUQXg-Qnhz_sJ_wFcXP5w9w,9991
64
+ databricks/sdk/service/serving.py,sha256=hrGH4qCSJooHSdUhqyMUXJKfPg126q53cpHpXuWMBUI,231597
65
+ databricks/sdk/service/settings.py,sha256=KmPLdnoJoOK7flmuMvrPQvgPCaPiEuQqTj9G4emIFSM,441251
66
+ databricks/sdk/service/sharing.py,sha256=ugzmeXN-1PMZS58JHaQZzUSyxmSMebO3dHCsFGbrmkc,160229
67
+ databricks/sdk/service/sql.py,sha256=xCj080qniFiVafkt-pne71vfd45sKgLARpObCIDyt90,451364
65
68
  databricks/sdk/service/vectorsearch.py,sha256=Y1yUJwoY7rg6HWKh7_90aJzIWNiWEG2WUw0i1n3KH7I,86701
66
69
  databricks/sdk/service/workspace.py,sha256=T0ZbnG1qcPjKysGO_tBzl5x1PyalydeYJRBZbooYNm0,130893
67
- databricks_sdk-0.55.0.dist-info/licenses/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
68
- databricks_sdk-0.55.0.dist-info/licenses/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
69
- databricks_sdk-0.55.0.dist-info/METADATA,sha256=ufiMw6V7EtmZD-5ZuCoanbezk94CfykKLbtNASbNFDI,39397
70
- databricks_sdk-0.55.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
71
- databricks_sdk-0.55.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
72
- databricks_sdk-0.55.0.dist-info/RECORD,,
70
+ databricks_sdk-0.56.0.dist-info/licenses/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
71
+ databricks_sdk-0.56.0.dist-info/licenses/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
72
+ databricks_sdk-0.56.0.dist-info/METADATA,sha256=XmtTcmgu2d7o6z-RTevL5mQ5D_FsyTVa-oCXcat2ChQ,39397
73
+ databricks_sdk-0.56.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
74
+ databricks_sdk-0.56.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
75
+ databricks_sdk-0.56.0.dist-info/RECORD,,