databricks-sdk 0.41.0__py3-none-any.whl → 0.42.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.

@@ -14,6 +14,48 @@ _LOG = logging.getLogger('databricks.sdk')
14
14
  # all definitions in this file are in alphabetical order
15
15
 
16
16
 
17
+ @dataclass
18
+ class AccountIpAccessEnable:
19
+ acct_ip_acl_enable: BooleanMessage
20
+
21
+ etag: Optional[str] = None
22
+ """etag used for versioning. The response is at least as fresh as the eTag provided. This is used
23
+ for optimistic concurrency control as a way to help prevent simultaneous writes of a setting
24
+ overwriting each other. It is strongly suggested that systems make use of the etag in the read
25
+ -> update pattern to perform setting updates in order to avoid race conditions. That is, get an
26
+ etag from a GET request, and pass it with the PATCH request to identify the setting version you
27
+ are updating."""
28
+
29
+ setting_name: Optional[str] = None
30
+ """Name of the corresponding setting. This field is populated in the response, but it will not be
31
+ respected even if it's set in the request body. The setting name in the path parameter will be
32
+ respected instead. Setting name is required to be 'default' if the setting only has one instance
33
+ per workspace."""
34
+
35
+ def as_dict(self) -> dict:
36
+ """Serializes the AccountIpAccessEnable into a dictionary suitable for use as a JSON request body."""
37
+ body = {}
38
+ if self.acct_ip_acl_enable: body['acct_ip_acl_enable'] = self.acct_ip_acl_enable.as_dict()
39
+ if self.etag is not None: body['etag'] = self.etag
40
+ if self.setting_name is not None: body['setting_name'] = self.setting_name
41
+ return body
42
+
43
+ def as_shallow_dict(self) -> dict:
44
+ """Serializes the AccountIpAccessEnable into a shallow dictionary of its immediate attributes."""
45
+ body = {}
46
+ if self.acct_ip_acl_enable: body['acct_ip_acl_enable'] = self.acct_ip_acl_enable
47
+ if self.etag is not None: body['etag'] = self.etag
48
+ if self.setting_name is not None: body['setting_name'] = self.setting_name
49
+ return body
50
+
51
+ @classmethod
52
+ def from_dict(cls, d: Dict[str, any]) -> AccountIpAccessEnable:
53
+ """Deserializes the AccountIpAccessEnable from a dictionary."""
54
+ return cls(acct_ip_acl_enable=_from_dict(d, 'acct_ip_acl_enable', BooleanMessage),
55
+ etag=d.get('etag', None),
56
+ setting_name=d.get('setting_name', None))
57
+
58
+
17
59
  @dataclass
18
60
  class AibiDashboardEmbeddingAccessPolicy:
19
61
  access_policy_type: AibiDashboardEmbeddingAccessPolicyAccessPolicyType
@@ -991,6 +1033,36 @@ class DefaultNamespaceSetting:
991
1033
  setting_name=d.get('setting_name', None))
992
1034
 
993
1035
 
1036
+ @dataclass
1037
+ class DeleteAccountIpAccessEnableResponse:
1038
+ """The etag is returned."""
1039
+
1040
+ etag: str
1041
+ """etag used for versioning. The response is at least as fresh as the eTag provided. This is used
1042
+ for optimistic concurrency control as a way to help prevent simultaneous writes of a setting
1043
+ overwriting each other. It is strongly suggested that systems make use of the etag in the read
1044
+ -> delete pattern to perform setting deletions in order to avoid race conditions. That is, get
1045
+ an etag from a GET request, and pass it with the DELETE request to identify the rule set version
1046
+ you are deleting."""
1047
+
1048
+ def as_dict(self) -> dict:
1049
+ """Serializes the DeleteAccountIpAccessEnableResponse into a dictionary suitable for use as a JSON request body."""
1050
+ body = {}
1051
+ if self.etag is not None: body['etag'] = self.etag
1052
+ return body
1053
+
1054
+ def as_shallow_dict(self) -> dict:
1055
+ """Serializes the DeleteAccountIpAccessEnableResponse into a shallow dictionary of its immediate attributes."""
1056
+ body = {}
1057
+ if self.etag is not None: body['etag'] = self.etag
1058
+ return body
1059
+
1060
+ @classmethod
1061
+ def from_dict(cls, d: Dict[str, any]) -> DeleteAccountIpAccessEnableResponse:
1062
+ """Deserializes the DeleteAccountIpAccessEnableResponse from a dictionary."""
1063
+ return cls(etag=d.get('etag', None))
1064
+
1065
+
994
1066
  @dataclass
