databricks-sdk 0.17.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 +41 -5
- databricks/sdk/azure.py +17 -7
- databricks/sdk/clock.py +49 -0
- databricks/sdk/config.py +459 -0
- databricks/sdk/core.py +7 -1026
- databricks/sdk/credentials_provider.py +628 -0
- databricks/sdk/environments.py +72 -0
- databricks/sdk/errors/__init__.py +1 -1
- databricks/sdk/errors/mapper.py +5 -5
- databricks/sdk/mixins/workspace.py +3 -3
- databricks/sdk/oauth.py +2 -1
- databricks/sdk/retries.py +9 -5
- databricks/sdk/service/_internal.py +1 -1
- databricks/sdk/service/catalog.py +946 -82
- databricks/sdk/service/compute.py +106 -41
- databricks/sdk/service/files.py +145 -31
- databricks/sdk/service/iam.py +44 -40
- databricks/sdk/service/jobs.py +199 -20
- databricks/sdk/service/ml.py +33 -42
- databricks/sdk/service/oauth2.py +3 -4
- databricks/sdk/service/pipelines.py +51 -31
- databricks/sdk/service/serving.py +1 -2
- databricks/sdk/service/settings.py +377 -72
- databricks/sdk/service/sharing.py +3 -4
- databricks/sdk/service/sql.py +27 -19
- databricks/sdk/service/vectorsearch.py +13 -17
- databricks/sdk/service/workspace.py +20 -11
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.17.0.dist-info → databricks_sdk-0.19.0.dist-info}/METADATA +4 -4
- databricks_sdk-0.19.0.dist-info/RECORD +53 -0
- databricks_sdk-0.17.0.dist-info/RECORD +0 -49
- /databricks/sdk/errors/{mapping.py → platform.py} +0 -0
- {databricks_sdk-0.17.0.dist-info → databricks_sdk-0.19.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.17.0.dist-info → databricks_sdk-0.19.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.17.0.dist-info → databricks_sdk-0.19.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.17.0.dist-info → databricks_sdk-0.19.0.dist-info}/top_level.txt +0 -0
|
@@ -1644,10 +1644,9 @@ class CleanRoomsAPI:
|
|
|
1644
1644
|
|
|
1645
1645
|
while True:
|
|
1646
1646
|
json = self._api.do('GET', '/api/2.1/unity-catalog/clean-rooms', query=query, headers=headers)
|
|
1647
|
-
if 'clean_rooms'
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
yield CleanRoomInfo.from_dict(v)
|
|
1647
|
+
if 'clean_rooms' in json:
|
|
1648
|
+
for v in json['clean_rooms']:
|
|
1649
|
+
yield CleanRoomInfo.from_dict(v)
|
|
1651
1650
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
1652
1651
|
return
|
|
1653
1652
|
query['page_token'] = json['next_page_token']
|
databricks/sdk/service/sql.py
CHANGED
|
@@ -3441,8 +3441,7 @@ class WarehouseAccessControlRequest:
|
|
|
3441
3441
|
"""Permission level"""
|
|
3442
3442
|
|
|
3443
3443
|
service_principal_name: Optional[str] = None
|
|
3444
|
-
"""
|
|
3445
|
-
`servicePrincipal/user` role."""
|
|
3444
|
+
"""application ID of a service principal"""
|
|
3446
3445
|
|
|
3447
3446
|
user_name: Optional[str] = None
|
|
3448
3447
|
"""name of the user"""
|
|
@@ -4051,6 +4050,9 @@ class DashboardsAPI:
|
|
|
4051
4050
|
|
|
4052
4051
|
Fetch a paginated list of dashboard objects.
|
|
4053
4052
|
|
|
4053
|
+
### **Warning: Calling this API concurrently 10 or more times could result in throttling, service
|
|
4054
|
+
degradation, or a temporary ban.**
|
|
4055
|
+
|
|
4054
4056
|
:param order: :class:`ListOrder` (optional)
|
|
4055
4057
|
Name of dashboard attribute to order by.
|
|
4056
4058
|
:param page: int (optional)
|
|
@@ -4075,14 +4077,15 @@ class DashboardsAPI:
|
|
|
4075
4077
|
query['page'] = 1
|
|
4076
4078
|
while True:
|
|
4077
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)
|
|
4078
4087
|
if 'results' not in json or not json['results']:
|
|
4079
4088
|
return
|
|
4080
|
-
for v in json['results']:
|
|
4081
|
-
i = v['id']
|
|
4082
|
-
if i in seen:
|
|
4083
|
-
continue
|
|
4084
|
-
seen.add(i)
|
|
4085
|
-
yield Dashboard.from_dict(v)
|
|
4086
4089
|
query['page'] += 1
|
|
4087
4090
|
|
|
4088
4091
|
def restore(self, dashboard_id: str):
|
|
@@ -4350,6 +4353,9 @@ class QueriesAPI:
|
|
|
4350
4353
|
|
|
4351
4354
|
Gets a list of queries. Optionally, this list can be filtered by a search term.
|
|
4352
4355
|
|
|
4356
|
+
### **Warning: Calling this API concurrently 10 or more times could result in throttling, service
|
|
4357
|
+
degradation, or a temporary ban.**
|
|
4358
|
+
|
|
4353
4359
|
:param order: str (optional)
|
|
4354
4360
|
Name of query attribute to order by. Default sort order is ascending. Append a dash (`-`) to order
|
|
4355
4361
|
descending instead.
|
|
@@ -4386,14 +4392,15 @@ class QueriesAPI:
|
|
|
4386
4392
|
query['page'] = 1
|
|
4387
4393
|
while True:
|
|
4388
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)
|
|
4389
4402
|
if 'results' not in json or not json['results']:
|
|
4390
4403
|
return
|
|
4391
|
-
for v in json['results']:
|
|
4392
|
-
i = v['id']
|
|
4393
|
-
if i in seen:
|
|
4394
|
-
continue
|
|
4395
|
-
seen.add(i)
|
|
4396
|
-
yield Query.from_dict(v)
|
|
4397
4404
|
query['page'] += 1
|
|
4398
4405
|
|
|
4399
4406
|
def restore(self, query_id: str):
|
|
@@ -4484,7 +4491,9 @@ class QueryHistoryAPI:
|
|
|
4484
4491
|
:param max_results: int (optional)
|
|
4485
4492
|
Limit the number of results returned in one page. The default is 100.
|
|
4486
4493
|
:param page_token: str (optional)
|
|
4487
|
-
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.
|
|
4488
4497
|
|
|
4489
4498
|
:returns: Iterator over :class:`QueryInfo`
|
|
4490
4499
|
"""
|
|
@@ -4498,10 +4507,9 @@ class QueryHistoryAPI:
|
|
|
4498
4507
|
|
|
4499
4508
|
while True:
|
|
4500
4509
|
json = self._api.do('GET', '/api/2.0/sql/history/queries', query=query, headers=headers)
|
|
4501
|
-
if 'res'
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
yield QueryInfo.from_dict(v)
|
|
4510
|
+
if 'res' in json:
|
|
4511
|
+
for v in json['res']:
|
|
4512
|
+
yield QueryInfo.from_dict(v)
|
|
4505
4513
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
4506
4514
|
return
|
|
4507
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'
|
|
@@ -721,8 +733,7 @@ class RepoAccessControlRequest:
|
|
|
721
733
|
"""Permission level"""
|
|
722
734
|
|
|
723
735
|
service_principal_name: Optional[str] = None
|
|
724
|
-
"""
|
|
725
|
-
`servicePrincipal/user` role."""
|
|
736
|
+
"""application ID of a service principal"""
|
|
726
737
|
|
|
727
738
|
user_name: Optional[str] = None
|
|
728
739
|
"""name of the user"""
|
|
@@ -1101,8 +1112,7 @@ class WorkspaceObjectAccessControlRequest:
|
|
|
1101
1112
|
"""Permission level"""
|
|
1102
1113
|
|
|
1103
1114
|
service_principal_name: Optional[str] = None
|
|
1104
|
-
"""
|
|
1105
|
-
`servicePrincipal/user` role."""
|
|
1115
|
+
"""application ID of a service principal"""
|
|
1106
1116
|
|
|
1107
1117
|
user_name: Optional[str] = None
|
|
1108
1118
|
"""name of the user"""
|
|
@@ -1518,10 +1528,9 @@ class ReposAPI:
|
|
|
1518
1528
|
|
|
1519
1529
|
while True:
|
|
1520
1530
|
json = self._api.do('GET', '/api/2.0/repos', query=query, headers=headers)
|
|
1521
|
-
if 'repos'
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
yield RepoInfo.from_dict(v)
|
|
1531
|
+
if 'repos' in json:
|
|
1532
|
+
for v in json['repos']:
|
|
1533
|
+
yield RepoInfo.from_dict(v)
|
|
1525
1534
|
if 'next_page_token' not in json or not json['next_page_token']:
|
|
1526
1535
|
return
|
|
1527
1536
|
query['next_page_token'] = json['next_page_token']
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.19.0'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: databricks-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
4
4
|
Summary: Databricks SDK for Python (Beta)
|
|
5
5
|
Home-page: https://databricks-sdk-py.readthedocs.io
|
|
6
6
|
Author: Serge Smertin
|
|
@@ -197,12 +197,12 @@ The Databricks SDK for Python picks up an Azure CLI token, if you've previously
|
|
|
197
197
|
|
|
198
198
|
To authenticate as an Azure Active Directory (Azure AD) service principal, you must provide one of the following. See also [Add a service principal to your Azure Databricks account](https://learn.microsoft.com/azure/databricks/administration-guide/users-groups/service-principals#add-sp-account):
|
|
199
199
|
|
|
200
|
-
- `
|
|
201
|
-
- `
|
|
200
|
+
- `azure_workspace_resource_id`, `azure_client_secret`, `azure_client_id`, and `azure_tenant_id`; or their environment variable or `.databrickscfg` file field equivalents.
|
|
201
|
+
- `azure_workspace_resource_id` and `azure_use_msi`; or their environment variable or `.databrickscfg` file field equivalents.
|
|
202
202
|
|
|
203
203
|
| Argument | Description | Environment variable |
|
|
204
204
|
|-----------------------|-------------|----------------------|
|
|
205
|
-
| `
|
|
205
|
+
| `azure_workspace_resource_id` | _(String)_ The Azure Resource Manager ID for the Azure Databricks workspace, which is exchanged for a Databricks host URL. | `DATABRICKS_AZURE_RESOURCE_ID` |
|
|
206
206
|
| `azure_use_msi` | _(Boolean)_ `true` to use Azure Managed Service Identity passwordless authentication flow for service principals. _This feature is not yet implemented in the Databricks SDK for Python._ | `ARM_USE_MSI` |
|
|
207
207
|
| `azure_client_secret` | _(String)_ The Azure AD service principal's client secret. | `ARM_CLIENT_SECRET` |
|
|
208
208
|
| `azure_client_id` | _(String)_ The Azure AD service principal's application ID. | `ARM_CLIENT_ID` |
|
|
@@ -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,49 +0,0 @@
|
|
|
1
|
-
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=kGzQojj7iktmkgSKTDFzYSLv-8SHm2Awx91A95PWjJY,36725
|
|
3
|
-
databricks/sdk/azure.py,sha256=cPhTzz_BVvA_y8-PJlHyWZ2ylIyc4USKYDVsgboMQLE,2120
|
|
4
|
-
databricks/sdk/core.py,sha256=q9yHpuRdIVrf1TvKIATi5HtgVLfGfrx0L6SR10EhmR0,60998
|
|
5
|
-
databricks/sdk/dbutils.py,sha256=k-3ENkdUQwWQqX6g59OpezY3cT7TQqafVnXAtUHBjIg,12947
|
|
6
|
-
databricks/sdk/oauth.py,sha256=oK-rxuS1Tl6hoNejnz4fbp0E5s-7gVdmwIhyQWl6yQo,18297
|
|
7
|
-
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
8
|
-
databricks/sdk/retries.py,sha256=t8NNwdNxr87U04n4DxnXgGpJVYWWpzTvykeBcW3RvjM,2343
|
|
9
|
-
databricks/sdk/version.py,sha256=ctD9pjqBvASXR0DHHzalDZFaQsnMJWDpTalYrvY3e_Y,23
|
|
10
|
-
databricks/sdk/_widgets/__init__.py,sha256=tm1Qv6j_l9zDZ2fVb83-kRI68jLW8cJRKrVSsy1iQWo,2669
|
|
11
|
-
databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
|
|
12
|
-
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
|
|
13
|
-
databricks/sdk/errors/__init__.py,sha256=hJDP258YKEB3VBYiz1NukwVhXTw35JDd0LCIP17fkJQ,122
|
|
14
|
-
databricks/sdk/errors/base.py,sha256=7bEBt-sOSNgL9EwSz87k_tZrwOfHdW3xfxxLHNdx_J4,2245
|
|
15
|
-
databricks/sdk/errors/mapper.py,sha256=kpdkkrIo6C9gSRYDxLHde9KrO4Zavteo3acQyrM_vKo,922
|
|
16
|
-
databricks/sdk/errors/mapping.py,sha256=dpD97-YcjXTqOwWg2XulFzdyb8qufN14PyU1FdukpF8,3017
|
|
17
|
-
databricks/sdk/errors/sdk.py,sha256=_euMruhvquB0v_SKtgqxJUiyXHWuTb4Jl7ji6_h0E_A,109
|
|
18
|
-
databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
databricks/sdk/mixins/compute.py,sha256=j5Pa0ufm97YGZPxzjALWYlH52XDTsIbF1kMJ2OYLBE8,11131
|
|
20
|
-
databricks/sdk/mixins/files.py,sha256=BnG665KY-pUqFqv91pVSUqVwA_iQUCZkVN4kh--l0uc,13256
|
|
21
|
-
databricks/sdk/mixins/workspace.py,sha256=_XuwDRX0Tym1unB6wcroGQ7_lVDAQeqlnQ_FnLUVMhE,4769
|
|
22
|
-
databricks/sdk/runtime/__init__.py,sha256=QM2dZK0xU2hvQsBw6WMCGtzJdLAj-lzLtxN1hYAuX3s,3591
|
|
23
|
-
databricks/sdk/runtime/dbutils_stub.py,sha256=-kiNS2Mn8lGahJ3r5S-qsrqRdivRrbTp2f_wx-sECMw,11404
|
|
24
|
-
databricks/sdk/runtime/stub.py,sha256=S9I9CkHcMHoYKrgft4NzC0uu7odNu_N2nHDsGAvFVJc,1676
|
|
25
|
-
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
databricks/sdk/service/_internal.py,sha256=P8OLneF_9Esa-CalPUqjrhjqw4A7bzcAT0v7Z0eWG58,1839
|
|
27
|
-
databricks/sdk/service/billing.py,sha256=NTDZ3ujJo7Qk0ahXe6zEOKWl1M2a0WAizpXUBG-W8Uo,49040
|
|
28
|
-
databricks/sdk/service/catalog.py,sha256=znKN9JSVJ9iWeUmp2yiCyvvDnC-S5tXFt1n7JsXy6hw,324182
|
|
29
|
-
databricks/sdk/service/compute.py,sha256=8OTM3cC9bG4pN3pbW6ctxyw1-rnr3o-W4QLzCLQPnY0,383004
|
|
30
|
-
databricks/sdk/service/dashboards.py,sha256=2hSwCGqizskSJLyA71UrUqxbB68tldAV7eyV3MTxUC0,3119
|
|
31
|
-
databricks/sdk/service/files.py,sha256=aJOOS856qsDs6QEKJ_LHYGrrPGbWCT8s1-I6AwGHh8s,23208
|
|
32
|
-
databricks/sdk/service/iam.py,sha256=uOI_Mk-o7A0zkkVo_DFzy4Sr2apqaLNi4N539TD7TrA,140933
|
|
33
|
-
databricks/sdk/service/jobs.py,sha256=hZM9DDgpP9Jc6konjFa3-OdGz-EZNPw0YtjtriSzJLw,274089
|
|
34
|
-
databricks/sdk/service/ml.py,sha256=0gcrPbL-lqowMtnAVcJ-6kyvj6c-vC248pgSk3fvniM,226248
|
|
35
|
-
databricks/sdk/service/oauth2.py,sha256=HQshH6TARK2cRJfqWak8ETNffSv11LIX9aVSPaSOkmM,34064
|
|
36
|
-
databricks/sdk/service/pipelines.py,sha256=UelRGVyvnYFvqmf00iFmp8jRB8mMpUZ93hI6zvQFVcs,98670
|
|
37
|
-
databricks/sdk/service/provisioning.py,sha256=vmuGk5YTwmMTw6Sv1MPYaw2K9pyegTAUqSQhiy5x0r8,140932
|
|
38
|
-
databricks/sdk/service/serving.py,sha256=uFIDTOlE6zd3hmHb2S7Fj712-wy0AEl1lvzPwkBsKHs,127939
|
|
39
|
-
databricks/sdk/service/settings.py,sha256=XO_NszJd0LA6JfFGyR3U2NoQxmg-jKg-VAaAJlBOABo,110364
|
|
40
|
-
databricks/sdk/service/sharing.py,sha256=_ECypl6NOii8kt8y9rtxb0e2PEi_zc144xwJtf5RKfY,96457
|
|
41
|
-
databricks/sdk/service/sql.py,sha256=t9ywn-Cn7tOMCjualnShAPd2L_k1TRx8RGu4exdMi6s,249871
|
|
42
|
-
databricks/sdk/service/vectorsearch.py,sha256=xSPEsJSbTn6zH_vYbEnRXP2g-ZE-MryRaeKLodoVLHA,50300
|
|
43
|
-
databricks/sdk/service/workspace.py,sha256=4Q2ZlgVpSWYuucWiHHnYzQFdSMlo1I3w8g-xinb7BoM,92660
|
|
44
|
-
databricks_sdk-0.17.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
45
|
-
databricks_sdk-0.17.0.dist-info/METADATA,sha256=I592BJMnJFLfoqSORtBLcNbE_agpWa5bmY8xNZKup44,34378
|
|
46
|
-
databricks_sdk-0.17.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
|
|
47
|
-
databricks_sdk-0.17.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
48
|
-
databricks_sdk-0.17.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
49
|
-
databricks_sdk-0.17.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|