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

@@ -1320,6 +1320,7 @@ class GitCredentialsAPI:
1320
1320
  if git_username is not None: body['git_username'] = git_username
1321
1321
  if personal_access_token is not None: body['personal_access_token'] = personal_access_token
1322
1322
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1323
+
1323
1324
  res = self._api.do('POST', '/api/2.0/git-credentials', body=body, headers=headers)
1324
1325
  return CreateCredentialsResponse.from_dict(res)
1325
1326
 
@@ -1335,6 +1336,7 @@ class GitCredentialsAPI:
1335
1336
  """
1336
1337
 
1337
1338
  headers = {}
1339
+
1338
1340
  self._api.do('DELETE', f'/api/2.0/git-credentials/{credential_id}', headers=headers)
1339
1341
 
1340
1342
  def get(self, credential_id: int) -> CredentialInfo:
@@ -1349,6 +1351,7 @@ class GitCredentialsAPI:
1349
1351
  """
1350
1352
 
1351
1353
  headers = {'Accept': 'application/json', }
1354
+
1352
1355
  res = self._api.do('GET', f'/api/2.0/git-credentials/{credential_id}', headers=headers)
1353
1356
  return CredentialInfo.from_dict(res)
1354
1357
 
@@ -1361,6 +1364,7 @@ class GitCredentialsAPI:
1361
1364
  """
1362
1365
 
1363
1366
  headers = {'Accept': 'application/json', }
1367
+
1364
1368
  json = self._api.do('GET', '/api/2.0/git-credentials', headers=headers)
1365
1369
  parsed = GetCredentialsResponse.from_dict(json).credentials
1366
1370
  return parsed if parsed is not None else []
@@ -1393,6 +1397,7 @@ class GitCredentialsAPI:
1393
1397
  if git_username is not None: body['git_username'] = git_username
1394
1398
  if personal_access_token is not None: body['personal_access_token'] = personal_access_token
1395
1399
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1400
+
1396
1401
  self._api.do('PATCH', f'/api/2.0/git-credentials/{credential_id}', body=body, headers=headers)
1397
1402
 
1398
1403
 
@@ -1441,6 +1446,7 @@ class ReposAPI:
1441
1446
  if sparse_checkout is not None: body['sparse_checkout'] = sparse_checkout.as_dict()
1442
1447
  if url is not None: body['url'] = url
1443
1448
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1449
+
1444
1450
  res = self._api.do('POST', '/api/2.0/repos', body=body, headers=headers)
1445
1451
  return RepoInfo.from_dict(res)
1446
1452
 
@@ -1456,6 +1462,7 @@ class ReposAPI:
1456
1462
  """
1457
1463
 
1458
1464
  headers = {}
1465
+
1459
1466
  self._api.do('DELETE', f'/api/2.0/repos/{repo_id}', headers=headers)
1460
1467
 
1461
1468
  def get(self, repo_id: int) -> RepoInfo:
@@ -1470,6 +1477,7 @@ class ReposAPI:
1470
1477
  """
1471
1478
 
1472
1479
  headers = {'Accept': 'application/json', }
1480
+
1473
1481
  res = self._api.do('GET', f'/api/2.0/repos/{repo_id}', headers=headers)
1474
1482
  return RepoInfo.from_dict(res)
1475
1483
 
@@ -1485,6 +1493,7 @@ class ReposAPI:
1485
1493
  """
1486
1494
 
1487
1495
  headers = {'Accept': 'application/json', }
1496
+
1488
1497
  res = self._api.do('GET', f'/api/2.0/permissions/repos/{repo_id}/permissionLevels', headers=headers)
1489
1498
  return GetRepoPermissionLevelsResponse.from_dict(res)
1490
1499
 
