databricks-sdk 0.33.0__py3-none-any.whl → 0.34.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 +1 -0
- databricks/sdk/_base_client.py +323 -0
- databricks/sdk/core.py +25 -292
- databricks/sdk/mixins/files.py +9 -9
- databricks/sdk/service/apps.py +212 -7
- databricks/sdk/service/catalog.py +5 -2
- databricks/sdk/service/dashboards.py +2 -2
- databricks/sdk/service/jobs.py +6 -0
- databricks/sdk/service/settings.py +179 -0
- databricks/sdk/service/sharing.py +1 -1
- databricks/sdk/service/sql.py +7 -3
- databricks/sdk/service/workspace.py +2 -2
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.33.0.dist-info → databricks_sdk-0.34.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.33.0.dist-info → databricks_sdk-0.34.0.dist-info}/RECORD +19 -18
- {databricks_sdk-0.33.0.dist-info → databricks_sdk-0.34.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.33.0.dist-info → databricks_sdk-0.34.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.33.0.dist-info → databricks_sdk-0.34.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.33.0.dist-info → databricks_sdk-0.34.0.dist-info}/top_level.txt +0 -0
|
@@ -720,6 +720,30 @@ class DeleteDisableLegacyAccessResponse:
|
|
|
720
720
|
return cls(etag=d.get('etag', None))
|
|
721
721
|
|
|
722
722
|
|
|
723
|
+
@dataclass
|
|
724
|
+
class DeleteDisableLegacyDbfsResponse:
|
|
725
|
+
"""The etag is returned."""
|
|
726
|
+
|
|
727
|
+
etag: str
|
|
728
|
+
"""etag used for versioning. The response is at least as fresh as the eTag provided. This is used
|
|
729
|
+
for optimistic concurrency control as a way to help prevent simultaneous writes of a setting
|
|
730
|
+
overwriting each other. It is strongly suggested that systems make use of the etag in the read
|
|
731
|
+
-> delete pattern to perform setting deletions in order to avoid race conditions. That is, get
|
|
732
|
+
an etag from a GET request, and pass it with the DELETE request to identify the rule set version
|
|
733
|
+
you are deleting."""
|
|
734
|
+
|
|
735
|
+
def as_dict(self) -> dict:
|
|
736
|
+
"""Serializes the DeleteDisableLegacyDbfsResponse into a dictionary suitable for use as a JSON request body."""
|
|
737
|
+
body = {}
|
|
738
|
+
if self.etag is not None: body['etag'] = self.etag
|
|
739
|
+
return body
|
|
740
|
+
|
|
741
|
+
@classmethod
|
|
742
|
+
def from_dict(cls, d: Dict[str, any]) -> DeleteDisableLegacyDbfsResponse:
|
|
743
|
+
"""Deserializes the DeleteDisableLegacyDbfsResponse from a dictionary."""
|
|
744
|
+
return cls(etag=d.get('etag', None))
|
|
745
|
+
|
|
746
|
+
|
|
723
747
|
@dataclass
|
|
724
748
|
class DeleteDisableLegacyFeaturesResponse:
|
|
725
749
|
"""The etag is returned."""
|
|
@@ -863,6 +887,40 @@ class DisableLegacyAccess:
|
|
|
863
887
|
setting_name=d.get('setting_name', None))
|
|
864
888
|
|
|
865
889
|
|
|
890
|
+
@dataclass
|
|
891
|
+
class DisableLegacyDbfs:
|
|
892
|
+
disable_legacy_dbfs: BooleanMessage
|
|
893
|
+
|
|
894
|
+
etag: Optional[str] = None
|
|
895
|
+
"""etag used for versioning. The response is at least as fresh as the eTag provided. This is used
|
|
896
|
+
for optimistic concurrency control as a way to help prevent simultaneous writes of a setting
|
|
897
|
+
overwriting each other. It is strongly suggested that systems make use of the etag in the read
|
|
898
|
+
-> update pattern to perform setting updates in order to avoid race conditions. That is, get an
|
|
899
|
+
etag from a GET request, and pass it with the PATCH request to identify the setting version you
|
|
900
|
+
are updating."""
|
|
901
|
+
|
|
902
|
+
setting_name: Optional[str] = None
|
|
903
|
+
"""Name of the corresponding setting. This field is populated in the response, but it will not be
|
|
904
|
+
respected even if it's set in the request body. The setting name in the path parameter will be
|
|
905
|
+
respected instead. Setting name is required to be 'default' if the setting only has one instance
|
|
906
|
+
per workspace."""
|
|
907
|
+
|
|
908
|
+
def as_dict(self) -> dict:
|
|
909
|
+
"""Serializes the DisableLegacyDbfs into a dictionary suitable for use as a JSON request body."""
|
|
910
|
+
body = {}
|
|
911
|
+
if self.disable_legacy_dbfs: body['disable_legacy_dbfs'] = self.disable_legacy_dbfs.as_dict()
|
|
912
|
+
if self.etag is not None: body['etag'] = self.etag
|
|
913
|
+
if self.setting_name is not None: body['setting_name'] = self.setting_name
|
|
914
|
+
return body
|
|
915
|
+
|
|
916
|
+
@classmethod
|
|
917
|
+
def from_dict(cls, d: Dict[str, any]) -> DisableLegacyDbfs:
|
|
918
|
+
"""Deserializes the DisableLegacyDbfs from a dictionary."""
|
|
919
|
+
return cls(disable_legacy_dbfs=_from_dict(d, 'disable_legacy_dbfs', BooleanMessage),
|
|
920
|
+
etag=d.get('etag', None),
|
|
921
|
+
setting_name=d.get('setting_name', None))
|
|
922
|
+
|
|
923
|
+
|
|
866
924
|
@dataclass
|
|
867
925
|
class DisableLegacyFeatures:
|
|
868
926
|
disable_legacy_features: BooleanMessage
|
|
@@ -2534,6 +2592,36 @@ class UpdateDisableLegacyAccessRequest:
|
|
|
2534
2592
|
setting=_from_dict(d, 'setting', DisableLegacyAccess))
|
|
2535
2593
|
|
|
2536
2594
|
|
|
2595
|
+
@dataclass
|
|
2596
|
+
class UpdateDisableLegacyDbfsRequest:
|
|
2597
|
+
"""Details required to update a setting."""
|
|
2598
|
+
|
|
2599
|
+
allow_missing: bool
|
|
2600
|
+
"""This should always be set to true for Settings API. Added for AIP compliance."""
|
|
2601
|
+
|
|
2602
|
+
setting: DisableLegacyDbfs
|
|
2603
|
+
|
|
2604
|
+
field_mask: str
|
|
2605
|
+
"""Field mask is required to be passed into the PATCH request. Field mask specifies which fields of
|
|
2606
|
+
the setting payload will be updated. The field mask needs to be supplied as single string. To
|
|
2607
|
+
specify multiple fields in the field mask, use comma as the separator (no space)."""
|
|
2608
|
+
|
|
2609
|
+
def as_dict(self) -> dict:
|
|
2610
|
+
"""Serializes the UpdateDisableLegacyDbfsRequest into a dictionary suitable for use as a JSON request body."""
|
|
2611
|
+
body = {}
|
|
2612
|
+
if self.allow_missing is not None: body['allow_missing'] = self.allow_missing
|
|
2613
|
+
if self.field_mask is not None: body['field_mask'] = self.field_mask
|
|
2614
|
+
if self.setting: body['setting'] = self.setting.as_dict()
|
|
2615
|
+
return body
|
|
2616
|
+
|
|
2617
|
+
@classmethod
|
|
2618
|
+
def from_dict(cls, d: Dict[str, any]) -> UpdateDisableLegacyDbfsRequest:
|
|
2619
|
+
"""Deserializes the UpdateDisableLegacyDbfsRequest from a dictionary."""
|
|
2620
|
+
return cls(allow_missing=d.get('allow_missing', None),
|
|
2621
|
+
field_mask=d.get('field_mask', None),
|
|
2622
|
+
setting=_from_dict(d, 'setting', DisableLegacyDbfs))
|
|
2623
|
+
|
|
2624
|
+
|
|
2537
2625
|
@dataclass
|
|
2538
2626
|
class UpdateDisableLegacyFeaturesRequest:
|
|
2539
2627
|
"""Details required to update a setting."""
|
|
@@ -3447,6 +3535,91 @@ class DisableLegacyAccessAPI:
|
|
|
3447
3535
|
return DisableLegacyAccess.from_dict(res)
|
|
3448
3536
|
|
|
3449
3537
|
|
|
3538
|
+
class DisableLegacyDbfsAPI:
|
|
3539
|
+
"""When this setting is on, access to DBFS root and DBFS mounts is disallowed (as well as creation of new
|
|
3540
|
+
mounts). When the setting is off, all DBFS functionality is enabled"""
|
|
3541
|
+
|
|
3542
|
+
def __init__(self, api_client):
|
|
3543
|
+
self._api = api_client
|
|
3544
|
+
|
|
3545
|
+
def delete(self, *, etag: Optional[str] = None) -> DeleteDisableLegacyDbfsResponse:
|
|
3546
|
+
"""Delete the disable legacy DBFS setting.
|
|
3547
|
+
|
|
3548
|
+
Deletes the disable legacy DBFS setting for a workspace, reverting back to the default.
|
|
3549
|
+
|
|
3550
|
+
:param etag: str (optional)
|
|
3551
|
+
etag used for versioning. The response is at least as fresh as the eTag provided. This is used for
|
|
3552
|
+
optimistic concurrency control as a way to help prevent simultaneous writes of a setting overwriting
|
|
3553
|
+
each other. It is strongly suggested that systems make use of the etag in the read -> delete pattern
|
|
3554
|
+
to perform setting deletions in order to avoid race conditions. That is, get an etag from a GET
|
|
3555
|
+
request, and pass it with the DELETE request to identify the rule set version you are deleting.
|
|
3556
|
+
|
|
3557
|
+
:returns: :class:`DeleteDisableLegacyDbfsResponse`
|
|
3558
|
+
"""
|
|
3559
|
+
|
|
3560
|
+
query = {}
|
|
3561
|
+
if etag is not None: query['etag'] = etag
|
|
3562
|
+
headers = {'Accept': 'application/json', }
|
|
3563
|
+
|
|
3564
|
+
res = self._api.do('DELETE',
|
|
3565
|
+
'/api/2.0/settings/types/disable_legacy_dbfs/names/default',
|
|
3566
|
+
query=query,
|
|
3567
|
+
headers=headers)
|
|
3568
|
+
return DeleteDisableLegacyDbfsResponse.from_dict(res)
|
|
3569
|
+
|
|
3570
|
+
def get(self, *, etag: Optional[str] = None) -> DisableLegacyDbfs:
|
|
3571
|
+
"""Get the disable legacy DBFS setting.
|
|
3572
|
+
|
|
3573
|
+
Gets the disable legacy DBFS setting.
|
|
3574
|
+
|
|
3575
|
+
:param etag: str (optional)
|
|
3576
|
+
etag used for versioning. The response is at least as fresh as the eTag provided. This is used for
|
|
3577
|
+
optimistic concurrency control as a way to help prevent simultaneous writes of a setting overwriting
|
|
3578
|
+
each other. It is strongly suggested that systems make use of the etag in the read -> delete pattern
|
|
3579
|
+
to perform setting deletions in order to avoid race conditions. That is, get an etag from a GET
|
|
3580
|
+
request, and pass it with the DELETE request to identify the rule set version you are deleting.
|
|
3581
|
+
|
|
3582
|
+
:returns: :class:`DisableLegacyDbfs`
|
|
3583
|
+
"""
|
|
3584
|
+
|
|
3585
|
+
query = {}
|
|
3586
|
+
if etag is not None: query['etag'] = etag
|
|
3587
|
+
headers = {'Accept': 'application/json', }
|
|
3588
|
+
|
|
3589
|
+
res = self._api.do('GET',
|
|
3590
|
+
'/api/2.0/settings/types/disable_legacy_dbfs/names/default',
|
|
3591
|
+
query=query,
|
|
3592
|
+
headers=headers)
|
|
3593
|
+
return DisableLegacyDbfs.from_dict(res)
|
|
3594
|
+
|
|
3595
|
+
def update(self, allow_missing: bool, setting: DisableLegacyDbfs, field_mask: str) -> DisableLegacyDbfs:
|
|
3596
|
+
"""Update the disable legacy DBFS setting.
|
|
3597
|
+
|
|
3598
|
+
Updates the disable legacy DBFS setting for the workspace.
|
|
3599
|
+
|
|
3600
|
+
:param allow_missing: bool
|
|
3601
|
+
This should always be set to true for Settings API. Added for AIP compliance.
|
|
3602
|
+
:param setting: :class:`DisableLegacyDbfs`
|
|
3603
|
+
:param field_mask: str
|
|
3604
|
+
Field mask is required to be passed into the PATCH request. Field mask specifies which fields of the
|
|
3605
|
+
setting payload will be updated. The field mask needs to be supplied as single string. To specify
|
|
3606
|
+
multiple fields in the field mask, use comma as the separator (no space).
|
|
3607
|
+
|
|
3608
|
+
:returns: :class:`DisableLegacyDbfs`
|
|
3609
|
+
"""
|
|
3610
|
+
body = {}
|
|
3611
|
+
if allow_missing is not None: body['allow_missing'] = allow_missing
|
|
3612
|
+
if field_mask is not None: body['field_mask'] = field_mask
|
|
3613
|
+
if setting is not None: body['setting'] = setting.as_dict()
|
|
3614
|
+
headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
|
|
3615
|
+
|
|
3616
|
+
res = self._api.do('PATCH',
|
|
3617
|
+
'/api/2.0/settings/types/disable_legacy_dbfs/names/default',
|
|
3618
|
+
body=body,
|
|
3619
|
+
headers=headers)
|
|
3620
|
+
return DisableLegacyDbfs.from_dict(res)
|
|
3621
|
+
|
|
3622
|
+
|
|
3450
3623
|
class DisableLegacyFeaturesAPI:
|
|
3451
3624
|
"""Disable legacy features for new Databricks workspaces.
|
|
3452
3625
|
|
|
@@ -4411,6 +4584,7 @@ class SettingsAPI:
|
|
|
4411
4584
|
self._compliance_security_profile = ComplianceSecurityProfileAPI(self._api)
|
|
4412
4585
|
self._default_namespace = DefaultNamespaceAPI(self._api)
|
|
4413
4586
|
self._disable_legacy_access = DisableLegacyAccessAPI(self._api)
|
|
4587
|
+
self._disable_legacy_dbfs = DisableLegacyDbfsAPI(self._api)
|
|
4414
4588
|
self._enhanced_security_monitoring = EnhancedSecurityMonitoringAPI(self._api)
|
|
4415
4589
|
self._restrict_workspace_admins = RestrictWorkspaceAdminsAPI(self._api)
|
|
4416
4590
|
|
|
@@ -4434,6 +4608,11 @@ class SettingsAPI:
|
|
|
4434
4608
|
"""'Disabling legacy access' has the following impacts: 1."""
|
|
4435
4609
|
return self._disable_legacy_access
|
|
4436
4610
|
|
|
4611
|
+
@property
|
|
4612
|
+
def disable_legacy_dbfs(self) -> DisableLegacyDbfsAPI:
|
|
4613
|
+
"""When this setting is on, access to DBFS root and DBFS mounts is disallowed (as well as creation of new mounts)."""
|
|
4614
|
+
return self._disable_legacy_dbfs
|
|
4615
|
+
|
|
4437
4616
|
@property
|
|
4438
4617
|
def enhanced_security_monitoring(self) -> EnhancedSecurityMonitoringAPI:
|
|
4439
4618
|
"""Controls whether enhanced security monitoring is enabled for the current workspace."""
|
|
@@ -2496,7 +2496,7 @@ class SharesAPI:
|
|
|
2496
2496
|
f'/api/2.1/unity-catalog/shares/{name}/permissions',
|
|
2497
2497
|
query=query,
|
|
2498
2498
|
headers=headers)
|
|
2499
|
-
return PermissionsList.from_dict(res)
|
|
2499
|
+
return catalog.PermissionsList.from_dict(res)
|
|
2500
2500
|
|
|
2501
2501
|
def update(self,
|
|
2502
2502
|
name: str,
|
databricks/sdk/service/sql.py
CHANGED
|
@@ -454,6 +454,9 @@ class CancelExecutionResponse:
|
|
|
454
454
|
|
|
455
455
|
@dataclass
|
|
456
456
|
class Channel:
|
|
457
|
+
"""Configures the channel name and DBSQL version of the warehouse. CHANNEL_NAME_CUSTOM should be
|
|
458
|
+
chosen only when `dbsql_version` is specified."""
|
|
459
|
+
|
|
457
460
|
dbsql_version: Optional[str] = None
|
|
458
461
|
|
|
459
462
|
name: Optional[ChannelName] = None
|
|
@@ -499,7 +502,6 @@ class ChannelName(Enum):
|
|
|
499
502
|
CHANNEL_NAME_CURRENT = 'CHANNEL_NAME_CURRENT'
|
|
500
503
|
CHANNEL_NAME_CUSTOM = 'CHANNEL_NAME_CUSTOM'
|
|
501
504
|
CHANNEL_NAME_PREVIEW = 'CHANNEL_NAME_PREVIEW'
|
|
502
|
-
CHANNEL_NAME_PREVIOUS = 'CHANNEL_NAME_PREVIOUS'
|
|
503
505
|
CHANNEL_NAME_UNSPECIFIED = 'CHANNEL_NAME_UNSPECIFIED'
|
|
504
506
|
|
|
505
507
|
|
|
@@ -827,7 +829,8 @@ class CreateWarehouseRequest:
|
|
|
827
829
|
"""The amount of time in minutes that a SQL warehouse must be idle (i.e., no RUNNING queries)
|
|
828
830
|
before it is automatically stopped.
|
|
829
831
|
|
|
830
|
-
Supported values: - Must be
|
|
832
|
+
Supported values: - Must be >= 0 mins for serverless warehouses - Must be == 0 or >= 10 mins for
|
|
833
|
+
non-serverless warehouses - 0 indicates no autostop.
|
|
831
834
|
|
|
832
835
|
Defaults to 120 mins"""
|
|
833
836
|
|
|
@@ -6866,7 +6869,8 @@ class WarehousesAPI:
|
|
|
6866
6869
|
The amount of time in minutes that a SQL warehouse must be idle (i.e., no RUNNING queries) before it
|
|
6867
6870
|
is automatically stopped.
|
|
6868
6871
|
|
|
6869
|
-
Supported values: - Must be
|
|
6872
|
+
Supported values: - Must be >= 0 mins for serverless warehouses - Must be == 0 or >= 10 mins for
|
|
6873
|
+
non-serverless warehouses - 0 indicates no autostop.
|
|
6870
6874
|
|
|
6871
6875
|
Defaults to 120 mins
|
|
6872
6876
|
:param channel: :class:`Channel` (optional)
|
|
@@ -1862,8 +1862,8 @@ class ReposAPI:
|
|
|
1862
1862
|
path_prefix: Optional[str] = None) -> Iterator[RepoInfo]:
|
|
1863
1863
|
"""Get repos.
|
|
1864
1864
|
|
|
1865
|
-
Returns repos that the calling user has Manage permissions on.
|
|
1866
|
-
|
|
1865
|
+
Returns repos that the calling user has Manage permissions on. Use `next_page_token` to iterate
|
|
1866
|
+
through additional pages.
|
|
1867
1867
|
|
|
1868
1868
|
:param next_page_token: str (optional)
|
|
1869
1869
|
Token used to get the next page of results. If not specified, returns the first page of results as
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.34.0'
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=
|
|
2
|
+
databricks/sdk/__init__.py,sha256=rMIBDVlIk-GkKX1swmr3JFWl7vLgKm1awUI3HSe97Qg,48988
|
|
3
|
+
databricks/sdk/_base_client.py,sha256=5fe2Yw6hWedoUGhSf0lR8W7a80Uv081Jg-NUknnI2WM,13419
|
|
3
4
|
databricks/sdk/_property.py,sha256=sGjsipeFrjMBSVPjtIb0HNCRcMIhFpVx6wq4BkC3LWs,1636
|
|
4
5
|
databricks/sdk/azure.py,sha256=8P7nEdun0hbQCap9Ojo7yZse_JHxnhYsE6ApojnPz7Q,1009
|
|
5
6
|
databricks/sdk/casing.py,sha256=NKYPrfPbQjM7lU4hhNQK3z1jb_VEA29BfH4FEdby2tg,1137
|
|
6
7
|
databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
|
|
7
8
|
databricks/sdk/config.py,sha256=UaD-UcgvvohbrDmvbQgUt-KFd8FP1w3iWvaocsoIz9k,21169
|
|
8
|
-
databricks/sdk/core.py,sha256=
|
|
9
|
+
databricks/sdk/core.py,sha256=s8W2UlRg8y9vCencdiFocYs49hLS3bltswLi00_cn38,4086
|
|
9
10
|
databricks/sdk/credentials_provider.py,sha256=H_eHS2uMf8avNHCfES6xxS9ybSY5_6Ipt-MxA8bKOVo,34720
|
|
10
11
|
databricks/sdk/data_plane.py,sha256=Er2z2fT-KVupJKzGozGGZ-jCQ3AmDWq-DZppahIK6tU,2591
|
|
11
12
|
databricks/sdk/dbutils.py,sha256=HFCuB-el6SFKhF8qRfJxYANtyLTm-VG9GtQuQgZXFkM,15741
|
|
@@ -14,7 +15,7 @@ databricks/sdk/oauth.py,sha256=KzcJPYLL3JL6RDvf_Q8SDAaF9xSaoYNCRD4rYInZDuo,18319
|
|
|
14
15
|
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
15
16
|
databricks/sdk/retries.py,sha256=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
|
|
16
17
|
databricks/sdk/useragent.py,sha256=I2-VnJSE6cg9QV4GXkoQSkHsEB3bDvRGgkawbBNl4G0,5540
|
|
17
|
-
databricks/sdk/version.py,sha256=
|
|
18
|
+
databricks/sdk/version.py,sha256=S5D-7EkjQ3EiK5P2s43hE2gFoFYT-89k9cDOnkCc02Q,23
|
|
18
19
|
databricks/sdk/_widgets/__init__.py,sha256=Qm3JB8LmdPgEn_-VgxKkodTO4gn6OdaDPwsYcDmeIRI,2667
|
|
19
20
|
databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
|
|
20
21
|
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
|
|
@@ -32,34 +33,34 @@ databricks/sdk/logger/__init__.py,sha256=0_sSQfDkaFGqMHZUVw-g_Ax-RFmOv0Z6NjxCVAe
|
|
|
32
33
|
databricks/sdk/logger/round_trip_logger.py,sha256=SMtHDfdqy5Noge2iZO-LpuEm92rz3A5ANfzRzPe6qEU,4794
|
|
33
34
|
databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
35
|
databricks/sdk/mixins/compute.py,sha256=khb00BzBckc4RLUF4-GnNMCSO5lXKt_XYMM3IhiUxlA,11237
|
|
35
|
-
databricks/sdk/mixins/files.py,sha256=
|
|
36
|
+
databricks/sdk/mixins/files.py,sha256=bLGFu1kVIQECTmuc_9jUf-n_Cth4COBMbmKqAYxkEkM,20542
|
|
36
37
|
databricks/sdk/mixins/workspace.py,sha256=dWMNvuEi8jJ5wMhrDt1LiqxNdWSsmEuDTzrcZR-eJzY,4896
|
|
37
38
|
databricks/sdk/runtime/__init__.py,sha256=9NnZkBzeZXZRQxcE1qKzAszQEzcpIgpL7lQzW3_kxEU,7266
|
|
38
39
|
databricks/sdk/runtime/dbutils_stub.py,sha256=UFbRZF-bBcwxjbv_pxma00bjNtktLLaYpo8oHRc4-9g,11421
|
|
39
40
|
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
41
|
databricks/sdk/service/_internal.py,sha256=nWbJfW5eJCQgAZ3TmA26xoWb6SNZ5N76ZA8bO1N4AsU,1961
|
|
41
|
-
databricks/sdk/service/apps.py,sha256=
|
|
42
|
+
databricks/sdk/service/apps.py,sha256=3U36qBoH8CO0Eupr5V01BDDyVPmDVkNLudwMIHlhM1c,48880
|
|
42
43
|
databricks/sdk/service/billing.py,sha256=Ru6GumI-M4_X71HTMj2VSVBQ7tRMTrwKzhdwNyiC3fA,69733
|
|
43
|
-
databricks/sdk/service/catalog.py,sha256=
|
|
44
|
+
databricks/sdk/service/catalog.py,sha256=VivdwYHn_pO9PqBauscqHZem-BgZXXkdnx617FLB1Ho,447776
|
|
44
45
|
databricks/sdk/service/compute.py,sha256=5vVDW2F8bh5E-EeIomWIRr3Mk_rhIAMnlOEG3IH30DQ,436163
|
|
45
|
-
databricks/sdk/service/dashboards.py,sha256=
|
|
46
|
+
databricks/sdk/service/dashboards.py,sha256=fAeYWbcJMuvCsSQTJP0WV27TcVqDMO0_me4VJ3cXYns,77965
|
|
46
47
|
databricks/sdk/service/files.py,sha256=VCt83YSI9rhQexmxaQdrUXHq2UCYfZcDMLvJx5X6n1M,38162
|
|
47
48
|
databricks/sdk/service/iam.py,sha256=P_2k7_MDV-Iw4heUD78i3XQriSoYZX1Jhhfnn4gS4Zk,148548
|
|
48
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
49
|
+
databricks/sdk/service/jobs.py,sha256=MnIWuIM4o_OMueg_lFYfQJdSCdrNO58K18g1zwsq0jc,334236
|
|
49
50
|
databricks/sdk/service/marketplace.py,sha256=Fgk_8V9zbQ8QcNPUw-yZehHv8LgnDtFJUe-YixjxkYo,136405
|
|
50
51
|
databricks/sdk/service/ml.py,sha256=KG5nG9ap1IJejha2JFhX13f61C6tShO0AnHvLNDz0KE,236858
|
|
51
52
|
databricks/sdk/service/oauth2.py,sha256=67pr6gUnYwO6BaGNQfjW1qvcEB3ejdNbI9Pmvqs5bSE,39928
|
|
52
53
|
databricks/sdk/service/pipelines.py,sha256=EaANZvXcGVg0ynTRvznL8e0tlVK4aqJmpMJzSedXvzU,122511
|
|
53
54
|
databricks/sdk/service/provisioning.py,sha256=DP4Df4X-p0JEUk4zAJQhjX_wxpMi673OKLXFhxl6YSE,142678
|
|
54
55
|
databricks/sdk/service/serving.py,sha256=IBDul9fW1dYSINYkV4lOFamM6SF7Wy3ru5dUT_B2t0w,156476
|
|
55
|
-
databricks/sdk/service/settings.py,sha256=
|
|
56
|
-
databricks/sdk/service/sharing.py,sha256=
|
|
57
|
-
databricks/sdk/service/sql.py,sha256=
|
|
56
|
+
databricks/sdk/service/settings.py,sha256=pYIm3yjamDoiZ2z54AtuQDS-Wj2dIEdTJBmZkBocKNE,221129
|
|
57
|
+
databricks/sdk/service/sharing.py,sha256=R6MoLh8BZ01OrezAsss53rY2mhbJKGkq-fm7nrYtFkQ,113261
|
|
58
|
+
databricks/sdk/service/sql.py,sha256=OlkRCVOBWC6BPNFLKLdsHyCH0so2EJhlYNjVvoyBrn4,325176
|
|
58
59
|
databricks/sdk/service/vectorsearch.py,sha256=a5Y4vrS_oAJJqa69XwKMANhGuZi5glS0PSXBXz1bKGU,62961
|
|
59
|
-
databricks/sdk/service/workspace.py,sha256=
|
|
60
|
-
databricks_sdk-0.
|
|
61
|
-
databricks_sdk-0.
|
|
62
|
-
databricks_sdk-0.
|
|
63
|
-
databricks_sdk-0.
|
|
64
|
-
databricks_sdk-0.
|
|
65
|
-
databricks_sdk-0.
|
|
60
|
+
databricks/sdk/service/workspace.py,sha256=b5EWqWB2fVX15eGw_Dkl554Jug0tuNag5ZpkDFn53ec,106659
|
|
61
|
+
databricks_sdk-0.34.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
62
|
+
databricks_sdk-0.34.0.dist-info/METADATA,sha256=x7cAN5zLAn5aMvxfLqfpsfMMGm4hJvA7nlosiJQjC6Q,37967
|
|
63
|
+
databricks_sdk-0.34.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
|
|
64
|
+
databricks_sdk-0.34.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
65
|
+
databricks_sdk-0.34.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
66
|
+
databricks_sdk-0.34.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|