databricks-sdk 0.18.0__py3-none-any.whl → 0.19.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 +30 -1
- databricks/sdk/azure.py +14 -0
- databricks/sdk/clock.py +49 -0
- databricks/sdk/config.py +7 -0
- databricks/sdk/core.py +2 -1
- databricks/sdk/credentials_provider.py +14 -3
- databricks/sdk/environments.py +1 -1
- databricks/sdk/errors/__init__.py +1 -1
- databricks/sdk/errors/mapper.py +5 -5
- databricks/sdk/mixins/workspace.py +3 -3
- databricks/sdk/retries.py +9 -5
- databricks/sdk/service/catalog.py +173 -78
- databricks/sdk/service/compute.py +86 -25
- databricks/sdk/service/files.py +136 -22
- databricks/sdk/service/iam.py +42 -36
- databricks/sdk/service/jobs.py +192 -14
- databricks/sdk/service/ml.py +27 -36
- databricks/sdk/service/oauth2.py +3 -4
- databricks/sdk/service/pipelines.py +50 -29
- databricks/sdk/service/settings.py +338 -57
- databricks/sdk/service/sharing.py +3 -4
- databricks/sdk/service/sql.py +24 -17
- databricks/sdk/service/vectorsearch.py +13 -17
- databricks/sdk/service/workspace.py +18 -7
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.18.0.dist-info → databricks_sdk-0.19.0.dist-info}/METADATA +1 -1
- databricks_sdk-0.19.0.dist-info/RECORD +53 -0
- databricks_sdk-0.18.0.dist-info/RECORD +0 -52
- /databricks/sdk/errors/{mapping.py → platform.py} +0 -0
- {databricks_sdk-0.18.0.dist-info → databricks_sdk-0.19.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.18.0.dist-info → databricks_sdk-0.19.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.18.0.dist-info → databricks_sdk-0.19.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.18.0.dist-info → databricks_sdk-0.19.0.dist-info}/top_level.txt +0 -0
databricks/sdk/service/sql.py
CHANGED
|
@@ -346,6 +346,7 @@ class ChannelInfo:
|
|
|
346
346
|
|
|
347
347
|
|
|
348
348
|
class ChannelName(Enum):
|
|
349
|
+
"""Name of the channel"""
|
|
349
350
|
|
|
350
351
|
CHANNEL_NAME_CURRENT = 'CHANNEL_NAME_CURRENT'
|
|
351
352
|
CHANNEL_NAME_CUSTOM = 'CHANNEL_NAME_CUSTOM'
|
|
@@ -4049,6 +4050,9 @@ class DashboardsAPI:
|
|
|
4049
4050
|
|
|
4050
4051
|
Fetch a paginated list of dashboard objects.
|
|
4051
4052
|
|
|
4053
|
+
### **Warning: Calling this API concurrently 10 or more times could result in throttling, service
|
|
4054
|
+
degradation, or a temporary ban.**
|
|
4055
|
+
|
|
4052
4056
|
:param order: :class:`ListOrder` (optional)
|
|
4053
4057
|
Name of dashboard attribute to order by.
|
|
4054
4058
|
:param page: int (optional)
|
|
@@ -4073,14 +4077,15 @@ class DashboardsAPI:
|
|
|
4073
4077
|
query['page'] = 1
|
|
4074
4078
|
while True:
|
|
4075
4079
|
json = self._api.do('GET', '/api/2.0/preview/sql/dashboards', query=query, headers=headers)
|
|
4080
|
+
if 'results' in json:
|
|
4081
|
+
for v in json['results']:
|
|
4082
|
+
i = v['id']
|
|
4083
|
+
if i in seen:
|
|
4084
|
+
continue
|
|
4085
|
+
seen.add(i)
|
|
4086
|
+
yield Dashboard.from_dict(v)
|
|
4076
4087
|
if 'results' not in json or not json['results']:
|
|
4077
4088
|
return
|
|
4078
|
-
for v in json['results']:
|
|
4079
|
-
i = v['id']
|
|
4080
|
-
if i in seen:
|
|
4081
|
-
continue
|
|
4082
|
-
seen.add(i)
|
|
4083
|
-
yield Dashboard.from_dict(v)
|
|
4084
4089
|
query['page'] += 1
|
|
4085
4090
|
|
|
4086
4091
|
def restore(self, dashboard_id: str):
|
|
@@ -4387,14 +4392,15 @@ class QueriesAPI:
|
|
|
4387
4392
|
query['page'] = 1
|
|
4388
4393
|
while True:
|
|
4389
4394
|
json = self._api.do('GET', '/api/2.0/preview/sql/queries', query=query, headers=headers)
|
|
4395
|
+
if 'results' in json:
|
|
4396
|
+
for v in json['results']:
|
|
4397
|
+
i = v['id']
|
|
4398
|
+
if i in seen:
|
|
4399
|
+
continue
|
|
4400
|
+
seen.add(i)
|
|
4401
|
+
yield Query.from_dict(v)
|
|
4390
4402
|
if 'results' not in json or not json['results']:
|
|
4391
4403
|
return
|
|
4392
|
-
for v in json['results']:
|
|
4393
|
-
i = v['id']
|
|
4394
|
-
if i in seen:
|
|
4395
|
-
continue
|
|
4396
|
-
seen.add(i)
|
|
4397
|
-
yield Query.from_dict(v)
|
|
4398
4404
|
query['page'] += 1
|
|
4399
4405
|
|
|
4400
4406
|
def restore(self, query_id: str):
|
|
@@ -4485,7 +4491,9 @@ class QueryHistoryAPI:
|
|
|
4485
4491
|
:param max_results: int (optional)
|
|
4486
4492
|
Limit the number of results returned in one page. The default is 100.
|
|
4487
4493
|
:param page_token: str (optional)
|
|
4488
|
-
A token that can be used to get the next page of results.
|
|
4494
|
+
A token that can be used to get the next page of results. The token can contains characters that
|
|
4495
|
+
need to be encoded before using it in a URL. For example, the character '+' needs to be replaced by
|
|
4496
|
+
%2B.
|
|
4489
4497
|
|
|
4490
4498
|
:returns: Iterator over :class:`QueryInfo`
|
|
4491
4499
|
"""
|
|
@@ -4499,10 +4507,9 @@ class QueryHistoryAPI:
|
|
|
4499
4507
|
|
|
4500
4508
|
while True:
|
|
4501
4509
|
json = self._api.do('GET', '/api/2.0/sql/history/queries', query=query, headers=headers)
|
|
4502
|
-
if 'res'
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
yield QueryInfo.from_dict(v)
|
|
4510
|
+
if 'res' in json:
|
|
4511
|
+
for v in json['res']:
|
|
4512
|
+
yield QueryInfo.from_dict(v)
|
|
4506
4513
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
4507
4514
|
return
|
|
4508
4515
|
query['page_token'] = json['next_page_token']
|
|
@@ -72,7 +72,7 @@ class CreateVectorIndexRequest:
|
|
|
72
72
|
`DIRECT_ACCESS`: An index that supports direct read and write of vectors and metadata through
|
|
73
73
|
our REST and SDK APIs. With this model, the user manages index updates."""
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
delta_sync_index_spec: Optional[DeltaSyncVectorIndexSpecRequest] = None
|
|
76
76
|
"""Specification for Delta Sync Index. Required if `index_type` is `DELTA_SYNC`."""
|
|
77
77
|
|
|
78
78
|
direct_access_index_spec: Optional[DirectAccessVectorIndexSpec] = None
|
|
@@ -84,8 +84,7 @@ class CreateVectorIndexRequest:
|
|
|
84
84
|
def as_dict(self) -> dict:
|
|
85
85
|
"""Serializes the CreateVectorIndexRequest into a dictionary suitable for use as a JSON request body."""
|
|
86
86
|
body = {}
|
|
87
|
-
if self.
|
|
88
|
-
body['delta_sync_vector_index_spec'] = self.delta_sync_vector_index_spec.as_dict()
|
|
87
|
+
if self.delta_sync_index_spec: body['delta_sync_index_spec'] = self.delta_sync_index_spec.as_dict()
|
|
89
88
|
if self.direct_access_index_spec:
|
|
90
89
|
body['direct_access_index_spec'] = self.direct_access_index_spec.as_dict()
|
|
91
90
|
if self.endpoint_name is not None: body['endpoint_name'] = self.endpoint_name
|
|
@@ -97,8 +96,8 @@ class CreateVectorIndexRequest:
|
|
|
97
96
|
@classmethod
|
|
98
97
|
def from_dict(cls, d: Dict[str, any]) -> CreateVectorIndexRequest:
|
|
99
98
|
"""Deserializes the CreateVectorIndexRequest from a dictionary."""
|
|
100
|
-
return cls(
|
|
101
|
-
|
|
99
|
+
return cls(delta_sync_index_spec=_from_dict(d, 'delta_sync_index_spec',
|
|
100
|
+
DeltaSyncVectorIndexSpecRequest),
|
|
102
101
|
direct_access_index_spec=_from_dict(d, 'direct_access_index_spec',
|
|
103
102
|
DirectAccessVectorIndexSpec),
|
|
104
103
|
endpoint_name=d.get('endpoint_name', None),
|
|
@@ -978,10 +977,9 @@ class VectorSearchEndpointsAPI:
|
|
|
978
977
|
|
|
979
978
|
while True:
|
|
980
979
|
json = self._api.do('GET', '/api/2.0/vector-search/endpoints', query=query, headers=headers)
|
|
981
|
-
if 'endpoints'
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
yield EndpointInfo.from_dict(v)
|
|
980
|
+
if 'endpoints' in json:
|
|
981
|
+
for v in json['endpoints']:
|
|
982
|
+
yield EndpointInfo.from_dict(v)
|
|
985
983
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
986
984
|
return
|
|
987
985
|
query['page_token'] = json['next_page_token']
|
|
@@ -1004,7 +1002,7 @@ class VectorSearchIndexesAPI:
|
|
|
1004
1002
|
primary_key: str,
|
|
1005
1003
|
index_type: VectorIndexType,
|
|
1006
1004
|
*,
|
|
1007
|
-
|
|
1005
|
+
delta_sync_index_spec: Optional[DeltaSyncVectorIndexSpecRequest] = None,
|
|
1008
1006
|
direct_access_index_spec: Optional[DirectAccessVectorIndexSpec] = None,
|
|
1009
1007
|
endpoint_name: Optional[str] = None) -> CreateVectorIndexResponse:
|
|
1010
1008
|
"""Create an index.
|
|
@@ -1022,7 +1020,7 @@ class VectorSearchIndexesAPI:
|
|
|
1022
1020
|
incrementally updating the index as the underlying data in the Delta Table changes. -
|
|
1023
1021
|
`DIRECT_ACCESS`: An index that supports direct read and write of vectors and metadata through our
|
|
1024
1022
|
REST and SDK APIs. With this model, the user manages index updates.
|
|
1025
|
-
:param
|
|
1023
|
+
:param delta_sync_index_spec: :class:`DeltaSyncVectorIndexSpecRequest` (optional)
|
|
1026
1024
|
Specification for Delta Sync Index. Required if `index_type` is `DELTA_SYNC`.
|
|
1027
1025
|
:param direct_access_index_spec: :class:`DirectAccessVectorIndexSpec` (optional)
|
|
1028
1026
|
Specification for Direct Vector Access Index. Required if `index_type` is `DIRECT_ACCESS`.
|
|
@@ -1032,8 +1030,7 @@ class VectorSearchIndexesAPI:
|
|
|
1032
1030
|
:returns: :class:`CreateVectorIndexResponse`
|
|
1033
1031
|
"""
|
|
1034
1032
|
body = {}
|
|
1035
|
-
if
|
|
1036
|
-
body['delta_sync_vector_index_spec'] = delta_sync_vector_index_spec.as_dict()
|
|
1033
|
+
if delta_sync_index_spec is not None: body['delta_sync_index_spec'] = delta_sync_index_spec.as_dict()
|
|
1037
1034
|
if direct_access_index_spec is not None:
|
|
1038
1035
|
body['direct_access_index_spec'] = direct_access_index_spec.as_dict()
|
|
1039
1036
|
if endpoint_name is not None: body['endpoint_name'] = endpoint_name
|
|
@@ -1117,10 +1114,9 @@ class VectorSearchIndexesAPI:
|
|
|
1117
1114
|
|
|
1118
1115
|
while True:
|
|
1119
1116
|
json = self._api.do('GET', '/api/2.0/vector-search/indexes', query=query, headers=headers)
|
|
1120
|
-
if 'vector_indexes'
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
yield MiniVectorIndex.from_dict(v)
|
|
1117
|
+
if 'vector_indexes' in json:
|
|
1118
|
+
for v in json['vector_indexes']:
|
|
1119
|
+
yield MiniVectorIndex.from_dict(v)
|
|
1124
1120
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
1125
1121
|
return
|
|
1126
1122
|
query['page_token'] = json['next_page_token']
|
|
@@ -317,16 +317,20 @@ class ExportResponse:
|
|
|
317
317
|
"""The base64-encoded content. If the limit (10MB) is exceeded, exception with error code
|
|
318
318
|
**MAX_NOTEBOOK_SIZE_EXCEEDED** is thrown."""
|
|
319
319
|
|
|
320
|
+
file_type: Optional[str] = None
|
|
321
|
+
"""The file type of the exported file."""
|
|
322
|
+
|
|
320
323
|
def as_dict(self) -> dict:
|
|
321
324
|
"""Serializes the ExportResponse into a dictionary suitable for use as a JSON request body."""
|
|
322
325
|
body = {}
|
|
323
326
|
if self.content is not None: body['content'] = self.content
|
|
327
|
+
if self.file_type is not None: body['file_type'] = self.file_type
|
|
324
328
|
return body
|
|
325
329
|
|
|
326
330
|
@classmethod
|
|
327
331
|
def from_dict(cls, d: Dict[str, any]) -> ExportResponse:
|
|
328
332
|
"""Deserializes the ExportResponse from a dictionary."""
|
|
329
|
-
return cls(content=d.get('content', None))
|
|
333
|
+
return cls(content=d.get('content', None), file_type=d.get('file_type', None))
|
|
330
334
|
|
|
331
335
|
|
|
332
336
|
@dataclass
|
|
@@ -608,11 +612,15 @@ class ObjectInfo:
|
|
|
608
612
|
"""The type of the object in workspace.
|
|
609
613
|
|
|
610
614
|
- `NOTEBOOK`: document that contains runnable code, visualizations, and explanatory text. -
|
|
611
|
-
`DIRECTORY`: directory - `LIBRARY`: library - `FILE`: file - `REPO`: repository
|
|
615
|
+
`DIRECTORY`: directory - `LIBRARY`: library - `FILE`: file - `REPO`: repository - `DASHBOARD`:
|
|
616
|
+
Lakeview dashboard"""
|
|
612
617
|
|
|
613
618
|
path: Optional[str] = None
|
|
614
619
|
"""The absolute path of the object."""
|
|
615
620
|
|
|
621
|
+
resource_id: Optional[str] = None
|
|
622
|
+
"""A unique identifier for the object that is consistent across all Databricks APIs."""
|
|
623
|
+
|
|
616
624
|
size: Optional[int] = None
|
|
617
625
|
"""Only applicable to files. The file size in bytes can be returned."""
|
|
618
626
|
|
|
@@ -625,6 +633,7 @@ class ObjectInfo:
|
|
|
625
633
|
if self.object_id is not None: body['object_id'] = self.object_id
|
|
626
634
|
if self.object_type is not None: body['object_type'] = self.object_type.value
|
|
627
635
|
if self.path is not None: body['path'] = self.path
|
|
636
|
+
if self.resource_id is not None: body['resource_id'] = self.resource_id
|
|
628
637
|
if self.size is not None: body['size'] = self.size
|
|
629
638
|
return body
|
|
630
639
|
|
|
@@ -637,6 +646,7 @@ class ObjectInfo:
|
|
|
637
646
|
object_id=d.get('object_id', None),
|
|
638
647
|
object_type=_enum(d, 'object_type', ObjectType),
|
|
639
648
|
path=d.get('path', None),
|
|
649
|
+
resource_id=d.get('resource_id', None),
|
|
640
650
|
size=d.get('size', None))
|
|
641
651
|
|
|
642
652
|
|
|
@@ -644,8 +654,10 @@ class ObjectType(Enum):
|
|
|
644
654
|
"""The type of the object in workspace.
|
|
645
655
|
|
|
646
656
|
- `NOTEBOOK`: document that contains runnable code, visualizations, and explanatory text. -
|
|
647
|
-
`DIRECTORY`: directory - `LIBRARY`: library - `FILE`: file - `REPO`: repository
|
|
657
|
+
`DIRECTORY`: directory - `LIBRARY`: library - `FILE`: file - `REPO`: repository - `DASHBOARD`:
|
|
658
|
+
Lakeview dashboard"""
|
|
648
659
|
|
|
660
|
+
DASHBOARD = 'DASHBOARD'
|
|
649
661
|
DIRECTORY = 'DIRECTORY'
|
|
650
662
|
FILE = 'FILE'
|
|
651
663
|
LIBRARY = 'LIBRARY'
|
|
@@ -1516,10 +1528,9 @@ class ReposAPI:
|
|
|
1516
1528
|
|
|
1517
1529
|
while True:
|
|
1518
1530
|
json = self._api.do('GET', '/api/2.0/repos', query=query, headers=headers)
|
|
1519
|
-
if 'repos'
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
yield RepoInfo.from_dict(v)
|
|
1531
|
+
if 'repos' in json:
|
|
1532
|
+
for v in json['repos']:
|
|
1533
|
+
yield RepoInfo.from_dict(v)
|
|
1523
1534
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
1524
1535
|
return
|
|
1525
1536
|
query['next_page_token'] = json['next_page_token']
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.19.0'
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
+
databricks/sdk/__init__.py,sha256=4JXWEpBRPBDpYP9rqv6x6-lhU-J1Bcp6a69wIR9bEaw,38304
|
|
3
|
+
databricks/sdk/azure.py,sha256=92fNK4CmQGs-pCTA9r7Anv7u_84l79Q5uQ9m1HugChk,2299
|
|
4
|
+
databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
|
|
5
|
+
databricks/sdk/config.py,sha256=k6KOotFgR99XzpTVSe3AESp_EkBV6iBeV4iyO4hhft4,18811
|
|
6
|
+
databricks/sdk/core.py,sha256=Bep7loMEKZNgj-1jLgnz4tBW45zunXhAPJGgM9uXOy8,18134
|
|
7
|
+
databricks/sdk/credentials_provider.py,sha256=zLmXLbt6zDS-P4jRBiS9if6QQGOea2CZn3fUrmJuJLY,26255
|
|
8
|
+
databricks/sdk/dbutils.py,sha256=k-3ENkdUQwWQqX6g59OpezY3cT7TQqafVnXAtUHBjIg,12947
|
|
9
|
+
databricks/sdk/environments.py,sha256=gStDfgI07ECd6Pb82Rf-nRjf48NH6hOY3UfTXm4YNZ4,2861
|
|
10
|
+
databricks/sdk/oauth.py,sha256=xSk2js5RaKkp4HY0ZAzIpA7Y73KFVwtGItmpoRJyEy8,18338
|
|
11
|
+
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
12
|
+
databricks/sdk/retries.py,sha256=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
|
|
13
|
+
databricks/sdk/version.py,sha256=0oosv1io7ZLWIP51h3aW4WiUU6JK4g80JBajmF2xLAM,23
|
|
14
|
+
databricks/sdk/_widgets/__init__.py,sha256=tm1Qv6j_l9zDZ2fVb83-kRI68jLW8cJRKrVSsy1iQWo,2669
|
|
15
|
+
databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
|
|
16
|
+
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
|
|
17
|
+
databricks/sdk/errors/__init__.py,sha256=2X1j1rPSfgx0ryqDoMGTobTcnOaKqw-JIWhlpv7LH2E,123
|
|
18
|
+
databricks/sdk/errors/base.py,sha256=7bEBt-sOSNgL9EwSz87k_tZrwOfHdW3xfxxLHNdx_J4,2245
|
|
19
|
+
databricks/sdk/errors/mapper.py,sha256=6z_FLNr1bFGowstp45gHumCaBAf8Sdr4V-qmcxrguSI,927
|
|
20
|
+
databricks/sdk/errors/platform.py,sha256=dpD97-YcjXTqOwWg2XulFzdyb8qufN14PyU1FdukpF8,3017
|
|
21
|
+
databricks/sdk/errors/sdk.py,sha256=_euMruhvquB0v_SKtgqxJUiyXHWuTb4Jl7ji6_h0E_A,109
|
|
22
|
+
databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
databricks/sdk/mixins/compute.py,sha256=j5Pa0ufm97YGZPxzjALWYlH52XDTsIbF1kMJ2OYLBE8,11131
|
|
24
|
+
databricks/sdk/mixins/files.py,sha256=BnG665KY-pUqFqv91pVSUqVwA_iQUCZkVN4kh--l0uc,13256
|
|
25
|
+
databricks/sdk/mixins/workspace.py,sha256=p-g06qatuGVaeVe1RapLlKKdp3tKn8SeLQbWqIahDUk,4856
|
|
26
|
+
databricks/sdk/runtime/__init__.py,sha256=QM2dZK0xU2hvQsBw6WMCGtzJdLAj-lzLtxN1hYAuX3s,3591
|
|
27
|
+
databricks/sdk/runtime/dbutils_stub.py,sha256=-kiNS2Mn8lGahJ3r5S-qsrqRdivRrbTp2f_wx-sECMw,11404
|
|
28
|
+
databricks/sdk/runtime/stub.py,sha256=S9I9CkHcMHoYKrgft4NzC0uu7odNu_N2nHDsGAvFVJc,1676
|
|
29
|
+
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
databricks/sdk/service/_internal.py,sha256=79IeS-DAwfkHEIKWYek-7ZxrCRCk0SXtRezJrgKSPFc,1837
|
|
31
|
+
databricks/sdk/service/billing.py,sha256=NTDZ3ujJo7Qk0ahXe6zEOKWl1M2a0WAizpXUBG-W8Uo,49040
|
|
32
|
+
databricks/sdk/service/catalog.py,sha256=fyKDuct9nkp8ti-8m0z0ro15nOeaZm7wD0qEaoCjUVw,367888
|
|
33
|
+
databricks/sdk/service/compute.py,sha256=kaHtdlXO5PmJeOnlEOm9JoXy0wWiTTJx2oqPTy3ld30,385984
|
|
34
|
+
databricks/sdk/service/dashboards.py,sha256=2hSwCGqizskSJLyA71UrUqxbB68tldAV7eyV3MTxUC0,3119
|
|
35
|
+
databricks/sdk/service/files.py,sha256=-yVGEaDhIMdBJ1ndJ8gbxfVnGXx22Tx6x55KRpktGfc,27880
|
|
36
|
+
databricks/sdk/service/iam.py,sha256=Wp0YQtY3U6HOK89B8x8zE9YvYrXtN50ySZfxRnI5n5w,141143
|
|
37
|
+
databricks/sdk/service/jobs.py,sha256=qa85SMZikv4xEbtfjmV93FrJxB39cJVGM2cZwCS1TA0,282620
|
|
38
|
+
databricks/sdk/service/ml.py,sha256=3rhYmtCyM7Xpvc-ki_sn3IWZqNQhbWOfOjUjyVc6ghk,226046
|
|
39
|
+
databricks/sdk/service/oauth2.py,sha256=N1cKI-nfmSlOThTMfvLmGEQ0k9rW37fnviQ6XLBq41Y,34025
|
|
40
|
+
databricks/sdk/service/pipelines.py,sha256=0vYrct76HVgKXOqg0Cn5nDHpr6Zl2JJmYioIdTFGRR8,99814
|
|
41
|
+
databricks/sdk/service/provisioning.py,sha256=vmuGk5YTwmMTw6Sv1MPYaw2K9pyegTAUqSQhiy5x0r8,140932
|
|
42
|
+
databricks/sdk/service/serving.py,sha256=WH7VPZxXiPMTJUxI0WRNMBQW7gGJe4fRb6gTuMMcEwg,127864
|
|
43
|
+
databricks/sdk/service/settings.py,sha256=q_9XfhF8iYBmSEaa9Li954GRLIWlM3VrtLuB2qafTCY,125962
|
|
44
|
+
databricks/sdk/service/sharing.py,sha256=wk0SpqnlQQf-rAizxRH2wswDrGU40kH2QUZ7Yy-36_Q,96411
|
|
45
|
+
databricks/sdk/service/sql.py,sha256=ceW0vg_LWX5o8r00LBF8px8o_T6IVqP1UlCPFk0hPro,250354
|
|
46
|
+
databricks/sdk/service/vectorsearch.py,sha256=dpAR2O69J67JviWW27QYc5nLnSZUmKp0PgtowpEuITA,50099
|
|
47
|
+
databricks/sdk/service/workspace.py,sha256=qeArqeM77WohyZhNVbj3vxDOCmOxx_fudP5Fu_9840E,93037
|
|
48
|
+
databricks_sdk-0.19.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
49
|
+
databricks_sdk-0.19.0.dist-info/METADATA,sha256=AcB5MqX2-jrHWckQRpcCDheOoEMrIPcC__v02iorkN8,34408
|
|
50
|
+
databricks_sdk-0.19.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
|
|
51
|
+
databricks_sdk-0.19.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
52
|
+
databricks_sdk-0.19.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
53
|
+
databricks_sdk-0.19.0.dist-info/RECORD,,
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=HFOE6q3dETKjAPEPnspHbKBjWazC3MoFwXLFWyJ6xGY,37087
|
|
3
|
-
databricks/sdk/azure.py,sha256=tcZz3xusY69yeCRmN9x6lX2ImK2i_LPAfPIkZNLTwKw,1754
|
|
4
|
-
databricks/sdk/config.py,sha256=KbF5XAeYt_nlnyI6-OHM1yX6SO5pxC0QaA2hfdCRCHs,18599
|
|
5
|
-
databricks/sdk/core.py,sha256=cqBc75_aiCKKGlKl8hYMItp0BjuVN9bKv0NVQdsEbl0,18083
|
|
6
|
-
databricks/sdk/credentials_provider.py,sha256=18LC_1w0grbp_pupF03eLc2KQinIsR7fiE3DUIOrwDc,25732
|
|
7
|
-
databricks/sdk/dbutils.py,sha256=k-3ENkdUQwWQqX6g59OpezY3cT7TQqafVnXAtUHBjIg,12947
|
|
8
|
-
databricks/sdk/environments.py,sha256=SQoqRtN60GHMfOMKJHHSi6oTeOjYdfybcifR8VNbC70,2862
|
|
9
|
-
databricks/sdk/oauth.py,sha256=xSk2js5RaKkp4HY0ZAzIpA7Y73KFVwtGItmpoRJyEy8,18338
|
|
10
|
-
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
11
|
-
databricks/sdk/retries.py,sha256=t8NNwdNxr87U04n4DxnXgGpJVYWWpzTvykeBcW3RvjM,2343
|
|
12
|
-
databricks/sdk/version.py,sha256=xLQqGjpDoJw8wh7LhnSmkR_X41AAFaOxbyFZXuEbtfY,23
|
|
13
|
-
databricks/sdk/_widgets/__init__.py,sha256=tm1Qv6j_l9zDZ2fVb83-kRI68jLW8cJRKrVSsy1iQWo,2669
|
|
14
|
-
databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
|
|
15
|
-
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
|
|
16
|
-
databricks/sdk/errors/__init__.py,sha256=hJDP258YKEB3VBYiz1NukwVhXTw35JDd0LCIP17fkJQ,122
|
|
17
|
-
databricks/sdk/errors/base.py,sha256=7bEBt-sOSNgL9EwSz87k_tZrwOfHdW3xfxxLHNdx_J4,2245
|
|
18
|
-
databricks/sdk/errors/mapper.py,sha256=kpdkkrIo6C9gSRYDxLHde9KrO4Zavteo3acQyrM_vKo,922
|
|
19
|
-
databricks/sdk/errors/mapping.py,sha256=dpD97-YcjXTqOwWg2XulFzdyb8qufN14PyU1FdukpF8,3017
|
|
20
|
-
databricks/sdk/errors/sdk.py,sha256=_euMruhvquB0v_SKtgqxJUiyXHWuTb4Jl7ji6_h0E_A,109
|
|
21
|
-
databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
databricks/sdk/mixins/compute.py,sha256=j5Pa0ufm97YGZPxzjALWYlH52XDTsIbF1kMJ2OYLBE8,11131
|
|
23
|
-
databricks/sdk/mixins/files.py,sha256=BnG665KY-pUqFqv91pVSUqVwA_iQUCZkVN4kh--l0uc,13256
|
|
24
|
-
databricks/sdk/mixins/workspace.py,sha256=_XuwDRX0Tym1unB6wcroGQ7_lVDAQeqlnQ_FnLUVMhE,4769
|
|
25
|
-
databricks/sdk/runtime/__init__.py,sha256=QM2dZK0xU2hvQsBw6WMCGtzJdLAj-lzLtxN1hYAuX3s,3591
|
|
26
|
-
databricks/sdk/runtime/dbutils_stub.py,sha256=-kiNS2Mn8lGahJ3r5S-qsrqRdivRrbTp2f_wx-sECMw,11404
|
|
27
|
-
databricks/sdk/runtime/stub.py,sha256=S9I9CkHcMHoYKrgft4NzC0uu7odNu_N2nHDsGAvFVJc,1676
|
|
28
|
-
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
databricks/sdk/service/_internal.py,sha256=79IeS-DAwfkHEIKWYek-7ZxrCRCk0SXtRezJrgKSPFc,1837
|
|
30
|
-
databricks/sdk/service/billing.py,sha256=NTDZ3ujJo7Qk0ahXe6zEOKWl1M2a0WAizpXUBG-W8Uo,49040
|
|
31
|
-
databricks/sdk/service/catalog.py,sha256=hTSbxRU1lSBWWtpRli3uJoBVnAPdBjYz6WLPH8vxNsE,363805
|
|
32
|
-
databricks/sdk/service/compute.py,sha256=zRQt0dlZ0j-GcnAdLAdL6vo0FKCDTEOIN01k0LFbooc,383176
|
|
33
|
-
databricks/sdk/service/dashboards.py,sha256=2hSwCGqizskSJLyA71UrUqxbB68tldAV7eyV3MTxUC0,3119
|
|
34
|
-
databricks/sdk/service/files.py,sha256=IvV4t_zPoN4LUTiZGp_qGhYbdREXS_N1gIzQOvI1bTY,23222
|
|
35
|
-
databricks/sdk/service/iam.py,sha256=P5RBPNAGQFzemftr_tV3PzC00uAF3iKrPEsO3OqpeHM,140783
|
|
36
|
-
databricks/sdk/service/jobs.py,sha256=f6gzuEF4kWBHAhTd8k6-BRvhVWOyBOR2LCo_m0e3Jow,274104
|
|
37
|
-
databricks/sdk/service/ml.py,sha256=6r3q7tKSv8XTeucJCkS2WRd6MLRUioEHmKkOn0GI4mg,226455
|
|
38
|
-
databricks/sdk/service/oauth2.py,sha256=HQshH6TARK2cRJfqWak8ETNffSv11LIX9aVSPaSOkmM,34064
|
|
39
|
-
databricks/sdk/service/pipelines.py,sha256=CTL2yprJ7wdacJqZxvBoCR9EVk6kIW-azW2BBYuFngM,98595
|
|
40
|
-
databricks/sdk/service/provisioning.py,sha256=vmuGk5YTwmMTw6Sv1MPYaw2K9pyegTAUqSQhiy5x0r8,140932
|
|
41
|
-
databricks/sdk/service/serving.py,sha256=WH7VPZxXiPMTJUxI0WRNMBQW7gGJe4fRb6gTuMMcEwg,127864
|
|
42
|
-
databricks/sdk/service/settings.py,sha256=qpe3Taf25KdwczfHCNYgBSsSOt4ylsvkS9fraq8YSDA,111262
|
|
43
|
-
databricks/sdk/service/sharing.py,sha256=_ECypl6NOii8kt8y9rtxb0e2PEi_zc144xwJtf5RKfY,96457
|
|
44
|
-
databricks/sdk/service/sql.py,sha256=wfc5cN6DaHFilm2Ajdrf6ZteR1EyPvoznkoSeDSTgpE,249924
|
|
45
|
-
databricks/sdk/service/vectorsearch.py,sha256=xSPEsJSbTn6zH_vYbEnRXP2g-ZE-MryRaeKLodoVLHA,50300
|
|
46
|
-
databricks/sdk/service/workspace.py,sha256=86SsamM6-LptrHyASsnt4372DrkB2zKHvIzA2Ts-Jg8,92510
|
|
47
|
-
databricks_sdk-0.18.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
48
|
-
databricks_sdk-0.18.0.dist-info/METADATA,sha256=GxfWH1zudm1zcvCerGhOCHcBaLuUEf35kOM2xtLYbQM,34408
|
|
49
|
-
databricks_sdk-0.18.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
|
|
50
|
-
databricks_sdk-0.18.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
51
|
-
databricks_sdk-0.18.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
52
|
-
databricks_sdk-0.18.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|