databricks-sdk 0.54.0__py3-none-any.whl → 0.56.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 +304 -278
- databricks/sdk/config.py +15 -4
- databricks/sdk/credentials_provider.py +101 -55
- databricks/sdk/oauth.py +0 -5
- databricks/sdk/oidc.py +206 -0
- databricks/sdk/service/aibuilder.py +364 -0
- databricks/sdk/service/billing.py +150 -169
- databricks/sdk/service/catalog.py +263 -835
- databricks/sdk/service/cleanrooms.py +15 -10
- databricks/sdk/service/compute.py +12 -22
- databricks/sdk/service/dashboards.py +59 -451
- databricks/sdk/service/database.py +1256 -0
- databricks/sdk/service/files.py +2 -0
- databricks/sdk/service/iam.py +6 -6
- databricks/sdk/service/jobs.py +238 -0
- databricks/sdk/service/ml.py +8 -271
- databricks/sdk/service/pipelines.py +45 -1
- databricks/sdk/service/provisioning.py +0 -3
- databricks/sdk/service/qualitymonitorv2.py +275 -0
- databricks/sdk/service/serving.py +76 -4
- databricks/sdk/service/settings.py +982 -99
- databricks/sdk/service/sharing.py +3 -2
- databricks/sdk/service/sql.py +218 -1
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.54.0.dist-info → databricks_sdk-0.56.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.54.0.dist-info → databricks_sdk-0.56.0.dist-info}/RECORD +30 -26
- {databricks_sdk-0.54.0.dist-info → databricks_sdk-0.56.0.dist-info}/WHEEL +1 -1
- {databricks_sdk-0.54.0.dist-info → databricks_sdk-0.56.0.dist-info}/licenses/LICENSE +0 -0
- {databricks_sdk-0.54.0.dist-info → databricks_sdk-0.56.0.dist-info}/licenses/NOTICE +0 -0
- {databricks_sdk-0.54.0.dist-info → databricks_sdk-0.56.0.dist-info}/top_level.txt +0 -0
|
@@ -22,6 +22,7 @@ class AuthenticationType(Enum):
|
|
|
22
22
|
|
|
23
23
|
DATABRICKS = "DATABRICKS"
|
|
24
24
|
OAUTH_CLIENT_CREDENTIALS = "OAUTH_CLIENT_CREDENTIALS"
|
|
25
|
+
OIDC_FEDERATION = "OIDC_FEDERATION"
|
|
25
26
|
TOKEN = "TOKEN"
|
|
26
27
|
|
|
27
28
|
|
|
@@ -2763,7 +2764,7 @@ class UpdateShare:
|
|
|
2763
2764
|
@dataclass
|
|
2764
2765
|
class UpdateSharePermissions:
|
|
2765
2766
|
changes: Optional[List[PermissionsChange]] = None
|
|
2766
|
-
"""Array of
|
|
2767
|
+
"""Array of permissions change objects."""
|
|
2767
2768
|
|
|
2768
2769
|
name: Optional[str] = None
|
|
2769
2770
|
"""The name of the share."""
|
|
@@ -3999,7 +4000,7 @@ class SharesAPI:
|
|
|
3999
4000
|
:param name: str
|
|
4000
4001
|
The name of the share.
|
|
4001
4002
|
:param changes: List[:class:`PermissionsChange`] (optional)
|
|
4002
|
-
Array of
|
|
4003
|
+
Array of permissions change objects.
|
|
4003
4004
|
:param omit_permissions_list: bool (optional)
|
|
4004
4005
|
Optional. Whether to return the latest permissions list of the share in the response.
|
|
4005
4006
|
|
databricks/sdk/service/sql.py
CHANGED
|
@@ -1696,6 +1696,68 @@ class CreateQueryRequestQuery:
|
|
|
1696
1696
|
)
|
|
1697
1697
|
|
|
1698
1698
|
|
|
1699
|
+
@dataclass
|
|
1700
|
+
class CreateQueryVisualizationsLegacyRequest:
|
|
1701
|
+
"""Add visualization to a query"""
|
|
1702
|
+
|
|
1703
|
+
query_id: str
|
|
1704
|
+
"""The identifier returned by :method:queries/create"""
|
|
1705
|
+
|
|
1706
|
+
type: str
|
|
1707
|
+
"""The type of visualization: chart, table, pivot table, and so on."""
|
|
1708
|
+
|
|
1709
|
+
options: Any
|
|
1710
|
+
"""The options object varies widely from one visualization type to the next and is unsupported.
|
|
1711
|
+
Databricks does not recommend modifying visualization settings in JSON."""
|
|
1712
|
+
|
|
1713
|
+
description: Optional[str] = None
|
|
1714
|
+
"""A short description of this visualization. This is not displayed in the UI."""
|
|
1715
|
+
|
|
1716
|
+
name: Optional[str] = None
|
|
1717
|
+
"""The name of the visualization that appears on dashboards and the query screen."""
|
|
1718
|
+
|
|
1719
|
+
def as_dict(self) -> dict:
|
|
1720
|
+
"""Serializes the CreateQueryVisualizationsLegacyRequest into a dictionary suitable for use as a JSON request body."""
|
|
1721
|
+
body = {}
|
|
1722
|
+
if self.description is not None:
|
|
1723
|
+
body["description"] = self.description
|
|
1724
|
+
if self.name is not None:
|
|
1725
|
+
body["name"] = self.name
|
|
1726
|
+
if self.options:
|
|
1727
|
+
body["options"] = self.options
|
|
1728
|
+
if self.query_id is not None:
|
|
1729
|
+
body["query_id"] = self.query_id
|
|
1730
|
+
if self.type is not None:
|
|
1731
|
+
body["type"] = self.type
|
|
1732
|
+
return body
|
|
1733
|
+
|
|
1734
|
+
def as_shallow_dict(self) -> dict:
|
|
1735
|
+
"""Serializes the CreateQueryVisualizationsLegacyRequest into a shallow dictionary of its immediate attributes."""
|
|
1736
|
+
body = {}
|
|
1737
|
+
if self.description is not None:
|
|
1738
|
+
body["description"] = self.description
|
|
1739
|
+
if self.name is not None:
|
|
1740
|
+
body["name"] = self.name
|
|
1741
|
+
if self.options:
|
|
1742
|
+
body["options"] = self.options
|
|
1743
|
+
if self.query_id is not None:
|
|
1744
|
+
body["query_id"] = self.query_id
|
|
1745
|
+
if self.type is not None:
|
|
1746
|
+
body["type"] = self.type
|
|
1747
|
+
return body
|
|
1748
|
+
|
|
1749
|
+
@classmethod
|
|
1750
|
+
def from_dict(cls, d: Dict[str, Any]) -> CreateQueryVisualizationsLegacyRequest:
|
|
1751
|
+
"""Deserializes the CreateQueryVisualizationsLegacyRequest from a dictionary."""
|
|
1752
|
+
return cls(
|
|
1753
|
+
description=d.get("description", None),
|
|
1754
|
+
name=d.get("name", None),
|
|
1755
|
+
options=d.get("options", None),
|
|
1756
|
+
query_id=d.get("query_id", None),
|
|
1757
|
+
type=d.get("type", None),
|
|
1758
|
+
)
|
|
1759
|
+
|
|
1760
|
+
|
|
1699
1761
|
@dataclass
|
|
1700
1762
|
class CreateVisualizationRequest:
|
|
1701
1763
|
visualization: Optional[CreateVisualizationRequestVisualization] = None
|
|
@@ -6047,6 +6109,10 @@ class QueryMetrics:
|
|
|
6047
6109
|
spill_to_disk_bytes: Optional[int] = None
|
|
6048
6110
|
"""Size of data temporarily written to disk while executing the query, in bytes."""
|
|
6049
6111
|
|
|
6112
|
+
task_time_over_time_range: Optional[TaskTimeOverRange] = None
|
|
6113
|
+
"""sum of task times completed in a range of wall clock time, approximated to a configurable number
|
|
6114
|
+
of points aggregated over all stages and jobs in the query (based on task_total_time_ms)"""
|
|
6115
|
+
|
|
6050
6116
|
task_total_time_ms: Optional[int] = None
|
|
6051
6117
|
"""Sum of execution time for all of the query’s tasks, in milliseconds."""
|
|
6052
6118
|
|
|
@@ -6097,6 +6163,8 @@ class QueryMetrics:
|
|
|
6097
6163
|
body["rows_read_count"] = self.rows_read_count
|
|
6098
6164
|
if self.spill_to_disk_bytes is not None:
|
|
6099
6165
|
body["spill_to_disk_bytes"] = self.spill_to_disk_bytes
|
|
6166
|
+
if self.task_time_over_time_range:
|
|
6167
|
+
body["task_time_over_time_range"] = self.task_time_over_time_range.as_dict()
|
|
6100
6168
|
if self.task_total_time_ms is not None:
|
|
6101
6169
|
body["task_total_time_ms"] = self.task_total_time_ms
|
|
6102
6170
|
if self.total_time_ms is not None:
|
|
@@ -6146,6 +6214,8 @@ class QueryMetrics:
|
|
|
6146
6214
|
body["rows_read_count"] = self.rows_read_count
|
|
6147
6215
|
if self.spill_to_disk_bytes is not None:
|
|
6148
6216
|
body["spill_to_disk_bytes"] = self.spill_to_disk_bytes
|
|
6217
|
+
if self.task_time_over_time_range:
|
|
6218
|
+
body["task_time_over_time_range"] = self.task_time_over_time_range
|
|
6149
6219
|
if self.task_total_time_ms is not None:
|
|
6150
6220
|
body["task_total_time_ms"] = self.task_total_time_ms
|
|
6151
6221
|
if self.total_time_ms is not None:
|
|
@@ -6177,6 +6247,7 @@ class QueryMetrics:
|
|
|
6177
6247
|
rows_produced_count=d.get("rows_produced_count", None),
|
|
6178
6248
|
rows_read_count=d.get("rows_read_count", None),
|
|
6179
6249
|
spill_to_disk_bytes=d.get("spill_to_disk_bytes", None),
|
|
6250
|
+
task_time_over_time_range=_from_dict(d, "task_time_over_time_range", TaskTimeOverRange),
|
|
6180
6251
|
task_total_time_ms=d.get("task_total_time_ms", None),
|
|
6181
6252
|
total_time_ms=d.get("total_time_ms", None),
|
|
6182
6253
|
write_remote_bytes=d.get("write_remote_bytes", None),
|
|
@@ -6763,6 +6834,50 @@ class ServiceErrorCode(Enum):
|
|
|
6763
6834
|
WORKSPACE_TEMPORARILY_UNAVAILABLE = "WORKSPACE_TEMPORARILY_UNAVAILABLE"
|
|
6764
6835
|
|
|
6765
6836
|
|
|
6837
|
+
@dataclass
|
|
6838
|
+
class SetRequest:
|
|
6839
|
+
"""Set object ACL"""
|
|
6840
|
+
|
|
6841
|
+
access_control_list: Optional[List[AccessControl]] = None
|
|
6842
|
+
|
|
6843
|
+
object_id: Optional[str] = None
|
|
6844
|
+
"""Object ID. The ACL for the object with this UUID is overwritten by this request's POST content."""
|
|
6845
|
+
|
|
6846
|
+
object_type: Optional[ObjectTypePlural] = None
|
|
6847
|
+
"""The type of object permission to set."""
|
|
6848
|
+
|
|
6849
|
+
def as_dict(self) -> dict:
|
|
6850
|
+
"""Serializes the SetRequest into a dictionary suitable for use as a JSON request body."""
|
|
6851
|
+
body = {}
|
|
6852
|
+
if self.access_control_list:
|
|
6853
|
+
body["access_control_list"] = [v.as_dict() for v in self.access_control_list]
|
|
6854
|
+
if self.object_id is not None:
|
|
6855
|
+
body["objectId"] = self.object_id
|
|
6856
|
+
if self.object_type is not None:
|
|
6857
|
+
body["objectType"] = self.object_type.value
|
|
6858
|
+
return body
|
|
6859
|
+
|
|
6860
|
+
def as_shallow_dict(self) -> dict:
|
|
6861
|
+
"""Serializes the SetRequest into a shallow dictionary of its immediate attributes."""
|
|
6862
|
+
body = {}
|
|
6863
|
+
if self.access_control_list:
|
|
6864
|
+
body["access_control_list"] = self.access_control_list
|
|
6865
|
+
if self.object_id is not None:
|
|
6866
|
+
body["objectId"] = self.object_id
|
|
6867
|
+
if self.object_type is not None:
|
|
6868
|
+
body["objectType"] = self.object_type
|
|
6869
|
+
return body
|
|
6870
|
+
|
|
6871
|
+
@classmethod
|
|
6872
|
+
def from_dict(cls, d: Dict[str, Any]) -> SetRequest:
|
|
6873
|
+
"""Deserializes the SetRequest from a dictionary."""
|
|
6874
|
+
return cls(
|
|
6875
|
+
access_control_list=_repeated_dict(d, "access_control_list", AccessControl),
|
|
6876
|
+
object_id=d.get("objectId", None),
|
|
6877
|
+
object_type=_enum(d, "objectType", ObjectTypePlural),
|
|
6878
|
+
)
|
|
6879
|
+
|
|
6880
|
+
|
|
6766
6881
|
@dataclass
|
|
6767
6882
|
class SetResponse:
|
|
6768
6883
|
access_control_list: Optional[List[AccessControl]] = None
|
|
@@ -7167,6 +7282,63 @@ class SuccessMessage(Enum):
|
|
|
7167
7282
|
SUCCESS = "Success"
|
|
7168
7283
|
|
|
7169
7284
|
|
|
7285
|
+
@dataclass
|
|
7286
|
+
class TaskTimeOverRange:
|
|
7287
|
+
entries: Optional[List[TaskTimeOverRangeEntry]] = None
|
|
7288
|
+
|
|
7289
|
+
interval: Optional[int] = None
|
|
7290
|
+
"""interval length for all entries (difference in start time and end time of an entry range) the
|
|
7291
|
+
same for all entries start time of first interval is query_start_time_ms"""
|
|
7292
|
+
|
|
7293
|
+
def as_dict(self) -> dict:
|
|
7294
|
+
"""Serializes the TaskTimeOverRange into a dictionary suitable for use as a JSON request body."""
|
|
7295
|
+
body = {}
|
|
7296
|
+
if self.entries:
|
|
7297
|
+
body["entries"] = [v.as_dict() for v in self.entries]
|
|
7298
|
+
if self.interval is not None:
|
|
7299
|
+
body["interval"] = self.interval
|
|
7300
|
+
return body
|
|
7301
|
+
|
|
7302
|
+
def as_shallow_dict(self) -> dict:
|
|
7303
|
+
"""Serializes the TaskTimeOverRange into a shallow dictionary of its immediate attributes."""
|
|
7304
|
+
body = {}
|
|
7305
|
+
if self.entries:
|
|
7306
|
+
body["entries"] = self.entries
|
|
7307
|
+
if self.interval is not None:
|
|
7308
|
+
body["interval"] = self.interval
|
|
7309
|
+
return body
|
|
7310
|
+
|
|
7311
|
+
@classmethod
|
|
7312
|
+
def from_dict(cls, d: Dict[str, Any]) -> TaskTimeOverRange:
|
|
7313
|
+
"""Deserializes the TaskTimeOverRange from a dictionary."""
|
|
7314
|
+
return cls(entries=_repeated_dict(d, "entries", TaskTimeOverRangeEntry), interval=d.get("interval", None))
|
|
7315
|
+
|
|
7316
|
+
|
|
7317
|
+
@dataclass
|
|
7318
|
+
class TaskTimeOverRangeEntry:
|
|
7319
|
+
task_completed_time_ms: Optional[int] = None
|
|
7320
|
+
"""total task completion time in this time range, aggregated over all stages and jobs in the query"""
|
|
7321
|
+
|
|
7322
|
+
def as_dict(self) -> dict:
|
|
7323
|
+
"""Serializes the TaskTimeOverRangeEntry into a dictionary suitable for use as a JSON request body."""
|
|
7324
|
+
body = {}
|
|
7325
|
+
if self.task_completed_time_ms is not None:
|
|
7326
|
+
body["task_completed_time_ms"] = self.task_completed_time_ms
|
|
7327
|
+
return body
|
|
7328
|
+
|
|
7329
|
+
def as_shallow_dict(self) -> dict:
|
|
7330
|
+
"""Serializes the TaskTimeOverRangeEntry into a shallow dictionary of its immediate attributes."""
|
|
7331
|
+
body = {}
|
|
7332
|
+
if self.task_completed_time_ms is not None:
|
|
7333
|
+
body["task_completed_time_ms"] = self.task_completed_time_ms
|
|
7334
|
+
return body
|
|
7335
|
+
|
|
7336
|
+
@classmethod
|
|
7337
|
+
def from_dict(cls, d: Dict[str, Any]) -> TaskTimeOverRangeEntry:
|
|
7338
|
+
"""Deserializes the TaskTimeOverRangeEntry from a dictionary."""
|
|
7339
|
+
return cls(task_completed_time_ms=d.get("task_completed_time_ms", None))
|
|
7340
|
+
|
|
7341
|
+
|
|
7170
7342
|
@dataclass
|
|
7171
7343
|
class TerminationReason:
|
|
7172
7344
|
code: Optional[TerminationReasonCode] = None
|
|
@@ -7384,6 +7556,51 @@ class TransferOwnershipObjectId:
|
|
|
7384
7556
|
return cls(new_owner=d.get("new_owner", None))
|
|
7385
7557
|
|
|
7386
7558
|
|
|
7559
|
+
@dataclass
|
|
7560
|
+
class TransferOwnershipRequest:
|
|
7561
|
+
"""Transfer object ownership"""
|
|
7562
|
+
|
|
7563
|
+
new_owner: Optional[str] = None
|
|
7564
|
+
"""Email address for the new owner, who must exist in the workspace."""
|
|
7565
|
+
|
|
7566
|
+
object_id: Optional[TransferOwnershipObjectId] = None
|
|
7567
|
+
"""The ID of the object on which to change ownership."""
|
|
7568
|
+
|
|
7569
|
+
object_type: Optional[OwnableObjectType] = None
|
|
7570
|
+
"""The type of object on which to change ownership."""
|
|
7571
|
+
|
|
7572
|
+
def as_dict(self) -> dict:
|
|
7573
|
+
"""Serializes the TransferOwnershipRequest into a dictionary suitable for use as a JSON request body."""
|
|
7574
|
+
body = {}
|
|
7575
|
+
if self.new_owner is not None:
|
|
7576
|
+
body["new_owner"] = self.new_owner
|
|
7577
|
+
if self.object_id:
|
|
7578
|
+
body["objectId"] = self.object_id.as_dict()
|
|
7579
|
+
if self.object_type is not None:
|
|
7580
|
+
body["objectType"] = self.object_type.value
|
|
7581
|
+
return body
|
|
7582
|
+
|
|
7583
|
+
def as_shallow_dict(self) -> dict:
|
|
7584
|
+
"""Serializes the TransferOwnershipRequest into a shallow dictionary of its immediate attributes."""
|
|
7585
|
+
body = {}
|
|
7586
|
+
if self.new_owner is not None:
|
|
7587
|
+
body["new_owner"] = self.new_owner
|
|
7588
|
+
if self.object_id:
|
|
7589
|
+
body["objectId"] = self.object_id
|
|
7590
|
+
if self.object_type is not None:
|
|
7591
|
+
body["objectType"] = self.object_type
|
|
7592
|
+
return body
|
|
7593
|
+
|
|
7594
|
+
@classmethod
|
|
7595
|
+
def from_dict(cls, d: Dict[str, Any]) -> TransferOwnershipRequest:
|
|
7596
|
+
"""Deserializes the TransferOwnershipRequest from a dictionary."""
|
|
7597
|
+
return cls(
|
|
7598
|
+
new_owner=d.get("new_owner", None),
|
|
7599
|
+
object_id=_from_dict(d, "objectId", TransferOwnershipObjectId),
|
|
7600
|
+
object_type=_enum(d, "objectType", OwnableObjectType),
|
|
7601
|
+
)
|
|
7602
|
+
|
|
7603
|
+
|
|
7387
7604
|
@dataclass
|
|
7388
7605
|
class UpdateAlertRequest:
|
|
7389
7606
|
update_mask: str
|
|
@@ -8760,7 +8977,7 @@ class AlertsLegacyAPI:
|
|
|
8760
8977
|
|
|
8761
8978
|
|
|
8762
8979
|
class AlertsV2API:
|
|
8763
|
-
"""
|
|
8980
|
+
"""New version of SQL Alerts"""
|
|
8764
8981
|
|
|
8765
8982
|
def __init__(self, api_client):
|
|
8766
8983
|
self._api = api_client
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.56.0"
|
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=
|
|
2
|
+
databricks/sdk/__init__.py,sha256=PNn6lVdcn-IpZyM2Ll_VCmL1GapmIcpLWd3uZ7RXGSw,58527
|
|
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
|
|
6
6
|
databricks/sdk/casing.py,sha256=gZy-FlI7og5WNVX88Vb_7S1WeInwJLGws80CGj_9s48,1137
|
|
7
7
|
databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
|
|
8
|
-
databricks/sdk/config.py,sha256=
|
|
8
|
+
databricks/sdk/config.py,sha256=rebzZAw0aMSxSwBeXKsF2VE9X_Y33Kjvcd1PO-5wgc4,23401
|
|
9
9
|
databricks/sdk/core.py,sha256=6lsRl6BL3pLgqMMVFrOnQsx-RxxaJJL_Gt2jJfWUovs,3724
|
|
10
|
-
databricks/sdk/credentials_provider.py,sha256=
|
|
10
|
+
databricks/sdk/credentials_provider.py,sha256=9_P3N52S87xPwI_yUSajnT49--kJWLhKCoHpn5Dwzps,41305
|
|
11
11
|
databricks/sdk/data_plane.py,sha256=br5IPnOdE611IBubxP8xkUR9_qzbSRSYyVWSua6znWs,3109
|
|
12
12
|
databricks/sdk/dbutils.py,sha256=PoDIwNAYGZhVZC7krox7tsudUDNVSk0gsFjFWlKJXVk,15753
|
|
13
13
|
databricks/sdk/environments.py,sha256=9eVeb68cksqY2Lqwth2PJNmK0JEGdIjh-ebrrmUbqCc,3963
|
|
14
|
-
databricks/sdk/oauth.py,sha256=
|
|
14
|
+
databricks/sdk/oauth.py,sha256=wOcZVfi-Jd83XQDW1rbDIJbxFqJOjaeTSlUgQYD8VWQ,28406
|
|
15
|
+
databricks/sdk/oidc.py,sha256=A9umMkfnL-Nwfw2GljGxqTtkz7PjMTzltGaeckfrvT4,5749
|
|
15
16
|
databricks/sdk/oidc_token_supplier.py,sha256=QrO6J0QY4yFfcdQDL5h2OfxMxvBZJPtPmPeqLbPJ5Xw,1065
|
|
16
17
|
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
17
18
|
databricks/sdk/retries.py,sha256=7k2kEexGqGKXHNAWHbPFSZSugU8UIU0qtyly_hix22Q,2581
|
|
18
19
|
databricks/sdk/useragent.py,sha256=boEgzTv-Zmo6boipZKjSopNy0CXg4GShC1_lTKpJgqs,7361
|
|
19
|
-
databricks/sdk/version.py,sha256=
|
|
20
|
+
databricks/sdk/version.py,sha256=pLF99dIRilisWyZd9CliPPWqIlV81Xy8XtGEMuThTaM,23
|
|
20
21
|
databricks/sdk/_widgets/__init__.py,sha256=VhI-VvLlr3rKUT1nbROslHJIbmZX_tPJ9rRhrdFsYUA,2811
|
|
21
22
|
databricks/sdk/_widgets/default_widgets_utils.py,sha256=_hwCbptLbRzWEmknco0H1wQNAYcuy2pjFO9NiRbvFeo,1127
|
|
22
23
|
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=mg3rEPG9z76e0yVjGgcLybUvd_zSuN5ziGeKiZ-c8Ew,2927
|
|
@@ -43,29 +44,32 @@ databricks/sdk/runtime/__init__.py,sha256=6nthZxeYY1HjHieQcP7kXVLIId7w2yfHpZRXXt
|
|
|
43
44
|
databricks/sdk/runtime/dbutils_stub.py,sha256=S_pgWyGmwp3Ay-pMDEXccYsPwNVqCtz7MpD3fZVlHUA,11408
|
|
44
45
|
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
46
|
databricks/sdk/service/_internal.py,sha256=PY83MPehEwGuMzCnyvolqglnfZeQ7-eS38kedTa7KDU,1985
|
|
47
|
+
databricks/sdk/service/aibuilder.py,sha256=u3WTVBm0sw8aeC9p4kfZAlHtl_6GU2DiNK_vUAMNgfk,12436
|
|
46
48
|
databricks/sdk/service/apps.py,sha256=az06ij0_I4G3UcdRs5Pob4uXn5EjJoysXl1F8rR_NQ4,58080
|
|
47
|
-
databricks/sdk/service/billing.py,sha256=
|
|
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=
|
|
52
|
-
databricks/sdk/service/
|
|
53
|
-
databricks/sdk/service/
|
|
54
|
-
databricks/sdk/service/
|
|
49
|
+
databricks/sdk/service/billing.py,sha256=fAJQNJcFSMwIYlAiX-s9S4FvWZfXE5niwNw7HI9nMUo,96079
|
|
50
|
+
databricks/sdk/service/catalog.py,sha256=ZcHscrNVi0T0gU0uLJXD0PpeEtz9_JXi0DuzoRuPwsk,625998
|
|
51
|
+
databricks/sdk/service/cleanrooms.py,sha256=mFg0hp7GtO_ZZBZ6p38Gx-ggMNUCJpuvITuh6n-zTLs,63702
|
|
52
|
+
databricks/sdk/service/compute.py,sha256=ZNERuPZGZJkNT54Ye9WJhh4ctEssIpcPIRo7eOO8RPg,570795
|
|
53
|
+
databricks/sdk/service/dashboards.py,sha256=aDDf23c7O4hAMlMzpAz4m1eSLgI2OjEjhE04PxpSTGc,103473
|
|
54
|
+
databricks/sdk/service/database.py,sha256=i-CPsMqX8RJnaa_Nr_J6CxDuoyhls-6rfsKxYToQ8D0,51164
|
|
55
|
+
databricks/sdk/service/files.py,sha256=rMu5rmlnhGr1Sic1XWOZi_Pnv-pARQfbumO50JxS4DA,46401
|
|
56
|
+
databricks/sdk/service/iam.py,sha256=ZURErK_Nd9aIuU1b2kGZZJg9tXBSfNBRC7QpozJBvwc,179241
|
|
57
|
+
databricks/sdk/service/jobs.py,sha256=KfYPBWfgll_LKXg8KgB_bhGiMqoAx2h7WfJoKsA1Efw,475787
|
|
55
58
|
databricks/sdk/service/marketplace.py,sha256=NLCJ7zb0Oj5nhLth9R1Szuz6fSSoxAnsKvFhKgx994s,175741
|
|
56
|
-
databricks/sdk/service/ml.py,sha256=
|
|
59
|
+
databricks/sdk/service/ml.py,sha256=orS3-xEJWtPibxshGDvyso4MtLdrc9UKGcff6bKlB3E,363830
|
|
57
60
|
databricks/sdk/service/oauth2.py,sha256=OMXkb5eo4D7WfCrxBlJeY_jVTHXdpZNJl-Sv8o25jxc,81101
|
|
58
|
-
databricks/sdk/service/pipelines.py,sha256=
|
|
59
|
-
databricks/sdk/service/provisioning.py,sha256
|
|
60
|
-
databricks/sdk/service/
|
|
61
|
-
databricks/sdk/service/
|
|
62
|
-
databricks/sdk/service/
|
|
63
|
-
databricks/sdk/service/
|
|
61
|
+
databricks/sdk/service/pipelines.py,sha256=OUdYMS9h1gxiwpK3OqaXNqJochCaByOuvQ_qBxxO4zA,176094
|
|
62
|
+
databricks/sdk/service/provisioning.py,sha256=CEzgilTXUNbLjDsvVPxC3mYsAVKHO4v0TnwSIgI373Q,169281
|
|
63
|
+
databricks/sdk/service/qualitymonitorv2.py,sha256=lhnw_7wyr3Uj0ywCNE15SUQXg-Qnhz_sJ_wFcXP5w9w,9991
|
|
64
|
+
databricks/sdk/service/serving.py,sha256=hrGH4qCSJooHSdUhqyMUXJKfPg126q53cpHpXuWMBUI,231597
|
|
65
|
+
databricks/sdk/service/settings.py,sha256=KmPLdnoJoOK7flmuMvrPQvgPCaPiEuQqTj9G4emIFSM,441251
|
|
66
|
+
databricks/sdk/service/sharing.py,sha256=ugzmeXN-1PMZS58JHaQZzUSyxmSMebO3dHCsFGbrmkc,160229
|
|
67
|
+
databricks/sdk/service/sql.py,sha256=xCj080qniFiVafkt-pne71vfd45sKgLARpObCIDyt90,451364
|
|
64
68
|
databricks/sdk/service/vectorsearch.py,sha256=Y1yUJwoY7rg6HWKh7_90aJzIWNiWEG2WUw0i1n3KH7I,86701
|
|
65
69
|
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.
|
|
70
|
+
databricks_sdk-0.56.0.dist-info/licenses/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
71
|
+
databricks_sdk-0.56.0.dist-info/licenses/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
|
|
72
|
+
databricks_sdk-0.56.0.dist-info/METADATA,sha256=XmtTcmgu2d7o6z-RTevL5mQ5D_FsyTVa-oCXcat2ChQ,39397
|
|
73
|
+
databricks_sdk-0.56.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
74
|
+
databricks_sdk-0.56.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
75
|
+
databricks_sdk-0.56.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|