995
1067
  class DeleteAibiDashboardEmbeddingAccessPolicySettingResponse:
996
1068
  """The etag is returned."""
@@ -3556,9 +3628,48 @@ class TokenType(Enum):
3556
3628
  """The type of token request. As of now, only `AZURE_ACTIVE_DIRECTORY_TOKEN` is supported."""
3557
3629
 
3558
3630
  ARCLIGHT_AZURE_EXCHANGE_TOKEN = 'ARCLIGHT_AZURE_EXCHANGE_TOKEN'
3631
+ ARCLIGHT_AZURE_EXCHANGE_TOKEN_WITH_USER_DELEGATION_KEY = 'ARCLIGHT_AZURE_EXCHANGE_TOKEN_WITH_USER_DELEGATION_KEY'
3559
3632
  AZURE_ACTIVE_DIRECTORY_TOKEN = 'AZURE_ACTIVE_DIRECTORY_TOKEN'
3560
3633
 
3561
3634
 
3635
+ @dataclass
3636
+ class UpdateAccountIpAccessEnableRequest:
3637
+ """Details required to update a setting."""
3638
+
3639
+ allow_missing: bool
3640
+ """This should always be set to true for Settings API. Added for AIP compliance."""
3641
+
3642
+ setting: AccountIpAccessEnable
3643
+
3644
+ field_mask: str
3645
+ """Field mask is required to be passed into the PATCH request. Field mask specifies which fields of
3646
+ the setting payload will be updated. The field mask needs to be supplied as single string. To
3647
+ specify multiple fields in the field mask, use comma as the separator (no space)."""
3648
+
3649
+ def as_dict(self) -> dict:
3650
+ """Serializes the UpdateAccountIpAccessEnableRequest into a dictionary suitable for use as a JSON request body."""
3651
+ body = {}
3652
+ if self.allow_missing is not None: body['allow_missing'] = self.allow_missing
3653
+ if self.field_mask is not None: body['field_mask'] = self.field_mask
3654
+ if self.setting: body['setting'] = self.setting.as_dict()
3655
+ return body
3656
+
3657
+ def as_shallow_dict(self) -> dict:
3658
+ """Serializes the UpdateAccountIpAccessEnableRequest into a shallow dictionary of its immediate attributes."""
3659
+ body = {}
3660
+ if self.allow_missing is not None: body['allow_missing'] = self.allow_missing
3661
+ if self.field_mask is not None: body['field_mask'] = self.field_mask
3662
+ if self.setting: body['setting'] = self.setting
3663
+ return body
3664
+
3665
+ @classmethod
3666
+ def from_dict(cls, d: Dict[str, any]) -> UpdateAccountIpAccessEnableRequest:
3667
+ """Deserializes the UpdateAccountIpAccessEnableRequest from a dictionary."""
3668
+ return cls(allow_missing=d.get('allow_missing', None),
3669
+ field_mask=d.get('field_mask', None),
3670
+ setting=_from_dict(d, 'setting', AccountIpAccessEnable))
3671
+
3672
+
3562
3673
  @dataclass
3563
3674
  class UpdateAibiDashboardEmbeddingAccessPolicySettingRequest:
3564
3675
  """Details required to update a setting."""
@@ -4391,6 +4502,7 @@ class AccountSettingsAPI:
4391
4502
 
4392
4503
  self._csp_enablement_account = CspEnablementAccountAPI(self._api)
