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

@@ -1658,6 +1658,7 @@ class ProvidersAPI:
1658
1658
  if page_token is not None: query['page_token'] = page_token
1659
1659
  headers = {'Accept': 'application/json', }
1660
1660
 
1661
+ if "max_results" not in query: query['max_results'] = 0
1661
1662
  while True:
1662
1663
  json = self._api.do('GET', '/api/2.1/unity-catalog/providers', query=query, headers=headers)
1663
1664
  if 'providers' in json:
@@ -1699,12 +1700,18 @@ class ProvidersAPI:
1699
1700
  if page_token is not None: query['page_token'] = page_token
1700
1701
  headers = {'Accept': 'application/json', }
1701
1702
 
1702
- json = self._api.do('GET',
1703
- f'/api/2.1/unity-catalog/providers/{name}/shares',
1704
- query=query,
1705
- headers=headers)
1706
- parsed = ListProviderSharesResponse.from_dict(json).shares
1707
- return parsed if parsed is not None else []
1703
+ if "max_results" not in query: query['max_results'] = 0
1704
+ while True:
1705
+ json = self._api.do('GET',
1706
+ f'/api/2.1/unity-catalog/providers/{name}/shares',
1707
+ query=query,
1708
+ headers=headers)
1709
+ if 'shares' in json:
1710
+ for v in json['shares']:
1711
+ yield ProviderShare.from_dict(v)
1712
+ if 'next_page_token' not in json or not json['next_page_token']:
1713
+ return
1714
+ query['page_token'] = json['next_page_token']
1708
1715
 
