databricks-sdk 0.52.0__py3-none-any.whl → 0.54.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 +31 -3
- databricks/sdk/errors/base.py +1 -30
- databricks/sdk/service/apps.py +58 -0
- databricks/sdk/service/catalog.py +1198 -181
- databricks/sdk/service/cleanrooms.py +116 -1
- databricks/sdk/service/compute.py +33 -68
- databricks/sdk/service/dashboards.py +7 -0
- databricks/sdk/service/iam.py +167 -103
- databricks/sdk/service/jobs.py +7 -6
- databricks/sdk/service/ml.py +1230 -55
- databricks/sdk/service/oauth2.py +17 -0
- databricks/sdk/service/pipelines.py +105 -0
- databricks/sdk/service/serving.py +314 -0
- databricks/sdk/service/settings.py +1284 -59
- databricks/sdk/service/sharing.py +388 -2
- databricks/sdk/service/sql.py +53 -84
- databricks/sdk/service/vectorsearch.py +3 -31
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.52.0.dist-info → databricks_sdk-0.54.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.52.0.dist-info → databricks_sdk-0.54.0.dist-info}/RECORD +24 -24
- {databricks_sdk-0.52.0.dist-info → databricks_sdk-0.54.0.dist-info}/WHEEL +1 -1
- {databricks_sdk-0.52.0.dist-info → databricks_sdk-0.54.0.dist-info}/licenses/LICENSE +0 -0
- {databricks_sdk-0.52.0.dist-info → databricks_sdk-0.54.0.dist-info}/licenses/NOTICE +0 -0
- {databricks_sdk-0.52.0.dist-info → databricks_sdk-0.54.0.dist-info}/top_level.txt +0 -0
databricks/sdk/service/sql.py
CHANGED
|
@@ -1555,30 +1555,6 @@ class CreateAlertRequestAlert:
|
|
|
1555
1555
|
)
|
|
1556
1556
|
|
|
1557
1557
|
|
|
1558
|
-
@dataclass
|
|
1559
|
-
class CreateAlertV2Request:
|
|
1560
|
-
alert: Optional[AlertV2] = None
|
|
1561
|
-
|
|
1562
|
-
def as_dict(self) -> dict:
|
|
1563
|
-
"""Serializes the CreateAlertV2Request into a dictionary suitable for use as a JSON request body."""
|
|
1564
|
-
body = {}
|
|
1565
|
-
if self.alert:
|
|
1566
|
-
body["alert"] = self.alert.as_dict()
|
|
1567
|
-
return body
|
|
1568
|
-
|
|
1569
|
-
def as_shallow_dict(self) -> dict:
|
|
1570
|
-
"""Serializes the CreateAlertV2Request into a shallow dictionary of its immediate attributes."""
|
|
1571
|
-
body = {}
|
|
1572
|
-
if self.alert:
|
|
1573
|
-
body["alert"] = self.alert
|
|
1574
|
-
return body
|
|
1575
|
-
|
|
1576
|
-
@classmethod
|
|
1577
|
-
def from_dict(cls, d: Dict[str, Any]) -> CreateAlertV2Request:
|
|
1578
|
-
"""Deserializes the CreateAlertV2Request from a dictionary."""
|
|
1579
|
-
return cls(alert=_from_dict(d, "alert", AlertV2))
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
1558
|
@dataclass
|
|
1583
1559
|
class CreateQueryRequest:
|
|
1584
1560
|
auto_resolve_display_name: Optional[bool] = None
|
|
@@ -7423,6 +7399,10 @@ class UpdateAlertRequest:
|
|
|
7423
7399
|
|
|
7424
7400
|
alert: Optional[UpdateAlertRequestAlert] = None
|
|
7425
7401
|
|
|
7402
|
+
auto_resolve_display_name: Optional[bool] = None
|
|
7403
|
+
"""If true, automatically resolve alert display name conflicts. Otherwise, fail the request if the
|
|
7404
|
+
alert's display name conflicts with an existing alert's display name."""
|
|
7405
|
+
|
|
7426
7406
|
id: Optional[str] = None
|
|
7427
7407
|
|
|
7428
7408
|
def as_dict(self) -> dict:
|
|
@@ -7430,6 +7410,8 @@ class UpdateAlertRequest:
|
|
|
7430
7410
|
body = {}
|
|
7431
7411
|
if self.alert:
|
|
7432
7412
|
body["alert"] = self.alert.as_dict()
|
|
7413
|
+
if self.auto_resolve_display_name is not None:
|
|
7414
|
+
body["auto_resolve_display_name"] = self.auto_resolve_display_name
|
|
7433
7415
|
if self.id is not None:
|
|
7434
7416
|
body["id"] = self.id
|
|
7435
7417
|
if self.update_mask is not None:
|
|
@@ -7441,6 +7423,8 @@ class UpdateAlertRequest:
|
|
|
7441
7423
|
body = {}
|
|
7442
7424
|
if self.alert:
|
|
7443
7425
|
body["alert"] = self.alert
|
|
7426
|
+
if self.auto_resolve_display_name is not None:
|
|
7427
|
+
body["auto_resolve_display_name"] = self.auto_resolve_display_name
|
|
7444
7428
|
if self.id is not None:
|
|
7445
7429
|
body["id"] = self.id
|
|
7446
7430
|
if self.update_mask is not None:
|
|
@@ -7452,6 +7436,7 @@ class UpdateAlertRequest:
|
|
|
7452
7436
|
"""Deserializes the UpdateAlertRequest from a dictionary."""
|
|
7453
7437
|
return cls(
|
|
7454
7438
|
alert=_from_dict(d, "alert", UpdateAlertRequestAlert),
|
|
7439
|
+
auto_resolve_display_name=d.get("auto_resolve_display_name", None),
|
|
7455
7440
|
id=d.get("id", None),
|
|
7456
7441
|
update_mask=d.get("update_mask", None),
|
|
7457
7442
|
)
|
|
@@ -7546,52 +7531,6 @@ class UpdateAlertRequestAlert:
|
|
|
7546
7531
|
)
|
|
7547
7532
|
|
|
7548
7533
|
|
|
7549
|
-
@dataclass
|
|
7550
|
-
class UpdateAlertV2Request:
|
|
7551
|
-
update_mask: str
|
|
7552
|
-
"""The field mask must be a single string, with multiple fields separated by commas (no spaces).
|
|
7553
|
-
The field path is relative to the resource object, using a dot (`.`) to navigate sub-fields
|
|
7554
|
-
(e.g., `author.given_name`). Specification of elements in sequence or map fields is not allowed,
|
|
7555
|
-
as only the entire collection field can be specified. Field names must exactly match the
|
|
7556
|
-
resource field names.
|
|
7557
|
-
|
|
7558
|
-
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
7559
|
-
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
|
|
7560
|
-
API changes in the future."""
|
|
7561
|
-
|
|
7562
|
-
alert: Optional[AlertV2] = None
|
|
7563
|
-
|
|
7564
|
-
id: Optional[str] = None
|
|
7565
|
-
"""UUID identifying the alert."""
|
|
7566
|
-
|
|
7567
|
-
def as_dict(self) -> dict:
|
|
7568
|
-
"""Serializes the UpdateAlertV2Request into a dictionary suitable for use as a JSON request body."""
|
|
7569
|
-
body = {}
|
|
7570
|
-
if self.alert:
|
|
7571
|
-
body["alert"] = self.alert.as_dict()
|
|
7572
|
-
if self.id is not None:
|
|
7573
|
-
body["id"] = self.id
|
|
7574
|
-
if self.update_mask is not None:
|
|
7575
|
-
body["update_mask"] = self.update_mask
|
|
7576
|
-
return body
|
|
7577
|
-
|
|
7578
|
-
def as_shallow_dict(self) -> dict:
|
|
7579
|
-
"""Serializes the UpdateAlertV2Request into a shallow dictionary of its immediate attributes."""
|
|
7580
|
-
body = {}
|
|
7581
|
-
if self.alert:
|
|
7582
|
-
body["alert"] = self.alert
|
|
7583
|
-
if self.id is not None:
|
|
7584
|
-
body["id"] = self.id
|
|
7585
|
-
if self.update_mask is not None:
|
|
7586
|
-
body["update_mask"] = self.update_mask
|
|
7587
|
-
return body
|
|
7588
|
-
|
|
7589
|
-
@classmethod
|
|
7590
|
-
def from_dict(cls, d: Dict[str, Any]) -> UpdateAlertV2Request:
|
|
7591
|
-
"""Deserializes the UpdateAlertV2Request from a dictionary."""
|
|
7592
|
-
return cls(alert=_from_dict(d, "alert", AlertV2), id=d.get("id", None), update_mask=d.get("update_mask", None))
|
|
7593
|
-
|
|
7594
|
-
|
|
7595
7534
|
@dataclass
|
|
7596
7535
|
class UpdateQueryRequest:
|
|
7597
7536
|
update_mask: str
|
|
@@ -7605,6 +7544,10 @@ class UpdateQueryRequest:
|
|
|
7605
7544
|
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the
|
|
7606
7545
|
API changes in the future."""
|
|
7607
7546
|
|
|
7547
|
+
auto_resolve_display_name: Optional[bool] = None
|
|
7548
|
+
"""If true, automatically resolve alert display name conflicts. Otherwise, fail the request if the
|
|
7549
|
+
alert's display name conflicts with an existing alert's display name."""
|
|
7550
|
+
|
|
7608
7551
|
id: Optional[str] = None
|
|
7609
7552
|
|
|
7610
7553
|
query: Optional[UpdateQueryRequestQuery] = None
|
|
@@ -7612,6 +7555,8 @@ class UpdateQueryRequest:
|
|
|
7612
7555
|
def as_dict(self) -> dict:
|
|
7613
7556
|
"""Serializes the UpdateQueryRequest into a dictionary suitable for use as a JSON request body."""
|
|
7614
7557
|
body = {}
|
|
7558
|
+
if self.auto_resolve_display_name is not None:
|
|
7559
|
+
body["auto_resolve_display_name"] = self.auto_resolve_display_name
|
|
7615
7560
|
if self.id is not None:
|
|
7616
7561
|
body["id"] = self.id
|
|
7617
7562
|
if self.query:
|
|
@@ -7623,6 +7568,8 @@ class UpdateQueryRequest:
|
|
|
7623
7568
|
def as_shallow_dict(self) -> dict:
|
|
7624
7569
|
"""Serializes the UpdateQueryRequest into a shallow dictionary of its immediate attributes."""
|
|
7625
7570
|
body = {}
|
|
7571
|
+
if self.auto_resolve_display_name is not None:
|
|
7572
|
+
body["auto_resolve_display_name"] = self.auto_resolve_display_name
|
|
7626
7573
|
if self.id is not None:
|
|
7627
7574
|
body["id"] = self.id
|
|
7628
7575
|
if self.query:
|
|
@@ -7635,6 +7582,7 @@ class UpdateQueryRequest:
|
|
|
7635
7582
|
def from_dict(cls, d: Dict[str, Any]) -> UpdateQueryRequest:
|
|
7636
7583
|
"""Deserializes the UpdateQueryRequest from a dictionary."""
|
|
7637
7584
|
return cls(
|
|
7585
|
+
auto_resolve_display_name=d.get("auto_resolve_display_name", None),
|
|
7638
7586
|
id=d.get("id", None),
|
|
7639
7587
|
query=_from_dict(d, "query", UpdateQueryRequestQuery),
|
|
7640
7588
|
update_mask=d.get("update_mask", None),
|
|
@@ -8595,7 +8543,14 @@ class AlertsAPI:
|
|
|
8595
8543
|
return
|
|
8596
8544
|
query["page_token"] = json["next_page_token"]
|
|
8597
8545
|
|
|
8598
|
-
def update(
|
|
8546
|
+
def update(
|
|
8547
|
+
self,
|
|
8548
|
+
id: str,
|
|
8549
|
+
update_mask: str,
|
|
8550
|
+
*,
|
|
8551
|
+
alert: Optional[UpdateAlertRequestAlert] = None,
|
|
8552
|
+
auto_resolve_display_name: Optional[bool] = None,
|
|
8553
|
+
) -> Alert:
|
|
8599
8554
|
"""Update an alert.
|
|
8600
8555
|
|
|
8601
8556
|
Updates an alert.
|
|
@@ -8612,12 +8567,17 @@ class AlertsAPI:
|
|
|
8612
8567
|
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
|
|
8613
8568
|
changes in the future.
|
|
8614
8569
|
:param alert: :class:`UpdateAlertRequestAlert` (optional)
|
|
8570
|
+
:param auto_resolve_display_name: bool (optional)
|
|
8571
|
+
If true, automatically resolve alert display name conflicts. Otherwise, fail the request if the
|
|
8572
|
+
alert's display name conflicts with an existing alert's display name.
|
|
8615
8573
|
|
|
8616
8574
|
:returns: :class:`Alert`
|
|
8617
8575
|
"""
|
|
8618
8576
|
body = {}
|
|
8619
8577
|
if alert is not None:
|
|
8620
8578
|
body["alert"] = alert.as_dict()
|
|
8579
|
+
if auto_resolve_display_name is not None:
|
|
8580
|
+
body["auto_resolve_display_name"] = auto_resolve_display_name
|
|
8621
8581
|
if update_mask is not None:
|
|
8622
8582
|
body["update_mask"] = update_mask
|
|
8623
8583
|
headers = {
|
|
@@ -8805,18 +8765,16 @@ class AlertsV2API:
|
|
|
8805
8765
|
def __init__(self, api_client):
|
|
8806
8766
|
self._api = api_client
|
|
8807
8767
|
|
|
8808
|
-
def create_alert(self,
|
|
8768
|
+
def create_alert(self, alert: AlertV2) -> AlertV2:
|
|
8809
8769
|
"""Create an alert.
|
|
8810
8770
|
|
|
8811
8771
|
Create Alert
|
|
8812
8772
|
|
|
8813
|
-
:param alert: :class:`AlertV2`
|
|
8773
|
+
:param alert: :class:`AlertV2`
|
|
8814
8774
|
|
|
8815
8775
|
:returns: :class:`AlertV2`
|
|
8816
8776
|
"""
|
|
8817
|
-
body =
|
|
8818
|
-
if alert is not None:
|
|
8819
|
-
body["alert"] = alert.as_dict()
|
|
8777
|
+
body = alert.as_dict()
|
|
8820
8778
|
headers = {
|
|
8821
8779
|
"Accept": "application/json",
|
|
8822
8780
|
"Content-Type": "application/json",
|
|
@@ -8889,13 +8847,14 @@ class AlertsV2API:
|
|
|
8889
8847
|
|
|
8890
8848
|
self._api.do("DELETE", f"/api/2.0/alerts/{id}", headers=headers)
|
|
8891
8849
|
|
|
8892
|
-
def update_alert(self, id: str,
|
|
8850
|
+
def update_alert(self, id: str, alert: AlertV2, update_mask: str) -> AlertV2:
|
|
8893
8851
|
"""Update an alert.
|
|
8894
8852
|
|
|
8895
8853
|
Update alert
|
|
8896
8854
|
|
|
8897
8855
|
:param id: str
|
|
8898
8856
|
UUID identifying the alert.
|
|
8857
|
+
:param alert: :class:`AlertV2`
|
|
8899
8858
|
:param update_mask: str
|
|
8900
8859
|
The field mask must be a single string, with multiple fields separated by commas (no spaces). The
|
|
8901
8860
|
field path is relative to the resource object, using a dot (`.`) to navigate sub-fields (e.g.,
|
|
@@ -8906,21 +8865,19 @@ class AlertsV2API:
|
|
|
8906
8865
|
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
8907
8866
|
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
|
|
8908
8867
|
changes in the future.
|
|
8909
|
-
:param alert: :class:`AlertV2` (optional)
|
|
8910
8868
|
|
|
8911
8869
|
:returns: :class:`AlertV2`
|
|
8912
8870
|
"""
|
|
8913
|
-
body =
|
|
8914
|
-
|
|
8915
|
-
body["alert"] = alert.as_dict()
|
|
8871
|
+
body = alert.as_dict()
|
|
8872
|
+
query = {}
|
|
8916
8873
|
if update_mask is not None:
|
|
8917
|
-
|
|
8874
|
+
query["update_mask"] = update_mask
|
|
8918
8875
|
headers = {
|
|
8919
8876
|
"Accept": "application/json",
|
|
8920
8877
|
"Content-Type": "application/json",
|
|
8921
8878
|
}
|
|
8922
8879
|
|
|
8923
|
-
res = self._api.do("PATCH", f"/api/2.0/alerts/{id}", body=body, headers=headers)
|
|
8880
|
+
res = self._api.do("PATCH", f"/api/2.0/alerts/{id}", query=query, body=body, headers=headers)
|
|
8924
8881
|
return AlertV2.from_dict(res)
|
|
8925
8882
|
|
|
8926
8883
|
|
|
@@ -9535,7 +9492,14 @@ class QueriesAPI:
|
|
|
9535
9492
|
return
|
|
9536
9493
|
query["page_token"] = json["next_page_token"]
|
|
9537
9494
|
|
|
9538
|
-
def update(
|
|
9495
|
+
def update(
|
|
9496
|
+
self,
|
|
9497
|
+
id: str,
|
|
9498
|
+
update_mask: str,
|
|
9499
|
+
*,
|
|
9500
|
+
auto_resolve_display_name: Optional[bool] = None,
|
|
9501
|
+
query: Optional[UpdateQueryRequestQuery] = None,
|
|
9502
|
+
) -> Query:
|
|
9539
9503
|
"""Update a query.
|
|
9540
9504
|
|
|
9541
9505
|
Updates a query.
|
|
@@ -9551,11 +9515,16 @@ class QueriesAPI:
|
|
|
9551
9515
|
A field mask of `*` indicates full replacement. It’s recommended to always explicitly list the
|
|
9552
9516
|
fields being updated and avoid using `*` wildcards, as it can lead to unintended results if the API
|
|
9553
9517
|
changes in the future.
|
|
9518
|
+
:param auto_resolve_display_name: bool (optional)
|
|
9519
|
+
If true, automatically resolve alert display name conflicts. Otherwise, fail the request if the
|
|
9520
|
+
alert's display name conflicts with an existing alert's display name.
|
|
9554
9521
|
:param query: :class:`UpdateQueryRequestQuery` (optional)
|
|
9555
9522
|
|
|
9556
9523
|
:returns: :class:`Query`
|
|
9557
9524
|
"""
|
|
9558
9525
|
body = {}
|
|
9526
|
+
if auto_resolve_display_name is not None:
|
|
9527
|
+
body["auto_resolve_display_name"] = auto_resolve_display_name
|
|
9559
9528
|
if query is not None:
|
|
9560
9529
|
body["query"] = query.as_dict()
|
|
9561
9530
|
if update_mask is not None:
|
|
@@ -744,12 +744,6 @@ class ListEndpointResponse:
|
|
|
744
744
|
|
|
745
745
|
@dataclass
|
|
746
746
|
class ListValue:
|
|
747
|
-
"""copied from proto3 / Google Well Known Types, source:
|
|
748
|
-
https://github.com/protocolbuffers/protobuf/blob/450d24ca820750c5db5112a6f0b0c2efb9758021/src/google/protobuf/struct.proto
|
|
749
|
-
`ListValue` is a wrapper around a repeated field of values.
|
|
750
|
-
|
|
751
|
-
The JSON representation for `ListValue` is JSON array."""
|
|
752
|
-
|
|
753
747
|
values: Optional[List[Value]] = None
|
|
754
748
|
"""Repeated field of dynamically typed values."""
|
|
755
749
|
|
|
@@ -1165,7 +1159,7 @@ class QueryVectorIndexResponse:
|
|
|
1165
1159
|
class ResultData:
|
|
1166
1160
|
"""Data returned in the query result."""
|
|
1167
1161
|
|
|
1168
|
-
data_array: Optional[List[
|
|
1162
|
+
data_array: Optional[List[List[str]]] = None
|
|
1169
1163
|
"""Data rows returned in the query."""
|
|
1170
1164
|
|
|
1171
1165
|
row_count: Optional[int] = None
|
|
@@ -1175,7 +1169,7 @@ class ResultData:
|
|
|
1175
1169
|
"""Serializes the ResultData into a dictionary suitable for use as a JSON request body."""
|
|
1176
1170
|
body = {}
|
|
1177
1171
|
if self.data_array:
|
|
1178
|
-
body["data_array"] = [v
|
|
1172
|
+
body["data_array"] = [v for v in self.data_array]
|
|
1179
1173
|
if self.row_count is not None:
|
|
1180
1174
|
body["row_count"] = self.row_count
|
|
1181
1175
|
return body
|
|
@@ -1192,7 +1186,7 @@ class ResultData:
|
|
|
1192
1186
|
@classmethod
|
|
1193
1187
|
def from_dict(cls, d: Dict[str, Any]) -> ResultData:
|
|
1194
1188
|
"""Deserializes the ResultData from a dictionary."""
|
|
1195
|
-
return cls(data_array=
|
|
1189
|
+
return cls(data_array=d.get("data_array", None), row_count=d.get("row_count", None))
|
|
1196
1190
|
|
|
1197
1191
|
|
|
1198
1192
|
@dataclass
|
|
@@ -1308,15 +1302,6 @@ class ScanVectorIndexResponse:
|
|
|
1308
1302
|
|
|
1309
1303
|
@dataclass
|
|
1310
1304
|
class Struct:
|
|
1311
|
-
"""copied from proto3 / Google Well Known Types, source:
|
|
1312
|
-
https://github.com/protocolbuffers/protobuf/blob/450d24ca820750c5db5112a6f0b0c2efb9758021/src/google/protobuf/struct.proto
|
|
1313
|
-
`Struct` represents a structured data value, consisting of fields which map to dynamically typed
|
|
1314
|
-
values. In some languages, `Struct` might be supported by a native representation. For example,
|
|
1315
|
-
in scripting languages like JS a struct is represented as an object. The details of that
|
|
1316
|
-
representation are described together with the proto support for the language.
|
|
1317
|
-
|
|
1318
|
-
The JSON representation for `Struct` is JSON object."""
|
|
1319
|
-
|
|
1320
1305
|
fields: Optional[List[MapStringValueEntry]] = None
|
|
1321
1306
|
"""Data entry, corresponding to a row in a vector index."""
|
|
1322
1307
|
|
|
@@ -1532,25 +1517,12 @@ class Value:
|
|
|
1532
1517
|
bool_value: Optional[bool] = None
|
|
1533
1518
|
|
|
1534
1519
|
list_value: Optional[ListValue] = None
|
|
1535
|
-
"""copied from proto3 / Google Well Known Types, source:
|
|
1536
|
-
https://github.com/protocolbuffers/protobuf/blob/450d24ca820750c5db5112a6f0b0c2efb9758021/src/google/protobuf/struct.proto
|
|
1537
|
-
`ListValue` is a wrapper around a repeated field of values.
|
|
1538
|
-
|
|
1539
|
-
The JSON representation for `ListValue` is JSON array."""
|
|
1540
1520
|
|
|
1541
1521
|
number_value: Optional[float] = None
|
|
1542
1522
|
|
|
1543
1523
|
string_value: Optional[str] = None
|
|
1544
1524
|
|
|
1545
1525
|
struct_value: Optional[Struct] = None
|
|
1546
|
-
"""copied from proto3 / Google Well Known Types, source:
|
|
1547
|
-
https://github.com/protocolbuffers/protobuf/blob/450d24ca820750c5db5112a6f0b0c2efb9758021/src/google/protobuf/struct.proto
|
|
1548
|
-
`Struct` represents a structured data value, consisting of fields which map to dynamically typed
|
|
1549
|
-
values. In some languages, `Struct` might be supported by a native representation. For example,
|
|
1550
|
-
in scripting languages like JS a struct is represented as an object. The details of that
|
|
1551
|
-
representation are described together with the proto support for the language.
|
|
1552
|
-
|
|
1553
|
-
The JSON representation for `Struct` is JSON object."""
|
|
1554
1526
|
|
|
1555
1527
|
def as_dict(self) -> dict:
|
|
1556
1528
|
"""Serializes the Value into a dictionary suitable for use as a JSON request body."""
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.54.0"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=
|
|
2
|
+
databricks/sdk/__init__.py,sha256=gEriDe8PhOc8T_htILvkBJe91u0PwVDdMZ9sgJ9N8lw,57808
|
|
3
3
|
databricks/sdk/_base_client.py,sha256=IMHtzC5BhWt-lBVjifewR1Ah5fegGDMv0__-O1hCxWI,15850
|
|
4
4
|
databricks/sdk/_property.py,sha256=ccbxhkXZmZOxbx2sqKMTzhVZDuvWXG0WPHFRgac6JAM,1701
|
|
5
5
|
databricks/sdk/azure.py,sha256=sN_ARpmP9h1JovtiHIsDLtrVQP_K11eNDDtHS6PD19k,1015
|
|
@@ -16,12 +16,12 @@ databricks/sdk/oidc_token_supplier.py,sha256=QrO6J0QY4yFfcdQDL5h2OfxMxvBZJPtPmPe
|
|
|
16
16
|
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
17
17
|
databricks/sdk/retries.py,sha256=7k2kEexGqGKXHNAWHbPFSZSugU8UIU0qtyly_hix22Q,2581
|
|
18
18
|
databricks/sdk/useragent.py,sha256=boEgzTv-Zmo6boipZKjSopNy0CXg4GShC1_lTKpJgqs,7361
|
|
19
|
-
databricks/sdk/version.py,sha256=
|
|
19
|
+
databricks/sdk/version.py,sha256=GL361gEztfNayz_pZjsGe3Es4PhpuAOve1lCqPCbSZs,23
|
|
20
20
|
databricks/sdk/_widgets/__init__.py,sha256=VhI-VvLlr3rKUT1nbROslHJIbmZX_tPJ9rRhrdFsYUA,2811
|
|
21
21
|
databricks/sdk/_widgets/default_widgets_utils.py,sha256=_hwCbptLbRzWEmknco0H1wQNAYcuy2pjFO9NiRbvFeo,1127
|
|
22
22
|
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=mg3rEPG9z76e0yVjGgcLybUvd_zSuN5ziGeKiZ-c8Ew,2927
|
|
23
23
|
databricks/sdk/errors/__init__.py,sha256=WBEGgTRWM41A8VPGzIg59Ph5EVIH7n3rR3Jq3wa88A8,212
|
|
24
|
-
databricks/sdk/errors/base.py,sha256=
|
|
24
|
+
databricks/sdk/errors/base.py,sha256=a6LymHcon3xq6FNNnpQRH5LgYNYvkLw9slWFQb_FOFM,4419
|
|
25
25
|
databricks/sdk/errors/customizer.py,sha256=6udVruRDB08VPy5oKn5kaHDqWQI4cwHVOzxU6MsgpOc,2211
|
|
26
26
|
databricks/sdk/errors/deserializer.py,sha256=yW0y9W4_lRySntCppoig2mWdWNXkp3VxXJrrRwGLfbU,4160
|
|
27
27
|
databricks/sdk/errors/details.py,sha256=jmH16Hp3tpjNt50YmjJaUJd4Apj2EPWTJGkMUltgnFk,12607
|
|
@@ -43,29 +43,29 @@ databricks/sdk/runtime/__init__.py,sha256=6nthZxeYY1HjHieQcP7kXVLIId7w2yfHpZRXXt
|
|
|
43
43
|
databricks/sdk/runtime/dbutils_stub.py,sha256=S_pgWyGmwp3Ay-pMDEXccYsPwNVqCtz7MpD3fZVlHUA,11408
|
|
44
44
|
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
databricks/sdk/service/_internal.py,sha256=PY83MPehEwGuMzCnyvolqglnfZeQ7-eS38kedTa7KDU,1985
|
|
46
|
-
databricks/sdk/service/apps.py,sha256
|
|
46
|
+
databricks/sdk/service/apps.py,sha256=az06ij0_I4G3UcdRs5Pob4uXn5EjJoysXl1F8rR_NQ4,58080
|
|
47
47
|
databricks/sdk/service/billing.py,sha256=2_6QVp6KPTKqFHgoaa8dGSOrD1P8i-UjKaupWOxpMW8,99177
|
|
48
|
-
databricks/sdk/service/catalog.py,sha256=
|
|
49
|
-
databricks/sdk/service/cleanrooms.py,sha256=
|
|
50
|
-
databricks/sdk/service/compute.py,sha256=
|
|
51
|
-
databricks/sdk/service/dashboards.py,sha256=
|
|
48
|
+
databricks/sdk/service/catalog.py,sha256=8zJ3NqN90r1GhxeqpvY3rhUiEW3rJ5c89220B2nG2Lk,646689
|
|
49
|
+
databricks/sdk/service/cleanrooms.py,sha256=ZrlsMFJ8QSXSztwwQ-qa1QKfe-y--0yAOrfzhRjgyYI,63372
|
|
50
|
+
databricks/sdk/service/compute.py,sha256=okznn__wKCZDaDIarf2Qp7SySK6wMa3z9gu5mxPLsCc,571739
|
|
51
|
+
databricks/sdk/service/dashboards.py,sha256=NAG1DOPqp8IWcqLVTpB27FeFI56jC7VeX6uoEpJug5o,118497
|
|
52
52
|
databricks/sdk/service/files.py,sha256=nAbN1US56vJYk-YDPShfT_mgk_KIhgbidtSGTraCqPo,46335
|
|
53
|
-
databricks/sdk/service/iam.py,sha256=
|
|
54
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
53
|
+
databricks/sdk/service/iam.py,sha256=E4_FQT0eumpBfR_qy8IK1qL-ssSEhYrJJXsPb6GUzF4,179229
|
|
54
|
+
databricks/sdk/service/jobs.py,sha256=tDWwAtN54DvoHIxLld1oKe6DpywSjvbjA-Jl9g3vF8s,466539
|
|
55
55
|
databricks/sdk/service/marketplace.py,sha256=NLCJ7zb0Oj5nhLth9R1Szuz6fSSoxAnsKvFhKgx994s,175741
|
|
56
|
-
databricks/sdk/service/ml.py,sha256=
|
|
57
|
-
databricks/sdk/service/oauth2.py,sha256=
|
|
58
|
-
databricks/sdk/service/pipelines.py,sha256=
|
|
56
|
+
databricks/sdk/service/ml.py,sha256=ovv33tW8aS28smK8IrDo6J_hxfOeA2Qe_49tWPT6DzY,374308
|
|
57
|
+
databricks/sdk/service/oauth2.py,sha256=OMXkb5eo4D7WfCrxBlJeY_jVTHXdpZNJl-Sv8o25jxc,81101
|
|
58
|
+
databricks/sdk/service/pipelines.py,sha256=ha9WnaZguTiS-gXdQ9UFptxCFkGdfKcy41t-umRi3ww,173948
|
|
59
59
|
databricks/sdk/service/provisioning.py,sha256=-Ly2o02i-jhNmiP9zLPeYF8H2usoB-oTG0RLF5gkIpc,169311
|
|
60
|
-
databricks/sdk/service/serving.py,sha256=
|
|
61
|
-
databricks/sdk/service/settings.py,sha256=
|
|
62
|
-
databricks/sdk/service/sharing.py,sha256=
|
|
63
|
-
databricks/sdk/service/sql.py,sha256=
|
|
64
|
-
databricks/sdk/service/vectorsearch.py,sha256=
|
|
60
|
+
databricks/sdk/service/serving.py,sha256=ugI94MriielW2X8bjm5C_cGqEwMNFsGVcsiqOY89RLQ,226865
|
|
61
|
+
databricks/sdk/service/settings.py,sha256=GJ68sZMDPSOTZqc2-Nd1gEYgWM3dul80zS94mU620vQ,400566
|
|
62
|
+
databricks/sdk/service/sharing.py,sha256=i7d5ggmOnHJ2gVp4PfPmf14M-AUDRIU-XZb4SqkrVCo,160173
|
|
63
|
+
databricks/sdk/service/sql.py,sha256=v6uspo4o0VoUW0T2eHhPDlJYeYah1vhR_WMxVwEhu2Y,442747
|
|
64
|
+
databricks/sdk/service/vectorsearch.py,sha256=Y1yUJwoY7rg6HWKh7_90aJzIWNiWEG2WUw0i1n3KH7I,86701
|
|
65
65
|
databricks/sdk/service/workspace.py,sha256=T0ZbnG1qcPjKysGO_tBzl5x1PyalydeYJRBZbooYNm0,130893
|
|
66
|
-
databricks_sdk-0.
|
|
67
|
-
databricks_sdk-0.
|
|
68
|
-
databricks_sdk-0.
|
|
69
|
-
databricks_sdk-0.
|
|
70
|
-
databricks_sdk-0.
|
|
71
|
-
databricks_sdk-0.
|
|
66
|
+
databricks_sdk-0.54.0.dist-info/licenses/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
67
|
+
databricks_sdk-0.54.0.dist-info/licenses/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
|
|
68
|
+
databricks_sdk-0.54.0.dist-info/METADATA,sha256=ykrBHXQeYmMd6DMZrpcwXUrHhE_A2ipJTKiTLLiYtfM,39397
|
|
69
|
+
databricks_sdk-0.54.0.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
70
|
+
databricks_sdk-0.54.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
71
|
+
databricks_sdk-0.54.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|