databricks-sdk 0.41.0__py3-none-any.whl → 0.43.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 +33 -5
- databricks/sdk/_base_client.py +20 -21
- databricks/sdk/credentials_provider.py +12 -6
- databricks/sdk/mixins/open_ai_client.py +25 -10
- databricks/sdk/retries.py +5 -1
- databricks/sdk/service/billing.py +348 -0
- databricks/sdk/service/catalog.py +33 -63
- databricks/sdk/service/cleanrooms.py +74 -3
- databricks/sdk/service/compute.py +36 -0
- databricks/sdk/service/dashboards.py +415 -0
- databricks/sdk/service/jobs.py +92 -1
- databricks/sdk/service/oauth2.py +41 -5
- databricks/sdk/service/serving.py +34 -40
- databricks/sdk/service/settings.py +454 -78
- databricks/sdk/service/sql.py +145 -18
- databricks/sdk/useragent.py +54 -0
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.41.0.dist-info → databricks_sdk-0.43.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.41.0.dist-info → databricks_sdk-0.43.0.dist-info}/RECORD +23 -23
- {databricks_sdk-0.41.0.dist-info → databricks_sdk-0.43.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.41.0.dist-info → databricks_sdk-0.43.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.41.0.dist-info → databricks_sdk-0.43.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.41.0.dist-info → databricks_sdk-0.43.0.dist-info}/top_level.txt +0 -0
databricks/sdk/service/sql.py
CHANGED
|
@@ -631,6 +631,79 @@ class ChannelName(Enum):
|
|
|
631
631
|
CHANNEL_NAME_PREVIOUS = 'CHANNEL_NAME_PREVIOUS'
|
|
632
632
|
|
|
633
633
|
|
|
634
|
+
@dataclass
|
|
635
|
+
class ClientConfig:
|
|
636
|
+
allow_custom_js_visualizations: Optional[bool] = None
|
|
637
|
+
|
|
638
|
+
allow_downloads: Optional[bool] = None
|
|
639
|
+
|
|
640
|
+
allow_external_shares: Optional[bool] = None
|
|
641
|
+
|
|
642
|
+
allow_subscriptions: Optional[bool] = None
|
|
643
|
+
|
|
644
|
+
date_format: Optional[str] = None
|
|
645
|
+
|
|
646
|
+
date_time_format: Optional[str] = None
|
|
647
|
+
|
|
648
|
+
disable_publish: Optional[bool] = None
|
|
649
|
+
|
|
650
|
+
enable_legacy_autodetect_types: Optional[bool] = None
|
|
651
|
+
|
|
652
|
+
feature_show_permissions_control: Optional[bool] = None
|
|
653
|
+
|
|
654
|
+
hide_plotly_mode_bar: Optional[bool] = None
|
|
655
|
+
|
|
656
|
+
def as_dict(self) -> dict:
|
|
657
|
+
"""Serializes the ClientConfig into a dictionary suitable for use as a JSON request body."""
|
|
658
|
+
body = {}
|
|
659
|
+
if self.allow_custom_js_visualizations is not None:
|
|
660
|
+
body['allow_custom_js_visualizations'] = self.allow_custom_js_visualizations
|
|
661
|
+
if self.allow_downloads is not None: body['allow_downloads'] = self.allow_downloads
|
|
662
|
+
if self.allow_external_shares is not None: body['allow_external_shares'] = self.allow_external_shares
|
|
663
|
+
if self.allow_subscriptions is not None: body['allow_subscriptions'] = self.allow_subscriptions
|
|
664
|
+
if self.date_format is not None: body['date_format'] = self.date_format
|
|
665
|
+
if self.date_time_format is not None: body['date_time_format'] = self.date_time_format
|
|
666
|
+
if self.disable_publish is not None: body['disable_publish'] = self.disable_publish
|
|
667
|
+
if self.enable_legacy_autodetect_types is not None:
|
|
668
|
+
body['enable_legacy_autodetect_types'] = self.enable_legacy_autodetect_types
|
|
669
|
+
if self.feature_show_permissions_control is not None:
|
|
670
|
+
body['feature_show_permissions_control'] = self.feature_show_permissions_control
|
|
671
|
+
if self.hide_plotly_mode_bar is not None: body['hide_plotly_mode_bar'] = self.hide_plotly_mode_bar
|
|
672
|
+
return body
|
|
673
|
+
|
|
674
|
+
def as_shallow_dict(self) -> dict:
|
|
675
|
+
"""Serializes the ClientConfig into a shallow dictionary of its immediate attributes."""
|
|
676
|
+
body = {}
|
|
677
|
+
if self.allow_custom_js_visualizations is not None:
|
|
678
|
+
body['allow_custom_js_visualizations'] = self.allow_custom_js_visualizations
|
|
679
|
+
if self.allow_downloads is not None: body['allow_downloads'] = self.allow_downloads
|
|
680
|
+
if self.allow_external_shares is not None: body['allow_external_shares'] = self.allow_external_shares
|
|
681
|
+
if self.allow_subscriptions is not None: body['allow_subscriptions'] = self.allow_subscriptions
|
|
682
|
+
if self.date_format is not None: body['date_format'] = self.date_format
|
|
683
|
+
if self.date_time_format is not None: body['date_time_format'] = self.date_time_format
|
|
684
|
+
if self.disable_publish is not None: body['disable_publish'] = self.disable_publish
|
|
685
|
+
if self.enable_legacy_autodetect_types is not None:
|
|
686
|
+
body['enable_legacy_autodetect_types'] = self.enable_legacy_autodetect_types
|
|
687
|
+
if self.feature_show_permissions_control is not None:
|
|
688
|
+
body['feature_show_permissions_control'] = self.feature_show_permissions_control
|
|
689
|
+
if self.hide_plotly_mode_bar is not None: body['hide_plotly_mode_bar'] = self.hide_plotly_mode_bar
|
|
690
|
+
return body
|
|
691
|
+
|
|
692
|
+
@classmethod
|
|
693
|
+
def from_dict(cls, d: Dict[str, any]) -> ClientConfig:
|
|
694
|
+
"""Deserializes the ClientConfig from a dictionary."""
|
|
695
|
+
return cls(allow_custom_js_visualizations=d.get('allow_custom_js_visualizations', None),
|
|
696
|
+
allow_downloads=d.get('allow_downloads', None),
|
|
697
|
+
allow_external_shares=d.get('allow_external_shares', None),
|
|
698
|
+
allow_subscriptions=d.get('allow_subscriptions', None),
|
|
699
|
+
date_format=d.get('date_format', None),
|
|
700
|
+
date_time_format=d.get('date_time_format', None),
|
|
701
|
+
disable_publish=d.get('disable_publish', None),
|
|
702
|
+
enable_legacy_autodetect_types=d.get('enable_legacy_autodetect_types', None),
|
|
703
|
+
feature_show_permissions_control=d.get('feature_show_permissions_control', None),
|
|
704
|
+
hide_plotly_mode_bar=d.get('hide_plotly_mode_bar', None))
|
|
705
|
+
|
|
706
|
+
|
|
634
707
|
@dataclass
|
|
635
708
|
class ColumnInfo:
|
|
636
709
|
name: Optional[str] = None
|
|
@@ -5540,9 +5613,15 @@ class TransferOwnershipObjectId:
|
|
|
5540
5613
|
@dataclass
|
|
5541
5614
|
class UpdateAlertRequest:
|
|
5542
5615
|
update_mask: str
|
|
5543
|
-
"""
|
|
5544
|
-
|
|
5545
|
-
|
|
5616
|
+
"""The field mask must be a single string, with multiple fields separated by commas (no spaces).
|
|
5617
|
+
The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
|
|
5618
|
+
(e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
|
|
5619
|
+
as only the entire collection field can be specified. Field names must exactly match the
|
|
5620
|
+
resource field names.
|
|
5621
|
+
|
|
5622
|
+
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
5623
|
+
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
|
|
5624
|
+
API changes in the future."""
|
|
5546
5625
|
|
|
5547
5626
|
alert: Optional[UpdateAlertRequestAlert] = None
|
|
5548
5627
|
|
|
@@ -5646,9 +5725,15 @@ class UpdateAlertRequestAlert:
|
|
|
5646
5725
|
@dataclass
|
|
5647
5726
|
class UpdateQueryRequest:
|
|
5648
5727
|
update_mask: str
|
|
5649
|
-
"""
|
|
5650
|
-
|
|
5651
|
-
|
|
5728
|
+
"""The field mask must be a single string, with multiple fields separated by commas (no spaces).
|
|
5729
|
+
The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
|
|
5730
|
+
(e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
|
|
5731
|
+
as only the entire collection field can be specified. Field names must exactly match the
|
|
5732
|
+
resource field names.
|
|
5733
|
+
|
|
5734
|
+
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
5735
|
+
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
|
|
5736
|
+
API changes in the future."""
|
|
5652
5737
|
|
|
5653
5738
|
id: Optional[str] = None
|
|
5654
5739
|
|
|
@@ -5782,9 +5867,15 @@ class UpdateResponse:
|
|
|
5782
5867
|
@dataclass
|
|
5783
5868
|
class UpdateVisualizationRequest:
|
|
5784
5869
|
update_mask: str
|
|
5785
|
-
"""
|
|
5786
|
-
|
|
5787
|
-
|
|
5870
|
+
"""The field mask must be a single string, with multiple fields separated by commas (no spaces).
|
|
5871
|
+
The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
|
|
5872
|
+
(e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
|
|
5873
|
+
as only the entire collection field can be specified. Field names must exactly match the
|
|
5874
|
+
resource field names.
|
|
5875
|
+
|
|
5876
|
+
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
5877
|
+
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
|
|
5878
|
+
API changes in the future."""
|
|
5788
5879
|
|
|
5789
5880
|
id: Optional[str] = None
|
|
5790
5881
|
|
|
@@ -6464,9 +6555,15 @@ class AlertsAPI:
|
|
|
6464
6555
|
|
|
6465
6556
|
:param id: str
|
|
6466
6557
|
:param update_mask: str
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6558
|
+
The field mask must be a single string, with multiple fields separated by commas (no spaces). The
|
|
6559
|
+
field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
|
|
6560
|
+
`author.given_name`). Specification of elements in sequence or map fields is not allowed, as only
|
|
6561
|
+
the entire collection field can be specified. Field names must exactly match the resource field
|
|
6562
|
+
names.
|
|
6563
|
+
|
|
6564
|
+
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
6565
|
+
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
|
|
6566
|
+
changes in the future.
|
|
6470
6567
|
:param alert: :class:`UpdateAlertRequestAlert` (optional)
|
|
6471
6568
|
|
|
6472
6569
|
:returns: :class:`Alert`
|
|
@@ -7173,9 +7270,15 @@ class QueriesAPI:
|
|
|
7173
7270
|
|
|
7174
7271
|
:param id: str
|
|
7175
7272
|
:param update_mask: str
|
|
7176
|
-
|
|
7177
|
-
|
|
7178
|
-
|
|
7273
|
+
The field mask must be a single string, with multiple fields separated by commas (no spaces). The
|
|
7274
|
+
field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
|
|
7275
|
+
`author.given_name`). Specification of elements in sequence or map fields is not allowed, as only
|
|
7276
|
+
the entire collection field can be specified. Field names must exactly match the resource field
|
|
7277
|
+
names.
|
|
7278
|
+
|
|
7279
|
+
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
7280
|
+
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
|
|
7281
|
+
changes in the future.
|
|
7179
7282
|
:param query: :class:`UpdateQueryRequestQuery` (optional)
|
|
7180
7283
|
|
|
7181
7284
|
:returns: :class:`Query`
|
|
@@ -7547,9 +7650,15 @@ class QueryVisualizationsAPI:
|
|
|
7547
7650
|
|
|
7548
7651
|
:param id: str
|
|
7549
7652
|
:param update_mask: str
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7653
|
+
The field mask must be a single string, with multiple fields separated by commas (no spaces). The
|
|
7654
|
+
field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
|
|
7655
|
+
`author.given_name`). Specification of elements in sequence or map fields is not allowed, as only
|
|
7656
|
+
the entire collection field can be specified. Field names must exactly match the resource field
|
|
7657
|
+
names.
|
|
7658
|
+
|
|
7659
|
+
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
7660
|
+
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
|
|
7661
|
+
changes in the future.
|
|
7553
7662
|
:param visualization: :class:`UpdateVisualizationRequestVisualization` (optional)
|
|
7554
7663
|
|
|
7555
7664
|
:returns: :class:`Visualization`
|
|
@@ -7686,6 +7795,24 @@ class QueryVisualizationsLegacyAPI:
|
|
|
7686
7795
|
return LegacyVisualization.from_dict(res)
|
|
7687
7796
|
|
|
7688
7797
|
|
|
7798
|
+
class RedashConfigAPI:
|
|
7799
|
+
"""Redash V2 service for workspace configurations (internal)"""
|
|
7800
|
+
|
|
7801
|
+
def __init__(self, api_client):
|
|
7802
|
+
self._api = api_client
|
|
7803
|
+
|
|
7804
|
+
def get_config(self) -> ClientConfig:
|
|
7805
|
+
"""Read workspace configuration for Redash-v2.
|
|
7806
|
+
|
|
7807
|
+
:returns: :class:`ClientConfig`
|
|
7808
|
+
"""
|
|
7809
|
+
|
|
7810
|
+
headers = {'Accept': 'application/json', }
|
|
7811
|
+
|
|
7812
|
+
res = self._api.do('GET', '/api/2.0/redash-v2/config', headers=headers)
|
|
7813
|
+
return ClientConfig.from_dict(res)
|
|
7814
|
+
|
|
7815
|
+
|
|
7689
7816
|
class StatementExecutionAPI:
|
|
7690
7817
|
"""The Databricks SQL Statement Execution API can be used to execute SQL statements on a SQL warehouse and
|
|
7691
7818
|
fetch the result.
|
databricks/sdk/useragent.py
CHANGED
|
@@ -148,4 +148,58 @@ def to_string(alternate_product_info: Optional[Tuple[str, str]] = None,
|
|
|
148
148
|
base.extend(_extra)
|
|
149
149
|
base.extend(_get_upstream_user_agent_info())
|
|
150
150
|
base.extend(_get_runtime_info())
|
|
151
|
+
if cicd_provider() != "":
|
|
152
|
+
base.append((CICD_KEY, cicd_provider()))
|
|
151
153
|
return " ".join(f"{k}/{v}" for k, v in base)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
# List of CI/CD providers and pairs of envvar/value that are used to detect them.
|
|
157
|
+
_PROVIDERS = {
|
|
158
|
+
"github": [("GITHUB_ACTIONS", "true")],
|
|
159
|
+
"gitlab": [("GITLAB_CI", "true")],
|
|
160
|
+
"jenkins": [("JENKINS_URL", "")],
|
|
161
|
+
"azure-devops": [("TF_BUILD", "True")],
|
|
162
|
+
"circle": [("CIRCLECI", "true")],
|
|
163
|
+
"travis": [("TRAVIS", "true")],
|
|
164
|
+
"bitbucket": [("BITBUCKET_BUILD_NUMBER", "")],
|
|
165
|
+
"google-cloud-build": [("PROJECT_ID", ""), ("BUILD_ID", ""), ("PROJECT_NUMBER", ""), ("LOCATION", "")],
|
|
166
|
+
"aws-code-build": [("CODEBUILD_BUILD_ARN", "")],
|
|
167
|
+
"tf-cloud": [("TFC_RUN_ID", "")],
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
# Private variable to store the CI/CD provider. This value is computed at
|
|
171
|
+
# the first invocation of cicd_providers() and is cached for subsequent calls.
|
|
172
|
+
_cicd_provider = None
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
def cicd_provider() -> str:
|
|
176
|
+
"""Return the CI/CD provider if detected, or an empty string otherwise."""
|
|
177
|
+
|
|
178
|
+
# This function is safe because (i) assignation are atomic, and (ii)
|
|
179
|
+
# computating the CI/CD provider is idempotent.
|
|
180
|
+
global _cicd_provider
|
|
181
|
+
if _cicd_provider is not None:
|
|
182
|
+
return _cicd_provider
|
|
183
|
+
|
|
184
|
+
providers = []
|
|
185
|
+
for p in _PROVIDERS:
|
|
186
|
+
found = True
|
|
187
|
+
for envvar, value in _PROVIDERS[p]:
|
|
188
|
+
v = os.getenv(envvar)
|
|
189
|
+
if v is None or (value != "" and v != value):
|
|
190
|
+
found = False
|
|
191
|
+
break
|
|
192
|
+
|
|
193
|
+
if found:
|
|
194
|
+
providers.append(p)
|
|
195
|
+
|
|
196
|
+
if len(providers) == 0:
|
|
197
|
+
_cicd_provider = ""
|
|
198
|
+
else:
|
|
199
|
+
# TODO: reconsider what to do if multiple providers are detected.
|
|
200
|
+
# The current mechanism as the benefit of being deterministic and
|
|
201
|
+
# robust to ordering changes in _PROVIDERS.
|
|
202
|
+
providers.sort()
|
|
203
|
+
_cicd_provider = providers[0]
|
|
204
|
+
|
|
205
|
+
return _cicd_provider
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.43.0'
|
|
@@ -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=5AKsc4AyROmjCeNDrVmUCDV8z6c0M67u4bke_g4VcL4,52230
|
|
3
|
+
databricks/sdk/_base_client.py,sha256=FwKMk4pN0AXt8S8RML2OHFYV4yxyhgd9NMjxJKiSIUs,16071
|
|
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
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=
|
|
10
|
+
databricks/sdk/credentials_provider.py,sha256=IZyjoxdKGwDqhRJ6jTFT-mS1lf8l1LDpxNBbPSdDHlY,35311
|
|
11
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
|
-
databricks/sdk/retries.py,sha256=
|
|
17
|
-
databricks/sdk/useragent.py,sha256=
|
|
18
|
-
databricks/sdk/version.py,sha256=
|
|
16
|
+
databricks/sdk/retries.py,sha256=kdCKGIJjSkGLZYmQ0oI_hiGj7FP7MIqK9-nIr7WbykU,2574
|
|
17
|
+
databricks/sdk/useragent.py,sha256=o9cojoaVwI7C6tbIZy6jcQ8QiYuUmdL5_zATu6IZSaw,7373
|
|
18
|
+
databricks/sdk/version.py,sha256=uLdCe5IU74Eq2OM-KK7s23arKNEHXWY8B1o0eK5WeNc,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
|
|
@@ -35,35 +35,35 @@ databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
35
35
|
databricks/sdk/mixins/compute.py,sha256=khb00BzBckc4RLUF4-GnNMCSO5lXKt_XYMM3IhiUxlA,11237
|
|
36
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=gvh8xKm1O8B23gNmIv6vxSxk8tNmphUqvS-XkkS260U,4776
|
|
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
44
|
databricks/sdk/service/apps.py,sha256=xxBPanIqAvN0iPZmnEyxY98n4RQr8pQWt2IXcnhk8L8,52535
|
|
45
|
-
databricks/sdk/service/billing.py,sha256=
|
|
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=
|
|
45
|
+
databricks/sdk/service/billing.py,sha256=8Zt0mD-StF-V5iICMtcRwxu-cKtpKdyY2g9CgUoT11E,97365
|
|
46
|
+
databricks/sdk/service/catalog.py,sha256=btcUKO_7Ks7OCeyNmqQ74xX8Avf3vUKcXbigkWG33Rc,589904
|
|
47
|
+
databricks/sdk/service/cleanrooms.py,sha256=UnVuLAjbVJ-rvxyGY4ArHhJ4zrXnk0z3XhZ3bDd8xXY,61330
|
|
48
|
+
databricks/sdk/service/compute.py,sha256=rlzr-_sy6gzMqggd3p_wAuBdEYd0Cf6YpY3zpAMrDq8,535852
|
|
49
|
+
databricks/sdk/service/dashboards.py,sha256=y7OBnRYLe3sLMda3Tsb8lTXTnRMlvtde6TaAg8xbT9c,100210
|
|
50
50
|
databricks/sdk/service/files.py,sha256=KewI3yw9HsqHKTlJlAkeO0CBszvaMrdBeyxTKORK9rk,45392
|
|
51
51
|
databricks/sdk/service/iam.py,sha256=ez1G4m8AihZtip2On0o5aADTba25SWBcpYGf1SssJu0,172829
|
|
52
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
52
|
+
databricks/sdk/service/jobs.py,sha256=q0NY-SBp1Amo4M8CmxUQ-wwNIOfi9TJrqYDWyupgFZI,426794
|
|
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=
|
|
55
|
+
databricks/sdk/service/oauth2.py,sha256=pXU8MnsZFxmLCr3lLoLO1bCCJld7925jSjT6L4xxKKw,75768
|
|
56
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=
|
|
59
|
-
databricks/sdk/service/settings.py,sha256=
|
|
58
|
+
databricks/sdk/service/serving.py,sha256=bk2ZnhzcOmnYdSMgXoXTBILRrlPAi0U-PDokYmCSrwA,196924
|
|
59
|
+
databricks/sdk/service/settings.py,sha256=Y21HbrWLwaJw60tS2oghbd28Z2W77zfCzFZ0vs4uhVs,319026
|
|
60
60
|
databricks/sdk/service/sharing.py,sha256=ymeJWblpB00vZrvflEVHa0joxWM9tafu6y09rR0I57k,104961
|
|
61
|
-
databricks/sdk/service/sql.py,sha256=
|
|
61
|
+
databricks/sdk/service/sql.py,sha256=GU_8ALx1r3lgu_FCmEJs8zTcWFKtJhKQ2CJcIcJgxzo,399590
|
|
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.43.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
65
|
+
databricks_sdk-0.43.0.dist-info/METADATA,sha256=0xu8M1qFM0O86f49-ZQhhNVOaUfdMpIAleEXm9NdShU,38301
|
|
66
|
+
databricks_sdk-0.43.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
|
|
67
|
+
databricks_sdk-0.43.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
68
|
+
databricks_sdk-0.43.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
69
|
+
databricks_sdk-0.43.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|