1709
1716
  def update(self,
1710
1717
  name: str,
@@ -1937,6 +1944,7 @@ class RecipientsAPI:
1937
1944
  if page_token is not None: query['page_token'] = page_token
1938
1945
  headers = {'Accept': 'application/json', }
1939
1946
 
1947
+ if "max_results" not in query: query['max_results'] = 0
1940
1948
  while True:
1941
1949
  json = self._api.do('GET', '/api/2.1/unity-catalog/recipients', query=query, headers=headers)
1942
1950
  if 'recipients' in json:
@@ -2157,6 +2165,7 @@ class SharesAPI:
2157
2165
  if page_token is not None: query['page_token'] = page_token
2158
2166
  headers = {'Accept': 'application/json', }
2159
2167
 
2168
+ if "max_results" not in query: query['max_results'] = 0
2160
2169
  while True:
2161
2170
  json = self._api.do('GET', '/api/2.1/unity-catalog/shares', query=query, headers=headers)
2162
2171
  if 'shares' in json:
@@ -631,6 +631,79 @@ class ChannelName(Enum):
631
631
  CHANNEL_NAME_PREVIOUS = 'CHANNEL_NAME_PREVIOUS'
632
632
 
633
633
 
634
+ @dataclass
635
+ class ClientConfig:
636
+ allow_custom_js_visualizations: Optional[bool] = None
637
+
638
+ allow_downloads: Optional[bool] = None
639
+
640
+ allow_external_shares: Optional[bool] = None
641
+
642
+ allow_subscriptions: Optional[bool] = None
643
+
644
+ date_format: Optional[str] = None
645
+
646
+ date_time_format: Optional[str] = None
647
+
648
+ disable_publish: Optional[bool] = None
649
+
650
+ enable_legacy_autodetect_types: Optional[bool] = None
651
+
652
+ feature_show_permissions_control: Optional[bool] = None
653
+
654
+ hide_plotly_mode_bar: Optional[bool] = None
655
+
656
+ def as_dict(self) -> dict:
657
+ """Serializes the ClientConfig into a dictionary suitable for use as a JSON request body."""
658
+ body = {}
659
+ if self.allow_custom_js_visualizations is not None:
660
+ body['allow_custom_js_visualizations'] = self.allow_custom_js_visualizations
661
+ if self.allow_downloads is not None: body['allow_downloads'] = self.allow_downloads
662
+ if self.allow_external_shares is not None: body['allow_external_shares'] = self.allow_external_shares
663
+ if self.allow_subscriptions is not None: body['allow_subscriptions'] = self.allow_subscriptions
664
+ if self.date_format is not None: body['date_format'] = self.date_format
665
+ if self.date_time_format is not None: body['date_time_format'] = self.date_time_format
666
+ if self.disable_publish is not None: body['disable_publish'] = self.disable_publish
667
+ if self.enable_legacy_autodetect_types is not None:
668
+ body['enable_legacy_autodetect_types'] = self.enable_legacy_autodetect_types
669
+ if self.feature_show_permissions_control is not None:
670
+ body['feature_show_permissions_control'] = self.feature_show_permissions_control
671
+ if self.hide_plotly_mode_bar is not None: body['hide_plotly_mode_bar'] = self.hide_plotly_mode_bar
672
+ return body
673
+
674
+ def as_shallow_dict(self) -> dict:
675
+ """Serializes the ClientConfig into a shallow dictionary of its immediate attributes."""
676
+ body = {}
677
+ if self.allow_custom_js_visualizations is not None:
678
+ body['allow_custom_js_visualizations'] = self.allow_custom_js_visualizations
679
+ if self.allow_downloads is not None: body['allow_downloads'] = self.allow_downloads
680
+ if self.allow_external_shares is not None: body['allow_external_shares'] = self.allow_external_shares
681
+ if self.allow_subscriptions is not None: body['allow_subscriptions'] = self.allow_subscriptions
682
+ if self.date_format is not None: body['date_format'] = self.date_format
683
+ if self.date_time_format is not None: body['date_time_format'] = self.date_time_format
684
+ if self.disable_publish is not None: body['disable_publish'] = self.disable_publish
685
+ if self.enable_legacy_autodetect_types is not None:
686
+ body['enable_legacy_autodetect_types'] = self.enable_legacy_autodetect_types
687
+ if self.feature_show_permissions_control is not None:
688
+ body['feature_show_permissions_control'] = self.feature_show_permissions_control
689
+ if self.hide_plotly_mode_bar is not None: body['hide_plotly_mode_bar'] = self.hide_plotly_mode_bar
690
+ return body
691
+
692
+ @classmethod
693
+ def from_dict(cls, d: Dict[str, any]) -> ClientConfig:
694
+ """Deserializes the ClientConfig from a dictionary."""
695
+ return cls(allow_custom_js_visualizations=d.get('allow_custom_js_visualizations', None),
696
+ allow_downloads=d.get('allow_downloads', None),
697
+ allow_external_shares=d.get('allow_external_shares', None),
698
+ allow_subscriptions=d.get('allow_subscriptions', None),
699
+ date_format=d.get('date_format', None),
700
+ date_time_format=d.get('date_time_format', None),
701
+ disable_publish=d.get('disable_publish', None),
702
+ enable_legacy_autodetect_types=d.get('enable_legacy_autodetect_types', None),
703
+ feature_show_permissions_control=d.get('feature_show_permissions_control', None),
704
+ hide_plotly_mode_bar=d.get('hide_plotly_mode_bar', None))
705
+
706
+
634
707
  @dataclass
635
708
  class ColumnInfo:
636
709
  name: Optional[str] = None
@@ -5540,9 +5613,15 @@ class TransferOwnershipObjectId:
5540
5613
  @dataclass
5541
5614
  class UpdateAlertRequest:
5542
5615
  update_mask: str
5543
- """Field mask is required to be passed into the PATCH request. Field mask specifies which fields of
5544
- the setting payload will be updated. The field mask needs to be supplied as single string. To
5545
- specify multiple fields in the field mask, use comma as the separator (no space)."""
5616
+ """The field mask must be a single string, with multiple fields separated by commas (no spaces).
5617
+ The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
5618
+ (e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
5619
+ as only the entire collection field can be specified. Field names must exactly match the
5620
+ resource field names.
5621
+
5622
+ A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
5623
+ fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
5624
+ API changes in the future."""
5546
5625
 
5547
5626
  alert: Optional[UpdateAlertRequestAlert] = None
5548
5627
 
@@ -5646,9 +5725,15 @@ class UpdateAlertRequestAlert:
5646
5725
  @dataclass
5647
5726
  class UpdateQueryRequest:
5648
5727
  update_mask: str
5649
- """Field mask is required to be passed into the PATCH request. Field mask specifies which fields of
5650
- the setting payload will be updated. The field mask needs to be supplied as single string. To
5651
- specify multiple fields in the field mask, use comma as the separator (no space)."""
5728
+ """The field mask must be a single string, with multiple fields separated by commas (no spaces).
5729
+ The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
5730
+ (e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
5731
+ as only the entire collection field can be specified. Field names must exactly match the
5732
+ resource field names.
5733
+
5734
+ A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
5735
+ fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
5736
+ API changes in the future."""
5652
5737
 
5653
5738
  id: Optional[str] = None
5654
5739
 
@@ -5782,9 +5867,15 @@ class UpdateResponse:
5782
5867
  @dataclass
5783
5868
  class UpdateVisualizationRequest:
5784
5869
  update_mask: str
5785
- """Field mask is required to be passed into the PATCH request. Field mask specifies which fields of
5786
- the setting payload will be updated. The field mask needs to be supplied as single string. To
5787
- specify multiple fields in the field mask, use comma as the separator (no space)."""
5870
+ """The field mask must be a single string, with multiple fields separated by commas (no spaces).
5871
+ The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
5872
+ (e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
5873
+ as only the entire collection field can be specified. Field names must exactly match the
5874
+ resource field names.
5875
+
5876
+ A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
5877
+ fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
5878
+ API changes in the future."""
5788
5879
 
5789
5880
  id: Optional[str] = None
5790
5881
 
@@ -6464,9 +6555,15 @@ class AlertsAPI:
6464
6555
 
6465
6556
  :param id: str
6466
6557
  :param update_mask: str
6467
- Field mask is required to be passed into the PATCH request. Field mask specifies which fields of the
6468
- setting payload will be updated. The field mask needs to be supplied as single string. To specify
6469
- multiple fields in the field mask, use comma as the separator (no space).
6558
+ The field mask must be a single string, with multiple fields separated by commas (no spaces). The
6559
+ field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
6560
+ `author.given_name`). Specification of elements in sequence or map fields is not allowed, as only
6561
+ the entire collection field can be specified. Field names must exactly match the resource field
6562
+ names.
6563
+
6564
+ A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
6565
+ fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
6566
+ changes in the future.
6470
6567
  :param alert: :class:`UpdateAlertRequestAlert` (optional)