@@ -1500,6 +1509,7 @@ class ReposAPI:
1500
1509
  """
1501
1510
 
1502
1511
  headers = {'Accept': 'application/json', }
1512
+
1503
1513
  res = self._api.do('GET', f'/api/2.0/permissions/repos/{repo_id}', headers=headers)
1504
1514
  return RepoPermissions.from_dict(res)
1505
1515
 
@@ -1554,6 +1564,7 @@ class ReposAPI:
1554
1564
  if access_control_list is not None:
1555
1565
  body['access_control_list'] = [v.as_dict() for v in access_control_list]
1556
1566
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1567
+
1557
1568
  res = self._api.do('PUT', f'/api/2.0/permissions/repos/{repo_id}', body=body, headers=headers)
1558
1569
  return RepoPermissions.from_dict(res)
1559
1570
 
@@ -1587,6 +1598,7 @@ class ReposAPI:
1587
1598
  if sparse_checkout is not None: body['sparse_checkout'] = sparse_checkout.as_dict()
1588
1599
  if tag is not None: body['tag'] = tag
1589
1600
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1601
+
1590
1602
  self._api.do('PATCH', f'/api/2.0/repos/{repo_id}', body=body, headers=headers)
1591
1603
 
1592
1604
  def update_permissions(
@@ -1608,6 +1620,7 @@ class ReposAPI:
1608
1620
  if access_control_list is not None:
1609
1621
  body['access_control_list'] = [v.as_dict() for v in access_control_list]
1610
1622
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1623
+
1611
1624
  res = self._api.do('PATCH', f'/api/2.0/permissions/repos/{repo_id}', body=body, headers=headers)
1612
1625
  return RepoPermissions.from_dict(res)
1613
1626
 
@@ -1655,6 +1668,7 @@ class SecretsAPI:
1655
1668
  if scope is not None: body['scope'] = scope
1656
1669
  if scope_backend_type is not None: body['scope_backend_type'] = scope_backend_type.value
1657
1670
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1671
+
1658
1672
  self._api.do('POST', '/api/2.0/secrets/scopes/create', body=body, headers=headers)
1659
1673
 
1660
1674
  def delete_acl(self, scope: str, principal: str):
@@ -1677,6 +1691,7 @@ class SecretsAPI:
1677
1691
  if principal is not None: body['principal'] = principal
1678
1692
  if scope is not None: body['scope'] = scope
1679
1693
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1694
+
1680
1695
  self._api.do('POST', '/api/2.0/secrets/acls/delete', body=body, headers=headers)
1681
1696
 
1682
1697
  def delete_scope(self, scope: str):
@@ -1695,6 +1710,7 @@ class SecretsAPI:
1695
1710
  body = {}
1696
1711
  if scope is not None: body['scope'] = scope
1697
1712
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1713
+
1698
1714
  self._api.do('POST', '/api/2.0/secrets/scopes/delete', body=body, headers=headers)
1699
1715
 
1700
1716
  def delete_secret(self, scope: str, key: str):
@@ -1717,6 +1733,7 @@ class SecretsAPI:
1717
1733
  if key is not None: body['key'] = key
1718
1734
  if scope is not None: body['scope'] = scope
1719
1735
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1736
+
1720
1737
  self._api.do('POST', '/api/2.0/secrets/delete', body=body, headers=headers)
1721
1738
 
1722
1739
  def get_acl(self, scope: str, principal: str) -> AclItem:
@@ -1740,6 +1757,7 @@ class SecretsAPI:
1740
1757
  if principal is not None: query['principal'] = principal
1741
1758
  if scope is not None: query['scope'] = scope
1742
1759
  headers = {'Accept': 'application/json', }
1760
+
1743
1761
  res = self._api.do('GET', '/api/2.0/secrets/acls/get', query=query, headers=headers)
1744
1762
  return AclItem.from_dict(res)
1745
1763
 
@@ -1768,6 +1786,7 @@ class SecretsAPI:
1768
1786
  if key is not None: query['key'] = key
1769
1787
  if scope is not None: query['scope'] = scope
1770
1788
  headers = {'Accept': 'application/json', }
1789
+
1771
1790
  res = self._api.do('GET', '/api/2.0/secrets/get', query=query, headers=headers)
1772
1791
  return GetSecretResponse.from_dict(res)
1773
1792
 
@@ -1788,6 +1807,7 @@ class SecretsAPI:
1788
1807
  query = {}
1789
1808
  if scope is not None: query['scope'] = scope
1790
1809
  headers = {'Accept': 'application/json', }
1810
+
1791
1811
  json = self._api.do('GET', '/api/2.0/secrets/acls/list', query=query, headers=headers)
1792
1812
  parsed = ListAclsResponse.from_dict(json).items
1793
1813
  return parsed if parsed is not None else []
@@ -1803,6 +1823,7 @@ class SecretsAPI:
1803
1823
  """
