databricks-sdk 0.40.0__py3-none-any.whl → 0.41.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 +23 -3
- databricks/sdk/_base_client.py +16 -3
- databricks/sdk/config.py +5 -0
- databricks/sdk/credentials_provider.py +23 -14
- databricks/sdk/data_plane.py +1 -1
- databricks/sdk/mixins/files.py +184 -1
- databricks/sdk/mixins/open_ai_client.py +40 -1
- databricks/sdk/service/apps.py +12 -4
- databricks/sdk/service/catalog.py +1 -0
- databricks/sdk/service/cleanrooms.py +2 -1
- databricks/sdk/service/compute.py +4 -0
- databricks/sdk/service/dashboards.py +7 -4
- databricks/sdk/service/files.py +6 -3
- databricks/sdk/service/iam.py +158 -0
- databricks/sdk/service/jobs.py +168 -16
- databricks/sdk/service/oauth2.py +53 -45
- databricks/sdk/service/pipelines.py +89 -12
- databricks/sdk/service/serving.py +423 -215
- databricks/sdk/service/sharing.py +51 -54
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.40.0.dist-info → databricks_sdk-0.41.0.dist-info}/METADATA +26 -26
- {databricks_sdk-0.40.0.dist-info → databricks_sdk-0.41.0.dist-info}/RECORD +26 -26
- {databricks_sdk-0.40.0.dist-info → databricks_sdk-0.41.0.dist-info}/WHEEL +1 -1
- {databricks_sdk-0.40.0.dist-info → databricks_sdk-0.41.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.40.0.dist-info → databricks_sdk-0.41.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.40.0.dist-info → databricks_sdk-0.41.0.dist-info}/top_level.txt +0 -0
|
@@ -35,7 +35,8 @@ class CreateProvider:
|
|
|
35
35
|
"""Description about the provider."""
|
|
36
36
|
|
|
37
37
|
recipient_profile_str: Optional[str] = None
|
|
38
|
-
"""This field is required when the __authentication_type__ is **TOKEN
|
|
38
|
+
"""This field is required when the __authentication_type__ is **TOKEN**,
|
|
39
|
+
**OAUTH_CLIENT_CREDENTIALS** or not provided."""
|
|
39
40
|
|
|
40
41
|
def as_dict(self) -> dict:
|
|
41
42
|
"""Serializes the CreateProvider into a dictionary suitable for use as a JSON request body."""
|
|
@@ -76,7 +77,7 @@ class CreateRecipient:
|
|
|
76
77
|
"""Description about the recipient."""
|
|
77
78
|
|
|
78
79
|
data_recipient_global_metastore_id: Optional[str] = None
|
|
79
|
-
"""The global Unity Catalog metastore id provided by the data recipient. This field is
|
|
80
|
+
"""The global Unity Catalog metastore id provided by the data recipient. This field is only present
|
|
80
81
|
when the __authentication_type__ is **DATABRICKS**. The identifier is of format
|
|
81
82
|
__cloud__:__region__:__metastore-uuid__."""
|
|
82
83
|
|
|
@@ -90,10 +91,12 @@ class CreateRecipient:
|
|
|
90
91
|
"""Username of the recipient owner."""
|
|
91
92
|
|
|
92
93
|
properties_kvpairs: Optional[SecurablePropertiesKvPairs] = None
|
|
93
|
-
"""Recipient properties as map of string key-value pairs.
|
|
94
|
+
"""Recipient properties as map of string key-value pairs. When provided in update request, the
|
|
95
|
+
specified properties will override the existing properties. To add and remove properties, one
|
|
96
|
+
would need to perform a read-modify-write."""
|
|
94
97
|
|
|
95
98
|
sharing_code: Optional[str] = None
|
|
96
|
-
"""The one-time sharing code provided by the data recipient. This field is
|
|
99
|
+
"""The one-time sharing code provided by the data recipient. This field is only present when the
|
|
97
100
|
__authentication_type__ is **DATABRICKS**."""
|
|
98
101
|
|
|
99
102
|
def as_dict(self) -> dict:
|
|
@@ -581,7 +584,7 @@ class ProviderInfo:
|
|
|
581
584
|
data_provider_global_metastore_id: Optional[str] = None
|
|
582
585
|
"""The global UC metastore id of the data provider. This field is only present when the
|
|
583
586
|
__authentication_type__ is **DATABRICKS**. The identifier is of format
|
|
584
|
-
|
|
587
|
+
__cloud__:__region__:__metastore-uuid__."""
|
|
585
588
|
|
|
586
589
|
metastore_id: Optional[str] = None
|
|
587
590
|
"""UUID of the provider's UC metastore. This field is only present when the __authentication_type__
|
|
@@ -594,10 +597,12 @@ class ProviderInfo:
|
|
|
594
597
|
"""Username of Provider owner."""
|
|
595
598
|
|
|
596
599
|
recipient_profile: Optional[RecipientProfile] = None
|
|
597
|
-
"""The recipient profile. This field is only present when the authentication_type is `TOKEN
|
|
600
|
+
"""The recipient profile. This field is only present when the authentication_type is `TOKEN` or
|
|
601
|
+
`OAUTH_CLIENT_CREDENTIALS`."""
|
|
598
602
|
|
|
599
603
|
recipient_profile_str: Optional[str] = None
|
|
600
|
-
"""This field is
|
|
604
|
+
"""This field is required when the __authentication_type__ is **TOKEN**,
|
|
605
|
+
**OAUTH_CLIENT_CREDENTIALS** or not provided."""
|
|
601
606
|
|
|
602
607
|
region: Optional[str] = None
|
|
603
608
|
"""Cloud region of the provider's UC metastore. This field is only present when the
|
|
@@ -607,7 +612,7 @@ class ProviderInfo:
|
|
|
607
612
|
"""Time at which this Provider was created, in epoch milliseconds."""
|
|
608
613
|
|
|
609
614
|
updated_by: Optional[str] = None
|
|
610
|
-
"""Username of user who last modified
|
|
615
|
+
"""Username of user who last modified Provider."""
|
|
611
616
|
|
|
612
617
|
def as_dict(self) -> dict:
|
|
613
618
|
"""Serializes the ProviderInfo into a dictionary suitable for use as a JSON request body."""
|
|
@@ -704,8 +709,8 @@ class RecipientInfo:
|
|
|
704
709
|
"""The delta sharing authentication type."""
|
|
705
710
|
|
|
706
711
|
cloud: Optional[str] = None
|
|
707
|
-
"""Cloud vendor of the recipient's Unity Catalog
|
|
708
|
-
__authentication_type__ is **DATABRICKS
|
|
712
|
+
"""Cloud vendor of the recipient's Unity Catalog Metastore. This field is only present when the
|
|
713
|
+
__authentication_type__ is **DATABRICKS**."""
|
|
709
714
|
|
|
710
715
|
comment: Optional[str] = None
|
|
711
716
|
"""Description about the recipient."""
|
|
@@ -721,12 +726,15 @@ class RecipientInfo:
|
|
|
721
726
|
when the __authentication_type__ is **DATABRICKS**. The identifier is of format
|
|
722
727
|
__cloud__:__region__:__metastore-uuid__."""
|
|
723
728
|
|
|
729
|
+
expiration_time: Optional[int] = None
|
|
730
|
+
"""Expiration timestamp of the token, in epoch milliseconds."""
|
|
731
|
+
|
|
724
732
|
ip_access_list: Optional[IpAccessList] = None
|
|
725
733
|
"""IP Access List"""
|
|
726
734
|
|
|
727
735
|
metastore_id: Optional[str] = None
|
|
728
|
-
"""Unique identifier of recipient's Unity Catalog
|
|
729
|
-
__authentication_type__ is **DATABRICKS
|
|
736
|
+
"""Unique identifier of recipient's Unity Catalog Metastore. This field is only present when the
|
|
737
|
+
__authentication_type__ is **DATABRICKS**."""
|
|
730
738
|
|
|
731
739
|
name: Optional[str] = None
|
|
732
740
|
"""Name of Recipient."""
|
|
@@ -735,10 +743,12 @@ class RecipientInfo:
|
|
|
735
743
|
"""Username of the recipient owner."""
|
|
736
744
|
|
|
737
745
|
properties_kvpairs: Optional[SecurablePropertiesKvPairs] = None
|
|
738
|
-
"""Recipient properties as map of string key-value pairs.
|
|
746
|
+
"""Recipient properties as map of string key-value pairs. When provided in update request, the
|
|
747
|
+
specified properties will override the existing properties. To add and remove properties, one
|
|
748
|
+
would need to perform a read-modify-write."""
|
|
739
749
|
|
|
740
750
|
region: Optional[str] = None
|
|
741
|
-
"""Cloud region of the recipient's Unity Catalog
|
|
751
|
+
"""Cloud region of the recipient's Unity Catalog Metastore. This field is only present when the
|
|
742
752
|
__authentication_type__ is **DATABRICKS**."""
|
|
743
753
|
|
|
744
754
|
sharing_code: Optional[str] = None
|
|
@@ -766,6 +776,7 @@ class RecipientInfo:
|
|
|
766
776
|
if self.created_by is not None: body['created_by'] = self.created_by
|
|
767
777
|
if self.data_recipient_global_metastore_id is not None:
|
|
768
778
|
body['data_recipient_global_metastore_id'] = self.data_recipient_global_metastore_id
|
|
779
|
+
if self.expiration_time is not None: body['expiration_time'] = self.expiration_time
|
|
769
780
|
if self.ip_access_list: body['ip_access_list'] = self.ip_access_list.as_dict()
|
|
770
781
|
if self.metastore_id is not None: body['metastore_id'] = self.metastore_id
|
|
771
782
|
if self.name is not None: body['name'] = self.name
|
|
@@ -790,6 +801,7 @@ class RecipientInfo:
|
|
|
790
801
|
if self.created_by is not None: body['created_by'] = self.created_by
|
|
791
802
|
if self.data_recipient_global_metastore_id is not None:
|
|
792
803
|
body['data_recipient_global_metastore_id'] = self.data_recipient_global_metastore_id
|
|
804
|
+
if self.expiration_time is not None: body['expiration_time'] = self.expiration_time
|
|
793
805
|
if self.ip_access_list: body['ip_access_list'] = self.ip_access_list
|
|
794
806
|
if self.metastore_id is not None: body['metastore_id'] = self.metastore_id
|
|
795
807
|
if self.name is not None: body['name'] = self.name
|
|
@@ -813,6 +825,7 @@ class RecipientInfo:
|
|
|
813
825
|
created_at=d.get('created_at', None),
|
|
814
826
|
created_by=d.get('created_by', None),
|
|
815
827
|
data_recipient_global_metastore_id=d.get('data_recipient_global_metastore_id', None),
|
|
828
|
+
expiration_time=d.get('expiration_time', None),
|
|
816
829
|
ip_access_list=_from_dict(d, 'ip_access_list', IpAccessList),
|
|
817
830
|
metastore_id=d.get('metastore_id', None),
|
|
818
831
|
name=d.get('name', None),
|
|
@@ -869,7 +882,7 @@ class RecipientTokenInfo:
|
|
|
869
882
|
retrieved."""
|
|
870
883
|
|
|
871
884
|
created_at: Optional[int] = None
|
|
872
|
-
"""Time at which this recipient
|
|
885
|
+
"""Time at which this recipient token was created, in epoch milliseconds."""
|
|
873
886
|
|
|
874
887
|
created_by: Optional[str] = None
|
|
875
888
|
"""Username of recipient token creator."""
|
|
@@ -881,10 +894,10 @@ class RecipientTokenInfo:
|
|
|
881
894
|
"""Unique ID of the recipient token."""
|
|
882
895
|
|
|
883
896
|
updated_at: Optional[int] = None
|
|
884
|
-
"""Time at which this recipient
|
|
897
|
+
"""Time at which this recipient token was updated, in epoch milliseconds."""
|
|
885
898
|
|
|
886
899
|
updated_by: Optional[str] = None
|
|
887
|
-
"""Username of recipient
|
|
900
|
+
"""Username of recipient token updater."""
|
|
888
901
|
|
|
889
902
|
def as_dict(self) -> dict:
|
|
890
903
|
"""Serializes the RecipientTokenInfo into a dictionary suitable for use as a JSON request body."""
|
|
@@ -973,7 +986,7 @@ class RotateRecipientToken:
|
|
|
973
986
|
expire the existing token immediately, negative number will return an error."""
|
|
974
987
|
|
|
975
988
|
name: Optional[str] = None
|
|
976
|
-
"""The name of the
|
|
989
|
+
"""The name of the Recipient."""
|
|
977
990
|
|
|
978
991
|
def as_dict(self) -> dict:
|
|
979
992
|
"""Serializes the RotateRecipientToken into a dictionary suitable for use as a JSON request body."""
|
|
@@ -1023,9 +1036,6 @@ class SecurablePropertiesKvPairs:
|
|
|
1023
1036
|
return cls(properties=d.get('properties', None))
|
|
1024
1037
|
|
|
1025
1038
|
|
|
1026
|
-
SecurablePropertiesMap = Dict[str, str]
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
1039
|
@dataclass
|
|
1030
1040
|
class ShareInfo:
|
|
1031
1041
|
comment: Optional[str] = None
|
|
@@ -1346,7 +1356,8 @@ class UpdateProvider:
|
|
|
1346
1356
|
"""Username of Provider owner."""
|
|
1347
1357
|
|
|
1348
1358
|
recipient_profile_str: Optional[str] = None
|
|
1349
|
-
"""This field is required when the __authentication_type__ is **TOKEN
|
|
1359
|
+
"""This field is required when the __authentication_type__ is **TOKEN**,
|
|
1360
|
+
**OAUTH_CLIENT_CREDENTIALS** or not provided."""
|
|
1350
1361
|
|
|
1351
1362
|
def as_dict(self) -> dict:
|
|
1352
1363
|
"""Serializes the UpdateProvider into a dictionary suitable for use as a JSON request body."""
|
|
@@ -1393,7 +1404,7 @@ class UpdateRecipient:
|
|
|
1393
1404
|
"""Name of the recipient."""
|
|
1394
1405
|
|
|
1395
1406
|
new_name: Optional[str] = None
|
|
1396
|
-
"""New name for the recipient."""
|
|
1407
|
+
"""New name for the recipient. ."""
|
|
1397
1408
|
|
|
1398
1409
|
owner: Optional[str] = None
|
|
1399
1410
|
"""Username of the recipient owner."""
|
|
@@ -1439,25 +1450,6 @@ class UpdateRecipient:
|
|
|
1439
1450
|
properties_kvpairs=_from_dict(d, 'properties_kvpairs', SecurablePropertiesKvPairs))
|
|
1440
1451
|
|
|
1441
1452
|
|
|
1442
|
-
@dataclass
|
|
1443
|
-
class UpdateResponse:
|
|
1444
|
-
|
|
1445
|
-
def as_dict(self) -> dict:
|
|
1446
|
-
"""Serializes the UpdateResponse into a dictionary suitable for use as a JSON request body."""
|
|
1447
|
-
body = {}
|
|
1448
|
-
return body
|
|
1449
|
-
|
|
1450
|
-
def as_shallow_dict(self) -> dict:
|
|
1451
|
-
"""Serializes the UpdateResponse into a shallow dictionary of its immediate attributes."""
|
|
1452
|
-
body = {}
|
|
1453
|
-
return body
|
|
1454
|
-
|
|
1455
|
-
@classmethod
|
|
1456
|
-
def from_dict(cls, d: Dict[str, any]) -> UpdateResponse:
|
|
1457
|
-
"""Deserializes the UpdateResponse from a dictionary."""
|
|
1458
|
-
return cls()
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
1453
|
@dataclass
|
|
1462
1454
|
class UpdateShare:
|
|
1463
1455
|
comment: Optional[str] = None
|
|
@@ -1583,7 +1575,8 @@ class ProvidersAPI:
|
|
|
1583
1575
|
:param comment: str (optional)
|
|
1584
1576
|
Description about the provider.
|
|
1585
1577
|
:param recipient_profile_str: str (optional)
|
|
1586
|
-
This field is required when the __authentication_type__ is **TOKEN**
|
|
1578
|
+
This field is required when the __authentication_type__ is **TOKEN**, **OAUTH_CLIENT_CREDENTIALS**
|
|
1579
|
+
or not provided.
|
|
1587
1580
|
|
|
1588
1581
|
:returns: :class:`ProviderInfo`
|
|
1589
1582
|
"""
|
|
@@ -1735,7 +1728,8 @@ class ProvidersAPI:
|
|
|
1735
1728
|
:param owner: str (optional)
|
|
1736
1729
|
Username of Provider owner.
|
|
1737
1730
|
:param recipient_profile_str: str (optional)
|
|
1738
|
-
This field is required when the __authentication_type__ is **TOKEN**
|
|
1731
|
+
This field is required when the __authentication_type__ is **TOKEN**, **OAUTH_CLIENT_CREDENTIALS**
|
|
1732
|
+
or not provided.
|
|
1739
1733
|
|
|
1740
1734
|
:returns: :class:`ProviderInfo`
|
|
1741
1735
|
"""
|
|
@@ -1830,7 +1824,7 @@ class RecipientsAPI:
|
|
|
1830
1824
|
"""Create a share recipient.
|
|
1831
1825
|
|
|
1832
1826
|
Creates a new recipient with the delta sharing authentication type in the metastore. The caller must
|
|
1833
|
-
be a metastore admin or
|
|
1827
|
+
be a metastore admin or have the **CREATE_RECIPIENT** privilege on the metastore.
|
|
1834
1828
|
|
|
1835
1829
|
:param name: str
|
|
1836
1830
|
Name of Recipient.
|
|
@@ -1839,8 +1833,8 @@ class RecipientsAPI:
|
|
|
1839
1833
|
:param comment: str (optional)
|
|
1840
1834
|
Description about the recipient.
|
|
1841
1835
|
:param data_recipient_global_metastore_id: str (optional)
|
|
1842
|
-
The global Unity Catalog metastore id provided by the data recipient. This field is
|
|
1843
|
-
the __authentication_type__ is **DATABRICKS**. The identifier is of format
|
|
1836
|
+
The global Unity Catalog metastore id provided by the data recipient. This field is only present
|
|
1837
|
+
when the __authentication_type__ is **DATABRICKS**. The identifier is of format
|
|
1844
1838
|
__cloud__:__region__:__metastore-uuid__.
|
|
1845
1839
|
:param expiration_time: int (optional)
|
|
1846
1840
|
Expiration timestamp of the token, in epoch milliseconds.
|
|
@@ -1849,9 +1843,11 @@ class RecipientsAPI:
|
|
|
1849
1843
|
:param owner: str (optional)
|
|
1850
1844
|
Username of the recipient owner.
|
|
1851
1845
|
:param properties_kvpairs: :class:`SecurablePropertiesKvPairs` (optional)
|
|
1852
|
-
Recipient properties as map of string key-value pairs.
|
|
1846
|
+
Recipient properties as map of string key-value pairs. When provided in update request, the
|
|
1847
|
+
specified properties will override the existing properties. To add and remove properties, one would
|
|
1848
|
+
need to perform a read-modify-write.
|
|
1853
1849
|
:param sharing_code: str (optional)
|
|
1854
|
-
The one-time sharing code provided by the data recipient. This field is
|
|
1850
|
+
The one-time sharing code provided by the data recipient. This field is only present when the
|
|
1855
1851
|
__authentication_type__ is **DATABRICKS**.
|
|
1856
1852
|
|
|
1857
1853
|
:returns: :class:`RecipientInfo`
|
|
@@ -1957,7 +1953,7 @@ class RecipientsAPI:
|
|
|
1957
1953
|
The caller must be the owner of the recipient.
|
|
1958
1954
|
|
|
1959
1955
|
:param name: str
|
|
1960
|
-
The name of the
|
|
1956
|
+
The name of the Recipient.
|
|
1961
1957
|
:param existing_token_expire_in_seconds: int
|
|
1962
1958
|
The expiration time of the bearer token in ISO 8601 format. This will set the expiration_time of
|
|
1963
1959
|
existing token only to a smaller timestamp, it cannot extend the expiration_time. Use 0 to expire
|
|
@@ -2021,7 +2017,7 @@ class RecipientsAPI:
|
|
|
2021
2017
|
ip_access_list: Optional[IpAccessList] = None,
|
|
2022
2018
|
new_name: Optional[str] = None,
|
|
2023
2019
|
owner: Optional[str] = None,
|
|
2024
|
-
properties_kvpairs: Optional[SecurablePropertiesKvPairs] = None):
|
|
2020
|
+
properties_kvpairs: Optional[SecurablePropertiesKvPairs] = None) -> RecipientInfo:
|
|
2025
2021
|
"""Update a share recipient.
|
|
2026
2022
|
|
|
2027
2023
|
Updates an existing recipient in the metastore. The caller must be a metastore admin or the owner of
|
|
@@ -2037,7 +2033,7 @@ class RecipientsAPI:
|
|
|
2037
2033
|
:param ip_access_list: :class:`IpAccessList` (optional)
|
|
2038
2034
|
IP Access List
|
|
2039
2035
|
:param new_name: str (optional)
|
|
2040
|
-
New name for the recipient.
|
|
2036
|
+
New name for the recipient. .
|
|
2041
2037
|
:param owner: str (optional)
|
|
2042
2038
|
Username of the recipient owner.
|
|
2043
2039
|
:param properties_kvpairs: :class:`SecurablePropertiesKvPairs` (optional)
|
|
@@ -2045,7 +2041,7 @@ class RecipientsAPI:
|
|
|
2045
2041
|
specified properties will override the existing properties. To add and remove properties, one would
|
|
2046
2042
|
need to perform a read-modify-write.
|
|
2047
2043
|
|
|
2048
|
-
|
|
2044
|
+
:returns: :class:`RecipientInfo`
|
|
2049
2045
|
"""
|
|
2050
2046
|
body = {}
|
|
2051
2047
|
if comment is not None: body['comment'] = comment
|
|
@@ -2056,7 +2052,8 @@ class RecipientsAPI:
|
|
|
2056
2052
|
if properties_kvpairs is not None: body['properties_kvpairs'] = properties_kvpairs.as_dict()
|
|
2057
2053
|
headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
|
|
2058
2054
|
|
|
2059
|
-
self._api.do('PATCH', f'/api/2.1/unity-catalog/recipients/{name}', body=body, headers=headers)
|
|
2055
|
+
res = self._api.do('PATCH', f'/api/2.1/unity-catalog/recipients/{name}', body=body, headers=headers)
|
|
2056
|
+
return RecipientInfo.from_dict(res)
|
|
2060
2057
|
|
|
2061
2058
|
|
|
2062
2059
|
class SharesAPI:
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.41.0'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: databricks-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.41.0
|
|
4
4
|
Summary: Databricks SDK for Python (Beta)
|
|
5
5
|
Home-page: https://databricks-sdk-py.readthedocs.io
|
|
6
6
|
Author: Serge Smertin
|
|
@@ -22,34 +22,34 @@ Requires-Python: >=3.7
|
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
25
|
+
Requires-Dist: google-auth ~=2.0
|
|
26
|
+
Requires-Dist: requests <3,>=2.28.1
|
|
27
27
|
Provides-Extra: dev
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
28
|
+
Requires-Dist: autoflake ; extra == 'dev'
|
|
29
|
+
Requires-Dist: databricks-connect ; extra == 'dev'
|
|
30
|
+
Requires-Dist: httpx ; extra == 'dev'
|
|
31
|
+
Requires-Dist: ipython ; extra == 'dev'
|
|
32
|
+
Requires-Dist: ipywidgets ; extra == 'dev'
|
|
33
|
+
Requires-Dist: isort ; extra == 'dev'
|
|
34
|
+
Requires-Dist: openai ; extra == 'dev'
|
|
35
|
+
Requires-Dist: pycodestyle ; extra == 'dev'
|
|
36
|
+
Requires-Dist: pyfakefs ; extra == 'dev'
|
|
37
|
+
Requires-Dist: pytest ; extra == 'dev'
|
|
38
|
+
Requires-Dist: pytest-cov ; extra == 'dev'
|
|
39
|
+
Requires-Dist: pytest-mock ; extra == 'dev'
|
|
40
|
+
Requires-Dist: pytest-rerunfailures ; extra == 'dev'
|
|
41
|
+
Requires-Dist: pytest-xdist ; extra == 'dev'
|
|
42
|
+
Requires-Dist: requests-mock ; extra == 'dev'
|
|
43
|
+
Requires-Dist: wheel ; extra == 'dev'
|
|
44
|
+
Requires-Dist: yapf ; extra == 'dev'
|
|
45
|
+
Requires-Dist: langchain-openai ; (python_version > "3.7") and extra == 'dev'
|
|
46
46
|
Provides-Extra: notebook
|
|
47
|
-
Requires-Dist: ipython<9,>=8; extra ==
|
|
48
|
-
Requires-Dist: ipywidgets<9,>=8; extra ==
|
|
47
|
+
Requires-Dist: ipython <9,>=8 ; extra == 'notebook'
|
|
48
|
+
Requires-Dist: ipywidgets <9,>=8 ; extra == 'notebook'
|
|
49
49
|
Provides-Extra: openai
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
Requires-Dist:
|
|
50
|
+
Requires-Dist: httpx ; extra == 'openai'
|
|
51
|
+
Requires-Dist: openai ; extra == 'openai'
|
|
52
|
+
Requires-Dist: langchain-openai ; (python_version > "3.7") and extra == 'openai'
|
|
53
53
|
|
|
54
54
|
# Databricks SDK for Python (Beta)
|
|
55
55
|
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=
|
|
3
|
-
databricks/sdk/_base_client.py,sha256=
|
|
2
|
+
databricks/sdk/__init__.py,sha256=BXTeXMqb4oUHmPeKvWHqfZhcDc-oW5Zg8jP93E2d9xs,50988
|
|
3
|
+
databricks/sdk/_base_client.py,sha256=pcoK9MB8ORChHFtNr3e69w-xpQjg2crF0rOyE_7lbEA,16118
|
|
4
4
|
databricks/sdk/_property.py,sha256=sGjsipeFrjMBSVPjtIb0HNCRcMIhFpVx6wq4BkC3LWs,1636
|
|
5
5
|
databricks/sdk/azure.py,sha256=8P7nEdun0hbQCap9Ojo7yZse_JHxnhYsE6ApojnPz7Q,1009
|
|
6
6
|
databricks/sdk/casing.py,sha256=NKYPrfPbQjM7lU4hhNQK3z1jb_VEA29BfH4FEdby2tg,1137
|
|
7
7
|
databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
|
|
8
|
-
databricks/sdk/config.py,sha256=
|
|
8
|
+
databricks/sdk/config.py,sha256=fUCRZX7tpY4LNvh3ilPtbaoC6wlFauWj9jyONsMDLWM,20314
|
|
9
9
|
databricks/sdk/core.py,sha256=s8W2UlRg8y9vCencdiFocYs49hLS3bltswLi00_cn38,4086
|
|
10
|
-
databricks/sdk/credentials_provider.py,sha256=
|
|
11
|
-
databricks/sdk/data_plane.py,sha256=
|
|
10
|
+
databricks/sdk/credentials_provider.py,sha256=QFo6fIsKUNc7x0QfPuNzoKtsymbsoIQsNR1bLXaN_6o,35134
|
|
11
|
+
databricks/sdk/data_plane.py,sha256=Kr81rnBlgqnlwNlDbV4JWzzTA5NSVlf0J-DQOylp0w4,2582
|
|
12
12
|
databricks/sdk/dbutils.py,sha256=HFCuB-el6SFKhF8qRfJxYANtyLTm-VG9GtQuQgZXFkM,15741
|
|
13
13
|
databricks/sdk/environments.py,sha256=5KoVuVfF-ZX17rua1sH3EJCCtniVrREXBXsMNDEV-UU,4293
|
|
14
14
|
databricks/sdk/oauth.py,sha256=ZlIzEGlKTUgGGgLfv5NQJr3Y_mWpKgTr8-hUEwwqfEE,23861
|
|
15
15
|
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
16
16
|
databricks/sdk/retries.py,sha256=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
|
|
17
17
|
databricks/sdk/useragent.py,sha256=I2-VnJSE6cg9QV4GXkoQSkHsEB3bDvRGgkawbBNl4G0,5540
|
|
18
|
-
databricks/sdk/version.py,sha256=
|
|
18
|
+
databricks/sdk/version.py,sha256=3DHWWxurD2Uv_EZitxPja6QCXb8YVtHDXJyJ3wDawiM,23
|
|
19
19
|
databricks/sdk/_widgets/__init__.py,sha256=Qm3JB8LmdPgEn_-VgxKkodTO4gn6OdaDPwsYcDmeIRI,2667
|
|
20
20
|
databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
|
|
21
21
|
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
|
|
@@ -33,37 +33,37 @@ databricks/sdk/logger/__init__.py,sha256=0_sSQfDkaFGqMHZUVw-g_Ax-RFmOv0Z6NjxCVAe
|
|
|
33
33
|
databricks/sdk/logger/round_trip_logger.py,sha256=SMtHDfdqy5Noge2iZO-LpuEm92rz3A5ANfzRzPe6qEU,4794
|
|
34
34
|
databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
databricks/sdk/mixins/compute.py,sha256=khb00BzBckc4RLUF4-GnNMCSO5lXKt_XYMM3IhiUxlA,11237
|
|
36
|
-
databricks/sdk/mixins/files.py,sha256=
|
|
36
|
+
databricks/sdk/mixins/files.py,sha256=G5Tv0lbQGgOECwvFxmACX5X24ZMP6ZQD7ZudtkORbDw,28283
|
|
37
37
|
databricks/sdk/mixins/jobs.py,sha256=PqiYWi0O-drOjAD6fsptHuAj6IofCdR5e_F3I2BzHqQ,2622
|
|
38
|
-
databricks/sdk/mixins/open_ai_client.py,sha256
|
|
38
|
+
databricks/sdk/mixins/open_ai_client.py,sha256=-b4Nz0WZp7xrmk99OlLqlGHvy8PZcUt8cb6X80CXMvs,4119
|
|
39
39
|
databricks/sdk/mixins/workspace.py,sha256=dWMNvuEi8jJ5wMhrDt1LiqxNdWSsmEuDTzrcZR-eJzY,4896
|
|
40
40
|
databricks/sdk/runtime/__init__.py,sha256=9NnZkBzeZXZRQxcE1qKzAszQEzcpIgpL7lQzW3_kxEU,7266
|
|
41
41
|
databricks/sdk/runtime/dbutils_stub.py,sha256=UFbRZF-bBcwxjbv_pxma00bjNtktLLaYpo8oHRc4-9g,11421
|
|
42
42
|
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
databricks/sdk/service/_internal.py,sha256=nWbJfW5eJCQgAZ3TmA26xoWb6SNZ5N76ZA8bO1N4AsU,1961
|
|
44
|
-
databricks/sdk/service/apps.py,sha256=
|
|
44
|
+
databricks/sdk/service/apps.py,sha256=xxBPanIqAvN0iPZmnEyxY98n4RQr8pQWt2IXcnhk8L8,52535
|
|
45
45
|
databricks/sdk/service/billing.py,sha256=0_L2aaJqOWehOJjiLwyDNmGwMOCGv7vKpifiSROJF60,82792
|
|
46
|
-
databricks/sdk/service/catalog.py,sha256=
|
|
47
|
-
databricks/sdk/service/cleanrooms.py,sha256=
|
|
48
|
-
databricks/sdk/service/compute.py,sha256=
|
|
49
|
-
databricks/sdk/service/dashboards.py,sha256=
|
|
50
|
-
databricks/sdk/service/files.py,sha256=
|
|
51
|
-
databricks/sdk/service/iam.py,sha256=
|
|
52
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
46
|
+
databricks/sdk/service/catalog.py,sha256=itobYNgFOuQ3t52FDzASWQm5WDEWTIr-Zg5vsOcQu6o,591218
|
|
47
|
+
databricks/sdk/service/cleanrooms.py,sha256=BnI-o8nW3c7ktY7KZ2XNM1KBndjWu7Vkw_e4veHZD8M,57880
|
|
48
|
+
databricks/sdk/service/compute.py,sha256=Cn2uFBmEBiT264UZLYi1A4VplfP-rY05FW1dlRYN-s0,534189
|
|
49
|
+
databricks/sdk/service/dashboards.py,sha256=i0jaTgdSSLqpIfNtmGU3mxpr6NYO8HRtXU5zExdseJQ,82713
|
|
50
|
+
databricks/sdk/service/files.py,sha256=KewI3yw9HsqHKTlJlAkeO0CBszvaMrdBeyxTKORK9rk,45392
|
|
51
|
+
databricks/sdk/service/iam.py,sha256=ez1G4m8AihZtip2On0o5aADTba25SWBcpYGf1SssJu0,172829
|
|
52
|
+
databricks/sdk/service/jobs.py,sha256=DdtW2mOapwHF4zr0chYzv0Ejz7dAjAdzM2wL76J2cWU,420610
|
|
53
53
|
databricks/sdk/service/marketplace.py,sha256=KDqjLT1WRvdq6BOjYI4BhBFhKkp9iZjK7BuF-fuNT6Y,171731
|
|
54
54
|
databricks/sdk/service/ml.py,sha256=wvheyoVzDUczufsWOjrUvBkK3KKwV1ZSJ6kXWQN4y_M,286771
|
|
55
|
-
databricks/sdk/service/oauth2.py,sha256=
|
|
56
|
-
databricks/sdk/service/pipelines.py,sha256=
|
|
55
|
+
databricks/sdk/service/oauth2.py,sha256=KLc5vqn1VIN3WnoDyirkZ_4G8R0lN2yaXB9YgrnZdMk,73224
|
|
56
|
+
databricks/sdk/service/pipelines.py,sha256=ZAtYNEaVqkMpa4uWAH1pbXH0Rx2DDxNVdKqsADcQeS8,161720
|
|
57
57
|
databricks/sdk/service/provisioning.py,sha256=QAFKTjRP6rh9gPIP17ownqhAFY2XE0HvqNfTsf3D27w,168727
|
|
58
|
-
databricks/sdk/service/serving.py,sha256=
|
|
58
|
+
databricks/sdk/service/serving.py,sha256=0s2RzSSmEaNv1ofgCD7VyQAtljwO2dIq4U8wDLdoR6c,197205
|
|
59
59
|
databricks/sdk/service/settings.py,sha256=sT9sRLVYEZXwLgjw_82EfArhABzX8BYZKskUFzOISeM,298239
|
|
60
|
-
databricks/sdk/service/sharing.py,sha256=
|
|
60
|
+
databricks/sdk/service/sharing.py,sha256=ymeJWblpB00vZrvflEVHa0joxWM9tafu6y09rR0I57k,104961
|
|
61
61
|
databricks/sdk/service/sql.py,sha256=bKIPoiygWc33prTjR-UOltwi1MKVv4D41y4ZFCm9AXw,392721
|
|
62
62
|
databricks/sdk/service/vectorsearch.py,sha256=5p5pW94Bv_Q2tw4j8kFb35nAoFa9GUG5FIHTdfAHWps,77997
|
|
63
63
|
databricks/sdk/service/workspace.py,sha256=BCoi43R1L2eJI9DYq9vwCVdjbMsdLuzDebN6AZvT4kg,128751
|
|
64
|
-
databricks_sdk-0.
|
|
65
|
-
databricks_sdk-0.
|
|
66
|
-
databricks_sdk-0.
|
|
67
|
-
databricks_sdk-0.
|
|
68
|
-
databricks_sdk-0.
|
|
69
|
-
databricks_sdk-0.
|
|
64
|
+
databricks_sdk-0.41.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
65
|
+
databricks_sdk-0.41.0.dist-info/METADATA,sha256=sAZU79ZbOVa2WLmvR1mdLq8egLrjZPdndKvAQD7cszQ,38301
|
|
66
|
+
databricks_sdk-0.41.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
|
|
67
|
+
databricks_sdk-0.41.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
68
|
+
databricks_sdk-0.41.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
69
|
+
databricks_sdk-0.41.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|