6471
6568
 
6472
6569
  :returns: :class:`Alert`
@@ -7173,9 +7270,15 @@ class QueriesAPI:
7173
7270
 
7174
7271
  :param id: str
7175
7272
  :param update_mask: str
7176
- Field mask is required to be passed into the PATCH request. Field mask specifies which fields of the
7177
- setting payload will be updated. The field mask needs to be supplied as single string. To specify
7178
- multiple fields in the field mask, use comma as the separator (no space).
7273
+ The field mask must be a single string, with multiple fields separated by commas (no spaces). The
7274
+ field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
7275
+ `author.given_name`). Specification of elements in sequence or map fields is not allowed, as only
7276
+ the entire collection field can be specified. Field names must exactly match the resource field
7277
+ names.
7278
+
7279
+ A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
7280
+ fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
7281
+ changes in the future.
7179
7282
  :param query: :class:`UpdateQueryRequestQuery` (optional)
7180
7283
 
7181
7284
  :returns: :class:`Query`
@@ -7547,9 +7650,15 @@ class QueryVisualizationsAPI:
7547
7650
 
7548
7651
  :param id: str
7549
7652
  :param update_mask: str
7550
- Field mask is required to be passed into the PATCH request. Field mask specifies which fields of the
7551
- setting payload will be updated. The field mask needs to be supplied as single string. To specify
7552
- multiple fields in the field mask, use comma as the separator (no space).
7653
+ The field mask must be a single string, with multiple fields separated by commas (no spaces). The
7654
+ field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
7655
+ `author.given_name`). Specification of elements in sequence or map fields is not allowed, as only
7656
+ the entire collection field can be specified. Field names must exactly match the resource field
7657
+ names.
7658
+
7659
+ A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
7660
+ fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
7661
+ changes in the future.
7553
7662
  :param visualization: :class:`UpdateVisualizationRequestVisualization` (optional)
7554
7663
 
7555
7664
  :returns: :class:`Visualization`
@@ -7686,6 +7795,24 @@ class QueryVisualizationsLegacyAPI:
7686
7795
  return LegacyVisualization.from_dict(res)
7687
7796
 
7688
7797
 
7798
+ class RedashConfigAPI:
7799
+ """Redash V2 service for workspace configurations (internal)"""
7800
+
7801
+ def __init__(self, api_client):
7802
+ self._api = api_client
7803
+
7804
+ def get_config(self) -> ClientConfig:
7805
+ """Read workspace configuration for Redash-v2.
7806
+
7807
+ :returns: :class:`ClientConfig`
7808
+ """
7809
+
7810
+ headers = {'Accept': 'application/json', }
7811
+
7812
+ res = self._api.do('GET', '/api/2.0/redash-v2/config', headers=headers)
7813
+ return ClientConfig.from_dict(res)
7814
+
7815
+
7689
7816
  class StatementExecutionAPI:
