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.
- databricks/sdk/__init__.py +8 -1
- databricks/sdk/core.py +4 -2
- databricks/sdk/mixins/workspace.py +2 -1
- databricks/sdk/service/billing.py +22 -1
- databricks/sdk/service/catalog.py +557 -46
- databricks/sdk/service/compute.py +57 -0
- databricks/sdk/service/dashboards.py +1 -0
- databricks/sdk/service/files.py +147 -15
- databricks/sdk/service/iam.py +53 -0
- databricks/sdk/service/jobs.py +147 -135
- databricks/sdk/service/ml.py +57 -0
- databricks/sdk/service/oauth2.py +13 -0
- databricks/sdk/service/pipelines.py +12 -0
- databricks/sdk/service/provisioning.py +30 -0
- databricks/sdk/service/serving.py +73 -35
- databricks/sdk/service/settings.py +41 -0
- databricks/sdk/service/sharing.py +38 -18
- databricks/sdk/service/sql.py +92 -2
- databricks/sdk/service/vectorsearch.py +10 -0
- databricks/sdk/service/workspace.py +34 -0
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.19.1.dist-info → databricks_sdk-0.20.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.19.1.dist-info → databricks_sdk-0.20.0.dist-info}/RECORD +27 -27
- {databricks_sdk-0.19.1.dist-info → databricks_sdk-0.20.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.19.1.dist-info → databricks_sdk-0.20.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.19.1.dist-info → databricks_sdk-0.20.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.19.1.dist-info → databricks_sdk-0.20.0.dist-info}/top_level.txt +0 -0
|
@@ -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.
|
|
1
|
+
__version__ = '0.20.0'
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
33
|
-
databricks/sdk/service/catalog.py,sha256=
|
|
34
|
-
databricks/sdk/service/compute.py,sha256=
|
|
35
|
-
databricks/sdk/service/dashboards.py,sha256=
|
|
36
|
-
databricks/sdk/service/files.py,sha256
|
|
37
|
-
databricks/sdk/service/iam.py,sha256=
|
|
38
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
39
|
-
databricks/sdk/service/ml.py,sha256=
|
|
40
|
-
databricks/sdk/service/oauth2.py,sha256=
|
|
41
|
-
databricks/sdk/service/pipelines.py,sha256=
|
|
42
|
-
databricks/sdk/service/provisioning.py,sha256=
|
|
43
|
-
databricks/sdk/service/serving.py,sha256=
|
|
44
|
-
databricks/sdk/service/settings.py,sha256=
|
|
45
|
-
databricks/sdk/service/sharing.py,sha256=
|
|
46
|
-
databricks/sdk/service/sql.py,sha256=
|
|
47
|
-
databricks/sdk/service/vectorsearch.py,sha256=
|
|
48
|
-
databricks/sdk/service/workspace.py,sha256=
|
|
49
|
-
databricks_sdk-0.
|
|
50
|
-
databricks_sdk-0.
|
|
51
|
-
databricks_sdk-0.
|
|
52
|
-
databricks_sdk-0.
|
|
53
|
-
databricks_sdk-0.
|
|
54
|
-
databricks_sdk-0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|