4393
4504
  self._disable_legacy_features = DisableLegacyFeaturesAPI(self._api)
4505
+ self._enable_ip_access_lists = EnableIpAccessListsAPI(self._api)
4394
4506
  self._esm_enablement_account = EsmEnablementAccountAPI(self._api)
4395
4507
  self._personal_compute = PersonalComputeAPI(self._api)
4396
4508
 
@@ -4404,6 +4516,11 @@ class AccountSettingsAPI:
4404
4516
  """Disable legacy features for new Databricks workspaces."""
4405
4517
  return self._disable_legacy_features
4406
4518
 
4519
+ @property
4520
+ def enable_ip_access_lists(self) -> EnableIpAccessListsAPI:
4521
+ """Controls the enforcement of IP access lists for accessing the account console."""
4522
+ return self._enable_ip_access_lists
4523
+
4407
4524
  @property
4408
4525
  def esm_enablement_account(self) -> EsmEnablementAccountAPI:
4409
4526
  """The enhanced security monitoring setting at the account level controls whether to enable the feature on new workspaces."""
@@ -5203,6 +5320,95 @@ class DisableLegacyFeaturesAPI:
5203
5320
  return DisableLegacyFeatures.from_dict(res)
5204
5321
 
5205
5322
 
5323
+ class EnableIpAccessListsAPI:
5324
+ """Controls the enforcement of IP access lists for accessing the account console. Allowing you to enable or
5325
+ disable restricted access based on IP addresses."""
5326
+
5327
+ def __init__(self, api_client):
5328
+ self._api = api_client
5329
+
5330
+ def delete(self, *, etag: Optional[str] = None) -> DeleteAccountIpAccessEnableResponse:
5331
+ """Delete the account IP access toggle setting.
5332
+
5333
+ Reverts the value of the account IP access toggle setting to default (ON)
5334
+
5335
+ :param etag: str (optional)
5336
+ etag used for versioning. The response is at least as fresh as the eTag provided. This is used for
5337
+ optimistic concurrency control as a way to help prevent simultaneous writes of a setting overwriting
5338
+ each other. It is strongly suggested that systems make use of the etag in the read -> delete pattern
5339
+ to perform setting deletions in order to avoid race conditions. That is, get an etag from a GET
5340
+ request, and pass it with the DELETE request to identify the rule set version you are deleting.
5341
+
5342
+ :returns: :class:`DeleteAccountIpAccessEnableResponse`
5343
+ """
5344
+
5345
+ query = {}
5346
+ if etag is not None: query['etag'] = etag
5347
+ headers = {'Accept': 'application/json', }
5348
+
5349
+ res = self._api.do(
5350
+ 'DELETE',
5351
+ f'/api/2.0/accounts/{self._api.account_id}/settings/types/acct_ip_acl_enable/names/default',
5352
+ query=query,
5353
+ headers=headers)
5354
+ return DeleteAccountIpAccessEnableResponse.from_dict(res)
5355
+
5356
+ def get(self, *, etag: Optional[str] = None) -> AccountIpAccessEnable:
5357
+ """Get the account IP access toggle setting.
5358
+
5359
+ Gets the value of the account IP access toggle setting.
5360
+
5361
+ :param etag: str (optional)
5362
+ etag used for versioning. The response is at least as fresh as the eTag provided. This is used for
5363
+ optimistic concurrency control as a way to help prevent simultaneous writes of a setting overwriting
5364
+ each other. It is strongly suggested that systems make use of the etag in the read -> delete pattern
5365
+ to perform setting deletions in order to avoid race conditions. That is, get an etag from a GET
5366
+ request, and pass it with the DELETE request to identify the rule set version you are deleting.
5367
+
5368
+ :returns: :class:`AccountIpAccessEnable`
5369
+ """
5370
+
5371
+ query = {}
5372
+ if etag is not None: query['etag'] = etag
5373
+ headers = {'Accept': 'application/json', }
5374
+
5375
+ res = self._api.do(
5376
+ 'GET',
5377
+ f'/api/2.0/accounts/{self._api.account_id}/settings/types/acct_ip_acl_enable/names/default',
5378
+ query=query,
5379
+ headers=headers)
5380
+ return AccountIpAccessEnable.from_dict(res)
5381
+
5382
+ def update(self, allow_missing: bool, setting: AccountIpAccessEnable,
5383
+ field_mask: str) -> AccountIpAccessEnable:
5384
+ """Update the account IP access toggle setting.
5385
+
5386
+ Updates the value of the account IP access toggle setting.
5387
+
5388
+ :param allow_missing: bool
5389
+ This should always be set to true for Settings API. Added for AIP compliance.
5390
+ :param setting: :class:`AccountIpAccessEnable`
5391
+ :param field_mask: str
5392
+ Field mask is required to be passed into the PATCH request. Field mask specifies which fields of the
5393
+ setting payload will be updated. The field mask needs to be supplied as single string. To specify
5394
+ multiple fields in the field mask, use comma as the separator (no space).
5395
+
5396
+ :returns: :class:`AccountIpAccessEnable`
5397
+ """
5398
+ body = {}
5399
+ if allow_missing is not None: body['allow_missing'] = allow_missing
5400
+ if field_mask is not None: body['field_mask'] = field_mask
5401
+ if setting is not None: body['setting'] = setting.as_dict()
5402
+ headers = {'Accept': 'application/json', 'Content-Type': 'application/json', }
5403
+
5404
+ res = self._api.do(
5405
+ 'PATCH',
5406
+ f'/api/2.0/accounts/{self._api.account_id}/settings/types/acct_ip_acl_enable/names/default',
5407
+ body=body,
5408
+ headers=headers)
5409
+ return AccountIpAccessEnable.from_dict(res)
5410
+
5411
+
5206
5412
  class EnhancedSecurityMonitoringAPI:
5207
5413
  """Controls whether enhanced security monitoring is enabled for the current workspace. If the compliance
5208
5414
  security profile is enabled, this is automatically enabled. By default, it is disabled. However, if the
@@ -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.41.0'
1
+ __version__ = '0.42.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databricks-sdk
3
- Version: 0.41.0
3
+ Version: 0.42.0
4
4
  Summary: Databricks SDK for Python (Beta)
5
5
  Home-page: https://databricks-sdk-py.readthedocs.io
6
6
  Author: Serge Smertin
@@ -1,21 +1,21 @@
1
1
  databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
2
- databricks/sdk/__init__.py,sha256=BXTeXMqb4oUHmPeKvWHqfZhcDc-oW5Zg8jP93E2d9xs,50988
3
- databricks/sdk/_base_client.py,sha256=pcoK9MB8ORChHFtNr3e69w-xpQjg2crF0rOyE_7lbEA,16118
2
+ databricks/sdk/__init__.py,sha256=b5I8a32zEru60PZjVAKrPXNvBFNRlvsrzj0kbrZ-ReA,55207
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=QFo6fIsKUNc7x0QfPuNzoKtsymbsoIQsNR1bLXaN_6o,35134
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=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
17
- databricks/sdk/useragent.py,sha256=I2-VnJSE6cg9QV4GXkoQSkHsEB3bDvRGgkawbBNl4G0,5540
18
- databricks/sdk/version.py,sha256=3DHWWxurD2Uv_EZitxPja6QCXb8YVtHDXJyJ3wDawiM,23
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=BsdKJaosc0XHv_5eFAu6YncAsuu-Kw4Nv8QXAvC5ulM,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=-b4Nz0WZp7xrmk99OlLqlGHvy8PZcUt8cb6X80CXMvs,4119
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=0_L2aaJqOWehOJjiLwyDNmGwMOCGv7vKpifiSROJF60,82792
46
- databricks/sdk/service/catalog.py,sha256=itobYNgFOuQ3t52FDzASWQm5WDEWTIr-Zg5vsOcQu6o,591218
47
- databricks/sdk/service/cleanrooms.py,sha256=BnI-o8nW3c7ktY7KZ2XNM1KBndjWu7Vkw_e4veHZD8M,57880
48
- databricks/sdk/service/compute.py,sha256=Cn2uFBmEBiT264UZLYi1A4VplfP-rY05FW1dlRYN-s0,534189
49
- databricks/sdk/service/dashboards.py,sha256=i0jaTgdSSLqpIfNtmGU3mxpr6NYO8HRtXU5zExdseJQ,82713
45
+ databricks/sdk/service/billing.py,sha256=8Zt0mD-StF-V5iICMtcRwxu-cKtpKdyY2g9CgUoT11E,97365
46
+ databricks/sdk/service/catalog.py,sha256=MG6guBQZrVQe0SpPSj0vzdMOMiX2IeiL14Qe-QvmD8s,588941
47
+ databricks/sdk/service/cleanrooms.py,sha256=vT9kTxbPfpn4KDSBW2pt159-VtcDzWg-iZQUdUMlyUM,61251
48
+ databricks/sdk/service/compute.py,sha256=rlzr-_sy6gzMqggd3p_wAuBdEYd0Cf6YpY3zpAMrDq8,535852
49
+ databricks/sdk/service/dashboards.py,sha256=mRtlB8YBfwjyLe9DH7id25P33bdbvubBK9-Hq0PNs1s,82980
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=DdtW2mOapwHF4zr0chYzv0Ejz7dAjAdzM2wL76J2cWU,420610
52
+ databricks/sdk/service/jobs.py,sha256=_f0yjHqrCS1Io44Q6SqUdJfM3CZ3aM4_8_3NvoL1yWI,426401
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=KLc5vqn1VIN3WnoDyirkZ_4G8R0lN2yaXB9YgrnZdMk,73224
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=0s2RzSSmEaNv1ofgCD7VyQAtljwO2dIq4U8wDLdoR6c,197205
59
- databricks/sdk/service/settings.py,sha256=sT9sRLVYEZXwLgjw_82EfArhABzX8BYZKskUFzOISeM,298239
58
+ databricks/sdk/service/serving.py,sha256=bk2ZnhzcOmnYdSMgXoXTBILRrlPAi0U-PDokYmCSrwA,196924
59
+ databricks/sdk/service/settings.py,sha256=LjN3gzWxa4KcmAC9dZATmd-GFEDn4wP9oaGq6Mnot5U,308230
60
60
  databricks/sdk/service/sharing.py,sha256=ymeJWblpB00vZrvflEVHa0joxWM9tafu6y09rR0I57k,104961
61
61
  databricks/sdk/service/sql.py,sha256=bKIPoiygWc33prTjR-UOltwi1MKVv4D41y4ZFCm9AXw,392721
62
62
  databricks/sdk/service/vectorsearch.py,sha256=5p5pW94Bv_Q2tw4j8kFb35nAoFa9GUG5FIHTdfAHWps,77997
63
63
  databricks/sdk/service/workspace.py,sha256=BCoi43R1L2eJI9DYq9vwCVdjbMsdLuzDebN6AZvT4kg,128751
64
- databricks_sdk-0.41.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
65
- databricks_sdk-0.41.0.dist-info/METADATA,sha256=sAZU79ZbOVa2WLmvR1mdLq8egLrjZPdndKvAQD7cszQ,38301
66
- databricks_sdk-0.41.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
67
- databricks_sdk-0.41.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
68
- databricks_sdk-0.41.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
69
- databricks_sdk-0.41.0.dist-info/RECORD,,
64
+ databricks_sdk-0.42.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
65
+ databricks_sdk-0.42.0.dist-info/METADATA,sha256=ahpptpEWRpZcQu9s4pV8HHiVWTKfkWRl3umuYAUCcLk,38301
66
+ databricks_sdk-0.42.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
67
+ databricks_sdk-0.42.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
68
+ databricks_sdk-0.42.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
69
+ databricks_sdk-0.42.0.dist-info/RECORD,,