7690
7817
  """The Databricks SQL Statement Execution API can be used to execute SQL statements on a SQL warehouse and
7691
7818
  fetch the result.
databricks/sdk/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.42.0'
1
+ __version__ = '0.44.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databricks-sdk
3
- Version: 0.42.0
3
+ Version: 0.44.0
4
4
  Summary: Databricks SDK for Python (Beta)
5
5
  Home-page: https://databricks-sdk-py.readthedocs.io
6
6
  Author: Serge Smertin
@@ -1,5 +1,5 @@
1
1
  databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
2
- databricks/sdk/__init__.py,sha256=b5I8a32zEru60PZjVAKrPXNvBFNRlvsrzj0kbrZ-ReA,55207
2
+ databricks/sdk/__init__.py,sha256=PEAdNX4VkzmzgAqhh89lIy42WmW-JM2oAnj69XThCUM,56239
3
3
  databricks/sdk/_base_client.py,sha256=FwKMk4pN0AXt8S8RML2OHFYV4yxyhgd9NMjxJKiSIUs,16071
4
4
  databricks/sdk/_property.py,sha256=sGjsipeFrjMBSVPjtIb0HNCRcMIhFpVx6wq4BkC3LWs,1636
5
5
  databricks/sdk/azure.py,sha256=8P7nEdun0hbQCap9Ojo7yZse_JHxnhYsE6ApojnPz7Q,1009
@@ -15,7 +15,7 @@ databricks/sdk/oauth.py,sha256=ZlIzEGlKTUgGGgLfv5NQJr3Y_mWpKgTr8-hUEwwqfEE,23861
15
15
  databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
16
16
  databricks/sdk/retries.py,sha256=kdCKGIJjSkGLZYmQ0oI_hiGj7FP7MIqK9-nIr7WbykU,2574
17
17
  databricks/sdk/useragent.py,sha256=o9cojoaVwI7C6tbIZy6jcQ8QiYuUmdL5_zATu6IZSaw,7373
18
- databricks/sdk/version.py,sha256=BsdKJaosc0XHv_5eFAu6YncAsuu-Kw4Nv8QXAvC5ulM,23
18
+ databricks/sdk/version.py,sha256=MMPeQ2-kYJhgLEqI-j8q_6GpHFGW12eIl3b2Nt7TutU,23
19
19
  databricks/sdk/_widgets/__init__.py,sha256=Qm3JB8LmdPgEn_-VgxKkodTO4gn6OdaDPwsYcDmeIRI,2667
20
20
  databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
21
21
  databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
@@ -41,29 +41,29 @@ databricks/sdk/runtime/__init__.py,sha256=9NnZkBzeZXZRQxcE1qKzAszQEzcpIgpL7lQzW3
41
41
  databricks/sdk/runtime/dbutils_stub.py,sha256=UFbRZF-bBcwxjbv_pxma00bjNtktLLaYpo8oHRc4-9g,11421
42
42
  databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  databricks/sdk/service/_internal.py,sha256=nWbJfW5eJCQgAZ3TmA26xoWb6SNZ5N76ZA8bO1N4AsU,1961
44
- databricks/sdk/service/apps.py,sha256=xxBPanIqAvN0iPZmnEyxY98n4RQr8pQWt2IXcnhk8L8,52535
45
- databricks/sdk/service/billing.py,sha256=8Zt0mD-StF-V5iICMtcRwxu-cKtpKdyY2g9CgUoT11E,97365
46
- databricks/sdk/service/catalog.py,sha256=MG6guBQZrVQe0SpPSj0vzdMOMiX2IeiL14Qe-QvmD8s,588941
47
- databricks/sdk/service/cleanrooms.py,sha256=vT9kTxbPfpn4KDSBW2pt159-VtcDzWg-iZQUdUMlyUM,61251
48
- databricks/sdk/service/compute.py,sha256=rlzr-_sy6gzMqggd3p_wAuBdEYd0Cf6YpY3zpAMrDq8,535852
49
- databricks/sdk/service/dashboards.py,sha256=mRtlB8YBfwjyLe9DH7id25P33bdbvubBK9-Hq0PNs1s,82980
44
+ databricks/sdk/service/apps.py,sha256=TVEqapzmon-QbWwgxWtC50qYt6BLDa1hKNYz4v2BeXU,52756
45
+ databricks/sdk/service/billing.py,sha256=I7c6xdysk8HU9PD7JCO-foJrGr8P208wXv2A5qq8XJw,98437
46
+ databricks/sdk/service/catalog.py,sha256=jB3WyXFw6ox7_C6jiXhl1tWWsO-dGmdRSovR1DWpe2U,590416
47
+ databricks/sdk/service/cleanrooms.py,sha256=pfCxkGNI6XHgcHPNab7EqkcRHzemK8CKShCi1bl2r9M,57959
48
+ databricks/sdk/service/compute.py,sha256=Q5hmR9vVlbJtd-CwL_IEHj4cw6TtmNEuwxKI1TOarWY,536472
49
+ databricks/sdk/service/dashboards.py,sha256=KrVP9mo3cubJNom2mKdemhq3_MPU-TeEGP5cKgh7QKI,101393
50
50
  databricks/sdk/service/files.py,sha256=KewI3yw9HsqHKTlJlAkeO0CBszvaMrdBeyxTKORK9rk,45392
51
51
  databricks/sdk/service/iam.py,sha256=ez1G4m8AihZtip2On0o5aADTba25SWBcpYGf1SssJu0,172829
52
- databricks/sdk/service/jobs.py,sha256=_f0yjHqrCS1Io44Q6SqUdJfM3CZ3aM4_8_3NvoL1yWI,426401
52
+ databricks/sdk/service/jobs.py,sha256=q0NY-SBp1Amo4M8CmxUQ-wwNIOfi9TJrqYDWyupgFZI,426794
53
53
  databricks/sdk/service/marketplace.py,sha256=KDqjLT1WRvdq6BOjYI4BhBFhKkp9iZjK7BuF-fuNT6Y,171731
54
54
  databricks/sdk/service/ml.py,sha256=wvheyoVzDUczufsWOjrUvBkK3KKwV1ZSJ6kXWQN4y_M,286771
55
55
  databricks/sdk/service/oauth2.py,sha256=pXU8MnsZFxmLCr3lLoLO1bCCJld7925jSjT6L4xxKKw,75768
56
56
  databricks/sdk/service/pipelines.py,sha256=ZAtYNEaVqkMpa4uWAH1pbXH0Rx2DDxNVdKqsADcQeS8,161720
57
57
  databricks/sdk/service/provisioning.py,sha256=QAFKTjRP6rh9gPIP17ownqhAFY2XE0HvqNfTsf3D27w,168727
58
- databricks/sdk/service/serving.py,sha256=bk2ZnhzcOmnYdSMgXoXTBILRrlPAi0U-PDokYmCSrwA,196924
59
- databricks/sdk/service/settings.py,sha256=LjN3gzWxa4KcmAC9dZATmd-GFEDn4wP9oaGq6Mnot5U,308230
60
- databricks/sdk/service/sharing.py,sha256=ymeJWblpB00vZrvflEVHa0joxWM9tafu6y09rR0I57k,104961
61
- databricks/sdk/service/sql.py,sha256=bKIPoiygWc33prTjR-UOltwi1MKVv4D41y4ZFCm9AXw,392721
58
+ databricks/sdk/service/serving.py,sha256=kH9Y8fRcwkKg1wx5m3Gih2CcOsdbAnDXgkCeSOB4QY8,196934
59
+ databricks/sdk/service/settings.py,sha256=Y21HbrWLwaJw60tS2oghbd28Z2W77zfCzFZ0vs4uhVs,319026
60
+ databricks/sdk/service/sharing.py,sha256=vs69Y2FE28A4XnLxDGKL2HvV-LKgB-DV7nSnbYc_y60,105419
61
+ databricks/sdk/service/sql.py,sha256=GU_8ALx1r3lgu_FCmEJs8zTcWFKtJhKQ2CJcIcJgxzo,399590
62
62
  databricks/sdk/service/vectorsearch.py,sha256=5p5pW94Bv_Q2tw4j8kFb35nAoFa9GUG5FIHTdfAHWps,77997
63
63
  databricks/sdk/service/workspace.py,sha256=BCoi43R1L2eJI9DYq9vwCVdjbMsdLuzDebN6AZvT4kg,128751
64
- databricks_sdk-0.42.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
65
- databricks_sdk-0.42.0.dist-info/METADATA,sha256=ahpptpEWRpZcQu9s4pV8HHiVWTKfkWRl3umuYAUCcLk,38301
66
- databricks_sdk-0.42.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
67
- databricks_sdk-0.42.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
68
- databricks_sdk-0.42.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
69
- databricks_sdk-0.42.0.dist-info/RECORD,,
64
+ databricks_sdk-0.44.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
65
+ databricks_sdk-0.44.0.dist-info/METADATA,sha256=2Y3c4mHOJ-s54GaO-Up6IP8WToQdcTnC59B2v3F6Ah4,38301
66
+ databricks_sdk-0.44.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
67
+ databricks_sdk-0.44.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
68
+ databricks_sdk-0.44.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
69
+ databricks_sdk-0.44.0.dist-info/RECORD,,