1804
1824
 
1805
1825
  headers = {'Accept': 'application/json', }
1826
+
1806
1827
  json = self._api.do('GET', '/api/2.0/secrets/scopes/list', headers=headers)
1807
1828
  parsed = ListScopesResponse.from_dict(json).scopes
1808
1829
  return parsed if parsed is not None else []
@@ -1826,6 +1847,7 @@ class SecretsAPI:
1826
1847
  query = {}
1827
1848
  if scope is not None: query['scope'] = scope
1828
1849
  headers = {'Accept': 'application/json', }
1850
+
1829
1851
  json = self._api.do('GET', '/api/2.0/secrets/list', query=query, headers=headers)
1830
1852
  parsed = ListSecretsResponse.from_dict(json).secrets
1831
1853
  return parsed if parsed is not None else []
@@ -1872,6 +1894,7 @@ class SecretsAPI:
1872
1894
  if principal is not None: body['principal'] = principal
1873
1895
  if scope is not None: body['scope'] = scope
1874
1896
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1897
+
1875
1898
  self._api.do('POST', '/api/2.0/secrets/acls/put', body=body, headers=headers)
1876
1899
 
1877
1900
  def put_secret(self,
@@ -1915,6 +1938,7 @@ class SecretsAPI:
1915
1938
  if scope is not None: body['scope'] = scope
1916
1939
  if string_value is not None: body['string_value'] = string_value
1917
1940
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1941
+
1918
1942
  self._api.do('POST', '/api/2.0/secrets/put', body=body, headers=headers)
1919
1943
 
1920
1944
 
@@ -1950,6 +1974,7 @@ class WorkspaceAPI:
1950
1974
  if path is not None: body['path'] = path
1951
1975
  if recursive is not None: body['recursive'] = recursive
1952
1976
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
1977
+
1953
1978
  self._api.do('POST', '/api/2.0/workspace/delete', body=body, headers=headers)
1954
1979
 
1955
1980
  def export(self, path: str, *, format: Optional[ExportFormat] = None) -> ExportResponse:
@@ -1984,6 +2009,7 @@ class WorkspaceAPI:
1984
2009
  if format is not None: query['format'] = format.value
1985
2010
  if path is not None: query['path'] = path
1986
2011
  headers = {'Accept': 'application/json', }
2012
+
1987
2013
  res = self._api.do('GET', '/api/2.0/workspace/export', query=query, headers=headers)
1988
2014
  return ExportResponse.from_dict(res)
1989
2015
 
@@ -2002,6 +2028,7 @@ class WorkspaceAPI:
2002
2028
  """
2003
2029
 
2004
2030
  headers = {'Accept': 'application/json', }
2031
+
2005
2032
  res = self._api.do(
2006
2033
  'GET',
2007
2034
  f'/api/2.0/permissions/{workspace_object_type}/{workspace_object_id}/permissionLevels',
@@ -2024,6 +2051,7 @@ class WorkspaceAPI:
2024
2051
  """
2025
2052
 
2026
2053
  headers = {'Accept': 'application/json', }
2054
+
2027
2055
  res = self._api.do('GET',
2028
2056
  f'/api/2.0/permissions/{workspace_object_type}/{workspace_object_id}',
2029
2057
  headers=headers)
@@ -2044,6 +2072,7 @@ class WorkspaceAPI:
2044
2072
  query = {}
2045
2073
  if path is not None: query['path'] = path
2046
2074
  headers = {'Accept': 'application/json', }
2075
+
2047
2076
  res = self._api.do('GET', '/api/2.0/workspace/get-status', query=query, headers=headers)
2048
2077
  return ObjectInfo.from_dict(res)
2049
2078
 
@@ -2096,6 +2125,7 @@ class WorkspaceAPI:
2096
2125
  if overwrite is not None: body['overwrite'] = overwrite
2097
2126
  if path is not None: body['path'] = path
2098
2127
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
2128
+
2099
2129
  self._api.do('POST', '/api/2.0/workspace/import', body=body, headers=headers)
2100
2130
 
2101
2131
  def list(self, path: str, *, notebooks_modified_after: Optional[int] = None) -> Iterator[ObjectInfo]:
@@ -2116,6 +2146,7 @@ class WorkspaceAPI:
2116
2146
  if notebooks_modified_after is not None: query['notebooks_modified_after'] = notebooks_modified_after
2117
2147
  if path is not None: query['path'] = path
2118
2148
  headers = {'Accept': 'application/json', }
2149
+
2119
2150
  json = self._api.do('GET', '/api/2.0/workspace/list', query=query, headers=headers)
2120
2151
  parsed = ListResponse.from_dict(json).objects
2121
2152
  return parsed if parsed is not None else []
@@ -2139,6 +2170,7 @@ class WorkspaceAPI:
2139
2170
  body = {}
2140
2171
  if path is not None: body['path'] = path
2141
2172
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
2173
+
2142
2174
  self._api.do('POST', '/api/2.0/workspace/mkdirs', body=body, headers=headers)
2143
2175
 
2144
2176
  def set_permissions(
@@ -2165,6 +2197,7 @@ class WorkspaceAPI:
2165
2197
  if access_control_list is not None:
2166
2198
  body['access_control_list'] = [v.as_dict() for v in access_control_list]
2167
2199
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
2200
+
2168
2201
  res = self._api.do('PUT',
2169
2202
  f'/api/2.0/permissions/{workspace_object_type}/{workspace_object_id}',
2170
2203
  body=body,
@@ -2195,6 +2228,7 @@ class WorkspaceAPI:
2195
2228
  if access_control_list is not None:
2196
2229
  body['access_control_list'] = [v.as_dict() for v in access_control_list]
2197
2230
  headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
2231
+
2198
2232
  res = self._api.do('PATCH',
2199
2233
  f'/api/2.0/permissions/{workspace_object_type}/{workspace_object_id}',
2200
2234
  body=body,
databricks/sdk/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.19.1'
1
+ __version__ = '0.20.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databricks-sdk
3
- Version: 0.19.1
3
+ Version: 0.20.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,17 +1,17 @@
1
1
  databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
2
- databricks/sdk/__init__.py,sha256=GGRZwC0h_FjzZoY45bA86JNUauBWuOdIsCwNikmJ3gI,38684
2
+ databricks/sdk/__init__.py,sha256=itc4L6tbdR6tnYLRhyO0haIxICvuh6UX6cpHWEvnB2g,38987
3
3
  databricks/sdk/azure.py,sha256=92fNK4CmQGs-pCTA9r7Anv7u_84l79Q5uQ9m1HugChk,2299
4
4
  databricks/sdk/casing.py,sha256=NKYPrfPbQjM7lU4hhNQK3z1jb_VEA29BfH4FEdby2tg,1137
5
5
  databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
6
6
  databricks/sdk/config.py,sha256=3XdKDuKmPxrSRor7sZRE3XZ0nNNL01lSOChDf2h7q4o,18937
7
- databricks/sdk/core.py,sha256=yHtgGdB2SqEWXlujTTYY2d75EfqcAbHO6KpSG8TmWMc,18512
7
+ databricks/sdk/core.py,sha256=L2VRtBTqWY4z-QPKM-TWhisUDA9xAtNm57GORN-gmMw,18549
8
8
  databricks/sdk/credentials_provider.py,sha256=zLmXLbt6zDS-P4jRBiS9if6QQGOea2CZn3fUrmJuJLY,26255
9
9
  databricks/sdk/dbutils.py,sha256=k-3ENkdUQwWQqX6g59OpezY3cT7TQqafVnXAtUHBjIg,12947
10
10
  databricks/sdk/environments.py,sha256=gStDfgI07ECd6Pb82Rf-nRjf48NH6hOY3UfTXm4YNZ4,2861
11
11
  databricks/sdk/oauth.py,sha256=xSk2js5RaKkp4HY0ZAzIpA7Y73KFVwtGItmpoRJyEy8,18338
12
12
  databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
13
13
  databricks/sdk/retries.py,sha256=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
14
- databricks/sdk/version.py,sha256=aT4qjVYyx7Okb2myoMvgkyzvdYr5Ydlul8fdz-mEKTM,23
14
+ databricks/sdk/version.py,sha256=pJLteH9r0aOnAwnvPatmr2QSz7lO2BDXON0AKkXx0Pg,23
15
15
  databricks/sdk/_widgets/__init__.py,sha256=tm1Qv6j_l9zDZ2fVb83-kRI68jLW8cJRKrVSsy1iQWo,2669
16
16
  databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
17
17
  databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
@@ -23,32 +23,32 @@ databricks/sdk/errors/sdk.py,sha256=_euMruhvquB0v_SKtgqxJUiyXHWuTb4Jl7ji6_h0E_A,
23
23
  databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  databricks/sdk/mixins/compute.py,sha256=j5Pa0ufm97YGZPxzjALWYlH52XDTsIbF1kMJ2OYLBE8,11131
25
25
  databricks/sdk/mixins/files.py,sha256=BnG665KY-pUqFqv91pVSUqVwA_iQUCZkVN4kh--l0uc,13256
26
- databricks/sdk/mixins/workspace.py,sha256=p-g06qatuGVaeVe1RapLlKKdp3tKn8SeLQbWqIahDUk,4856
26
+ databricks/sdk/mixins/workspace.py,sha256=dWMNvuEi8jJ5wMhrDt1LiqxNdWSsmEuDTzrcZR-eJzY,4896
27
27
  databricks/sdk/runtime/__init__.py,sha256=QM2dZK0xU2hvQsBw6WMCGtzJdLAj-lzLtxN1hYAuX3s,3591
28
28
  databricks/sdk/runtime/dbutils_stub.py,sha256=-kiNS2Mn8lGahJ3r5S-qsrqRdivRrbTp2f_wx-sECMw,11404
29
29
  databricks/sdk/runtime/stub.py,sha256=S9I9CkHcMHoYKrgft4NzC0uu7odNu_N2nHDsGAvFVJc,1676
30
30
  databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  databricks/sdk/service/_internal.py,sha256=79IeS-DAwfkHEIKWYek-7ZxrCRCk0SXtRezJrgKSPFc,1837
32
- databricks/sdk/service/billing.py,sha256=NTDZ3ujJo7Qk0ahXe6zEOKWl1M2a0WAizpXUBG-W8Uo,49040
33
- databricks/sdk/service/catalog.py,sha256=fyKDuct9nkp8ti-8m0z0ro15nOeaZm7wD0qEaoCjUVw,367888
34
- databricks/sdk/service/compute.py,sha256=kaHtdlXO5PmJeOnlEOm9JoXy0wWiTTJx2oqPTy3ld30,385984
35
- databricks/sdk/service/dashboards.py,sha256=2hSwCGqizskSJLyA71UrUqxbB68tldAV7eyV3MTxUC0,3119
36
- databricks/sdk/service/files.py,sha256=-yVGEaDhIMdBJ1ndJ8gbxfVnGXx22Tx6x55KRpktGfc,27880
37
- databricks/sdk/service/iam.py,sha256=Wp0YQtY3U6HOK89B8x8zE9YvYrXtN50ySZfxRnI5n5w,141143
38
- databricks/sdk/service/jobs.py,sha256=qa85SMZikv4xEbtfjmV93FrJxB39cJVGM2cZwCS1TA0,282620
39
- databricks/sdk/service/ml.py,sha256=3rhYmtCyM7Xpvc-ki_sn3IWZqNQhbWOfOjUjyVc6ghk,226046
40
- databricks/sdk/service/oauth2.py,sha256=N1cKI-nfmSlOThTMfvLmGEQ0k9rW37fnviQ6XLBq41Y,34025
41
- databricks/sdk/service/pipelines.py,sha256=0vYrct76HVgKXOqg0Cn5nDHpr6Zl2JJmYioIdTFGRR8,99814
42
- databricks/sdk/service/provisioning.py,sha256=vmuGk5YTwmMTw6Sv1MPYaw2K9pyegTAUqSQhiy5x0r8,140932
43
- databricks/sdk/service/serving.py,sha256=WH7VPZxXiPMTJUxI0WRNMBQW7gGJe4fRb6gTuMMcEwg,127864
44
- databricks/sdk/service/settings.py,sha256=q_9XfhF8iYBmSEaa9Li954GRLIWlM3VrtLuB2qafTCY,125962
45
- databricks/sdk/service/sharing.py,sha256=wk0SpqnlQQf-rAizxRH2wswDrGU40kH2QUZ7Yy-36_Q,96411
46
- databricks/sdk/service/sql.py,sha256=ceW0vg_LWX5o8r00LBF8px8o_T6IVqP1UlCPFk0hPro,250354
47
- databricks/sdk/service/vectorsearch.py,sha256=dpAR2O69J67JviWW27QYc5nLnSZUmKp0PgtowpEuITA,50099
48
- databricks/sdk/service/workspace.py,sha256=qeArqeM77WohyZhNVbj3vxDOCmOxx_fudP5Fu_9840E,93037
49
- databricks_sdk-0.19.1.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
50
- databricks_sdk-0.19.1.dist-info/METADATA,sha256=FR638x-B3nw71Oa3qkYzEt1X1X1UtcSykZ7xi-1oKn8,34408
51
- databricks_sdk-0.19.1.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
52
- databricks_sdk-0.19.1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
53
- databricks_sdk-0.19.1.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
54
- databricks_sdk-0.19.1.dist-info/RECORD,,
32
+ databricks/sdk/service/billing.py,sha256=8zgkufo4r3suMgBp2Up_ZOixB7TtnmyYOTBxVwCHlTI,49486
33
+ databricks/sdk/service/catalog.py,sha256=y7XiOUQToogix9cULpOZUH1Uj_C9TSvCa0FjLcNjE4I,387151
34
+ databricks/sdk/service/compute.py,sha256=2fF5gJW0nPScI6nJygVxJ9MraEca07pP8CmBHS0TfS4,386041
35
+ databricks/sdk/service/dashboards.py,sha256=CPZMaT6bQJQpXStbfl6gm_2DUdnVIWBlHvnO_-cgkso,3120
36
+ databricks/sdk/service/files.py,sha256=ryY9zPKef4156jO4PaTze1zveH8zz9Y_hjfMU-yjg3o,33546
37
+ databricks/sdk/service/iam.py,sha256=Ih7tSzBOTSWAuIz2uGnyvueEYe-jH6RBETCKB4v1jt8,141324
38
+ databricks/sdk/service/jobs.py,sha256=kQWm3NOH5DtKS2UBxIkWFOpnJ9btN_t0ZwsCtXl3YDM,282948
39
+ databricks/sdk/service/ml.py,sha256=SgKLYSNpMrMJUcHxLzY32XaDA1MsaLpGc2s6-2mHmQw,226103
40
+ databricks/sdk/service/oauth2.py,sha256=PqKm5YO0fcXaB6p-xhlj-fkakqNEB58moKhXIACzmRA,34038
41
+ databricks/sdk/service/pipelines.py,sha256=vpCQZfY2lRW9xvoMYTsNqRDHbrbfDSywHQZ3IGStKlI,99826
42
+ databricks/sdk/service/provisioning.py,sha256=lzFcdVQ5nGvqZglmn7u3dMP-lHmeO1ZIPbhbuliZtrc,140962
43
+ databricks/sdk/service/serving.py,sha256=XPwB6l7byuhrWEh-kGX0zS7FyIvDB_GH282kPJNRzr8,129594
44
+ databricks/sdk/service/settings.py,sha256=CyR2lR0hgkixsQ6DtwWz8UKgQkzWQXlGDE30Upvc-rc,126003
45
+ databricks/sdk/service/sharing.py,sha256=t_EZ9_lDBqlHx7Q5ftObJsDGn6hzG_7rEIE9Bt2pG8A,96215
46
+ databricks/sdk/service/sql.py,sha256=1zMrbFXTER0dTvVCqGvCgSv1ROfbMdLRaT0h-L_xne4,252601
47
+ databricks/sdk/service/vectorsearch.py,sha256=HfcLexWw1GZLFBwDrXeLYItcohGfbYjuuH9XEMGyZTA,50109
48
+ databricks/sdk/service/workspace.py,sha256=q73yatB6vCzJq5y4qfHUT5w-OwjPtJFd43CroDirp0U,93071
49
+ databricks_sdk-0.20.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
50
+ databricks_sdk-0.20.0.dist-info/METADATA,sha256=MjbCSjF1Nkyo7hczLi11qxwohFC7WCOsFtDcQOpHldw,34408
51
+ databricks_sdk-0.20.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
52
+ databricks_sdk-0.20.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
53
+ databricks_sdk-0.20.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
54
+ databricks_sdk-0.20.0.dist-info/RECORD,,