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

@@ -35,6 +35,51 @@ class Ai21LabsConfig:
35
35
  return cls(ai21labs_api_key=d.get('ai21labs_api_key', None))
36
36
 
37
37
 
38
+ @dataclass
39
+ class AmazonBedrockConfig:
40
+ aws_region: str
41
+ """The AWS region to use. Bedrock has to be enabled there."""
42
+
43
+ aws_access_key_id: str
44
+ """The Databricks secret key reference for an AWS Access Key ID with permissions to interact with
45
+ Bedrock services."""
46
+
47
+ aws_secret_access_key: str
48
+ """The Databricks secret key reference for an AWS Secret Access Key paired with the access key ID,
49
+ with permissions to interact with Bedrock services."""
50
+
51
+ bedrock_provider: AmazonBedrockConfigBedrockProvider
52
+ """The underlying provider in Amazon Bedrock. Supported values (case insensitive) include:
53
+ Anthropic, Cohere, AI21Labs, Amazon."""
54
+
55
+ def as_dict(self) -> dict:
56
+ """Serializes the AmazonBedrockConfig into a dictionary suitable for use as a JSON request body."""
57
+ body = {}
58
+ if self.aws_access_key_id is not None: body['aws_access_key_id'] = self.aws_access_key_id
59
+ if self.aws_region is not None: body['aws_region'] = self.aws_region
60
+ if self.aws_secret_access_key is not None: body['aws_secret_access_key'] = self.aws_secret_access_key
61
+ if self.bedrock_provider is not None: body['bedrock_provider'] = self.bedrock_provider.value
62
+ return body
63
+
64
+ @classmethod
65
+ def from_dict(cls, d: Dict[str, any]) -> AmazonBedrockConfig:
66
+ """Deserializes the AmazonBedrockConfig from a dictionary."""
67
+ return cls(aws_access_key_id=d.get('aws_access_key_id', None),
68
+ aws_region=d.get('aws_region', None),
69
+ aws_secret_access_key=d.get('aws_secret_access_key', None),
70
+ bedrock_provider=_enum(d, 'bedrock_provider', AmazonBedrockConfigBedrockProvider))
71
+
72
+
73
+ class AmazonBedrockConfigBedrockProvider(Enum):
74
+ """The underlying provider in Amazon Bedrock. Supported values (case insensitive) include:
75
+ Anthropic, Cohere, AI21Labs, Amazon."""
76
+
77
+ AI21LABS = 'ai21labs'
78
+ AMAZON = 'amazon'
79
+ ANTHROPIC = 'anthropic'
80
+ COHERE = 'cohere'
81
+
82
+
38
83
  @dataclass
39
84
  class AnthropicConfig:
40
85
  anthropic_api_key: str
@@ -243,51 +288,6 @@ class AutoCaptureState:
243
288
  return cls(payload_table=_from_dict(d, 'payload_table', PayloadTable))
244
289
 
245
290
 
246
- @dataclass
247
- class AwsBedrockConfig:
248
- aws_region: str
249
- """The AWS region to use. Bedrock has to be enabled there."""
250
-
251
- aws_access_key_id: str
252
- """The Databricks secret key reference for an AWS Access Key ID with permissions to interact with
253
- Bedrock services."""
254
-
255
- aws_secret_access_key: str
256
- """The Databricks secret key reference for an AWS Secret Access Key paired with the access key ID,
257
- with permissions to interact with Bedrock services."""
258
-
259
- bedrock_provider: AwsBedrockConfigBedrockProvider
260
- """The underlying provider in AWS Bedrock. Supported values (case insensitive) include: Anthropic,
261
- Cohere, AI21Labs, Amazon."""
262
-
263
- def as_dict(self) -> dict:
264
- """Serializes the AwsBedrockConfig into a dictionary suitable for use as a JSON request body."""
265
- body = {}
266
- if self.aws_access_key_id is not None: body['aws_access_key_id'] = self.aws_access_key_id
267
- if self.aws_region is not None: body['aws_region'] = self.aws_region
268
- if self.aws_secret_access_key is not None: body['aws_secret_access_key'] = self.aws_secret_access_key
269
- if self.bedrock_provider is not None: body['bedrock_provider'] = self.bedrock_provider.value
270
- return body
271
-
272
- @classmethod
273
- def from_dict(cls, d: Dict[str, any]) -> AwsBedrockConfig:
274
- """Deserializes the AwsBedrockConfig from a dictionary."""
275
- return cls(aws_access_key_id=d.get('aws_access_key_id', None),
276
- aws_region=d.get('aws_region', None),
277
- aws_secret_access_key=d.get('aws_secret_access_key', None),
278
- bedrock_provider=_enum(d, 'bedrock_provider', AwsBedrockConfigBedrockProvider))
279
-
280
-
281
- class AwsBedrockConfigBedrockProvider(Enum):
282
- """The underlying provider in AWS Bedrock. Supported values (case insensitive) include: Anthropic,
283
- Cohere, AI21Labs, Amazon."""
284
-
285
- AI21LABS = 'ai21labs'
286
- AMAZON = 'amazon'
287
- ANTHROPIC = 'anthropic'
288
- COHERE = 'cohere'
289
-
290
-
291
291
  @dataclass
292
292
  class BuildLogsResponse:
293
293
  logs: str
@@ -789,7 +789,7 @@ class ExportMetricsResponse:
789
789
  class ExternalModel:
790
790
  provider: ExternalModelProvider
791
791
  """The name of the provider for the external model. Currently, the supported providers are
792
- 'ai21labs', 'anthropic', 'aws-bedrock', 'cohere', 'databricks-model-serving', 'openai', and
792
+ 'ai21labs', 'anthropic', 'amazon-bedrock', 'cohere', 'databricks-model-serving', 'openai', and
793
793
  'palm'.","""
794
794
 
795
795
  name: str
@@ -801,12 +801,12 @@ class ExternalModel:
801
801
  ai21labs_config: Optional[Ai21LabsConfig] = None
802
802
  """AI21Labs Config. Only required if the provider is 'ai21labs'."""
803
803
 
804
+ amazon_bedrock_config: Optional[AmazonBedrockConfig] = None
805
+ """Amazon Bedrock Config. Only required if the provider is 'amazon-bedrock'."""
806
+
804
807
  anthropic_config: Optional[AnthropicConfig] = None
805
808
  """Anthropic Config. Only required if the provider is 'anthropic'."""
806
809
 
807
- aws_bedrock_config: Optional[AwsBedrockConfig] = None
808
- """AWS Bedrock Config. Only required if the provider is 'aws-bedrock'."""
809
-
810
810
  cohere_config: Optional[CohereConfig] = None
811
811
  """Cohere Config. Only required if the provider is 'cohere'."""
812
812
 
@@ -823,8 +823,8 @@ class ExternalModel:
823
823
  """Serializes the ExternalModel into a dictionary suitable for use as a JSON request body."""
824
824
  body = {}
825
825
  if self.ai21labs_config: body['ai21labs_config'] = self.ai21labs_config.as_dict()
826
+ if self.amazon_bedrock_config: body['amazon_bedrock_config'] = self.amazon_bedrock_config.as_dict()
826
827
  if self.anthropic_config: body['anthropic_config'] = self.anthropic_config.as_dict()
827
- if self.aws_bedrock_config: body['aws_bedrock_config'] = self.aws_bedrock_config.as_dict()
828
828
  if self.cohere_config: body['cohere_config'] = self.cohere_config.as_dict()
829
829
  if self.databricks_model_serving_config:
830
830
  body['databricks_model_serving_config'] = self.databricks_model_serving_config.as_dict()
@@ -839,8 +839,8 @@ class ExternalModel:
839
839
  def from_dict(cls, d: Dict[str, any]) -> ExternalModel:
840
840
  """Deserializes the ExternalModel from a dictionary."""
841
841
  return cls(ai21labs_config=_from_dict(d, 'ai21labs_config', Ai21LabsConfig),
842
+ amazon_bedrock_config=_from_dict(d, 'amazon_bedrock_config', AmazonBedrockConfig),
842
843
  anthropic_config=_from_dict(d, 'anthropic_config', AnthropicConfig),
843
- aws_bedrock_config=_from_dict(d, 'aws_bedrock_config', AwsBedrockConfig),
844
844
  cohere_config=_from_dict(d, 'cohere_config', CohereConfig),
845
845
  databricks_model_serving_config=_from_dict(d, 'databricks_model_serving_config',
846
846
  DatabricksModelServingConfig),
@@ -853,12 +853,12 @@ class ExternalModel:
853
853
 
854
854
  class ExternalModelProvider(Enum):
855
855
  """The name of the provider for the external model. Currently, the supported providers are
856
- 'ai21labs', 'anthropic', 'aws-bedrock', 'cohere', 'databricks-model-serving', 'openai', and
856
+ 'ai21labs', 'anthropic', 'amazon-bedrock', 'cohere', 'databricks-model-serving', 'openai', and
857
857
  'palm'.","""
858
858
 
859
859
  AI21LABS = 'ai21labs'
860
+ AMAZON_BEDROCK = 'amazon-bedrock'
860
861
  ANTHROPIC = 'anthropic'
861
- AWS_BEDROCK = 'aws-bedrock'
862
862
  COHERE = 'cohere'
863
863
  DATABRICKS_MODEL_SERVING = 'databricks-model-serving'
864
864
  OPENAI = 'openai'
@@ -71,10 +71,18 @@ class CreateCredentials:
71
71
  gitLabEnterpriseEdition and awsCodeCommit."""
72
72
 
73
73
  git_username: Optional[str] = None
74
- """Git username."""
74
+ """The username or email provided with your Git provider account, depending on which provider you
75
+ are using. For GitHub, GitHub Enterprise Server, or Azure DevOps Services, either email or
76
+ username may be used. For GitLab, GitLab Enterprise Edition, email must be used. For AWS
77
+ CodeCommit, BitBucket or BitBucket Server, username must be used. For all other providers please
78
+ see your provider's Personal Access Token authentication documentation to see what is supported."""
75
79
 
76
80
  personal_access_token: Optional[str] = None
77
- """The personal access token used to authenticate to the corresponding Git provider."""
81
+ """The personal access token used to authenticate to the corresponding Git provider. For certain
82
+ providers, support may exist for other types of scoped access tokens. [Learn more]. The personal
83
+ access token used to authenticate to the corresponding Git
84
+
85
+ [Learn more]: https://docs.databricks.com/repos/get-access-tokens-from-git-provider.html"""
78
86
 
79
87
  def as_dict(self) -> dict:
80
88
  """Serializes the CreateCredentials into a dictionary suitable for use as a JSON request body."""
@@ -103,7 +111,11 @@ class CreateCredentialsResponse:
103
111
  gitLabEnterpriseEdition and awsCodeCommit."""
104
112
 
105
113
  git_username: Optional[str] = None
106
- """Git username."""
114
+ """The username or email provided with your Git provider account, depending on which provider you
115
+ are using. For GitHub, GitHub Enterprise Server, or Azure DevOps Services, either email or
116
+ username may be used. For GitLab, GitLab Enterprise Edition, email must be used. For AWS
117
+ CodeCommit, BitBucket or BitBucket Server, username must be used. For all other providers please
118
+ see your provider's Personal Access Token authentication documentation to see what is supported."""
107
119
 
108
120
  def as_dict(self) -> dict:
109
121
  """Serializes the CreateCredentialsResponse into a dictionary suitable for use as a JSON request body."""
@@ -215,7 +227,11 @@ class CredentialInfo:
215
227
  gitLabEnterpriseEdition and awsCodeCommit."""
216
228
 
217
229
  git_username: Optional[str] = None
218
- """Git username."""
230
+ """The username or email provided with your Git provider account, depending on which provider you
231
+ are using. For GitHub, GitHub Enterprise Server, or Azure DevOps Services, either email or
232
+ username may be used. For GitLab, GitLab Enterprise Edition, email must be used. For AWS
233
+ CodeCommit, BitBucket or BitBucket Server, username must be used. For all other providers please
234
+ see your provider's Personal Access Token authentication documentation to see what is supported."""
219
235
 
220
236
  def as_dict(self) -> dict:
221
237
  """Serializes the CredentialInfo into a dictionary suitable for use as a JSON request body."""
@@ -1171,10 +1187,18 @@ class UpdateCredentials:
1171
1187
  gitLabEnterpriseEdition and awsCodeCommit."""
1172
1188
 
1173
1189
  git_username: Optional[str] = None
1174
- """Git username."""
1190
+ """The username or email provided with your Git provider account, depending on which provider you
1191
+ are using. For GitHub, GitHub Enterprise Server, or Azure DevOps Services, either email or
1192
+ username may be used. For GitLab, GitLab Enterprise Edition, email must be used. For AWS
1193
+ CodeCommit, BitBucket or BitBucket Server, username must be used. For all other providers please
1194
+ see your provider's Personal Access Token authentication documentation to see what is supported."""
1175
1195
 
1176
1196
  personal_access_token: Optional[str] = None
1177
- """The personal access token used to authenticate to the corresponding Git provider."""
1197
+ """The personal access token used to authenticate to the corresponding Git provider. For certain
1198
+ providers, support may exist for other types of scoped access tokens. [Learn more]. The personal
1199
+ access token used to authenticate to the corresponding Git
1200
+
1201
+ [Learn more]: https://docs.databricks.com/repos/get-access-tokens-from-git-provider.html"""
1178
1202
 
1179
1203
  def as_dict(self) -> dict:
1180
1204
  """Serializes the UpdateCredentials into a dictionary suitable for use as a JSON request body."""
@@ -1449,9 +1473,17 @@ class GitCredentialsAPI:
1449
1473
  bitbucketCloud, gitLab, azureDevOpsServices, gitHubEnterprise, bitbucketServer,
1450
1474
  gitLabEnterpriseEdition and awsCodeCommit.
1451
1475
  :param git_username: str (optional)
1452
- Git username.
1476
+ The username or email provided with your Git provider account, depending on which provider you are
1477
+ using. For GitHub, GitHub Enterprise Server, or Azure DevOps Services, either email or username may
1478
+ be used. For GitLab, GitLab Enterprise Edition, email must be used. For AWS CodeCommit, BitBucket or
1479
+ BitBucket Server, username must be used. For all other providers please see your provider's Personal
1480
+ Access Token authentication documentation to see what is supported.
1453
1481
  :param personal_access_token: str (optional)
1454
- The personal access token used to authenticate to the corresponding Git provider.
1482
+ The personal access token used to authenticate to the corresponding Git provider. For certain
1483
+ providers, support may exist for other types of scoped access tokens. [Learn more]. The personal
1484
+ access token used to authenticate to the corresponding Git
1485
+
1486
+ [Learn more]: https://docs.databricks.com/repos/get-access-tokens-from-git-provider.html
1455
1487
 
1456
1488
  :returns: :class:`CreateCredentialsResponse`
1457
1489
  """
@@ -1526,9 +1558,17 @@ class GitCredentialsAPI:
1526
1558
  bitbucketCloud, gitLab, azureDevOpsServices, gitHubEnterprise, bitbucketServer,
1527
1559
  gitLabEnterpriseEdition and awsCodeCommit.
1528
1560
  :param git_username: str (optional)
1529
- Git username.
1561
+ The username or email provided with your Git provider account, depending on which provider you are
1562
+ using. For GitHub, GitHub Enterprise Server, or Azure DevOps Services, either email or username may
1563
+ be used. For GitLab, GitLab Enterprise Edition, email must be used. For AWS CodeCommit, BitBucket or
1564
+ BitBucket Server, username must be used. For all other providers please see your provider's Personal
1565
+ Access Token authentication documentation to see what is supported.
1530
1566
  :param personal_access_token: str (optional)
1531
- The personal access token used to authenticate to the corresponding Git provider.
1567
+ The personal access token used to authenticate to the corresponding Git provider. For certain
1568
+ providers, support may exist for other types of scoped access tokens. [Learn more]. The personal
1569
+ access token used to authenticate to the corresponding Git
1570
+
1571
+ [Learn more]: https://docs.databricks.com/repos/get-access-tokens-from-git-provider.html
1532
1572
 
1533
1573
 
1534
1574
  """
databricks/sdk/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.23.0'
1
+ __version__ = '0.25.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databricks-sdk
3
- Version: 0.23.0
3
+ Version: 0.25.0
4
4
  Summary: Databricks SDK for Python (Beta)
5
5
  Home-page: https://databricks-sdk-py.readthedocs.io
6
6
  Author: Serge Smertin
@@ -77,6 +77,7 @@ The SDK's internal HTTP client is robust and handles failures on different level
77
77
  - [Long-running operations](#long-running-operations)
78
78
  - [Paginated responses](#paginated-responses)
79
79
  - [Single-sign-on with OAuth](#single-sign-on-sso-with-oauth)
80
+ - [Error handling](#error-handling)
80
81
  - [Logging](#logging)
81
82
  - [Integration with `dbutils`](#interaction-with-dbutils)
82
83
  - [Interface stability](#interface-stability)
@@ -554,6 +555,23 @@ logging.info(f'Created new custom app: '
554
555
  f'--client_secret {custom_app.client_secret}')
555
556
  ```
556
557
 
558
+ ## Error handling<a id="error-handling"></a>
559
+
560
+ The Databricks SDK for Python provides a robust error-handling mechanism that allows developers to catch and handle API errors. When an error occurs, the SDK will raise an exception that contains information about the error, such as the HTTP status code, error message, and error details. Developers can catch these exceptions and handle them appropriately in their code.
561
+
562
+ ```python
563
+ from databricks.sdk import WorkspaceClient
564
+ from databricks.sdk.errors import ResourceDoesNotExist
565
+
566
+ w = WorkspaceClient()
567
+ try:
568
+ w.clusters.get(cluster_id='1234-5678-9012')
569
+ except ResourceDoesNotExist as e:
570
+ print(f'Cluster not found: {e}')
571
+ ```
572
+
573
+ The SDK handles inconsistencies in error responses amongst the different services, providing a consistent interface for developers to work with. Simply catch the appropriate exception type and handle the error as needed. The errors returned by the Databricks API are defined in [databricks/sdk/errors/platform.py](https://github.com/databricks/databricks-sdk-py/blob/main/databricks/sdk/errors/platform.py).
574
+
557
575
  ## Logging<a id="logging"></a>
558
576
 
559
577
  The Databricks SDK for Python seamlessly integrates with the standard [Logging facility for Python](https://docs.python.org/3/library/logging.html).
@@ -1,23 +1,24 @@
1
1
  databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
2
- databricks/sdk/__init__.py,sha256=hfX1Qm45NJT90JCLIQLt78oZYahCcDqCYOrE4tHRJxQ,39853
2
+ databricks/sdk/__init__.py,sha256=76W415_ZJIs98AN7WRZZDWFeWgWICOiXip5dr-XzJaM,43847
3
3
  databricks/sdk/azure.py,sha256=92fNK4CmQGs-pCTA9r7Anv7u_84l79Q5uQ9m1HugChk,2299
4
4
  databricks/sdk/casing.py,sha256=NKYPrfPbQjM7lU4hhNQK3z1jb_VEA29BfH4FEdby2tg,1137
5
5
  databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
6
6
  databricks/sdk/config.py,sha256=mvnjRaeYf6gspfA9Tz2UCB9Ty7ZKbX-4FmdGBXPN9nk,18971
7
- databricks/sdk/core.py,sha256=L2VRtBTqWY4z-QPKM-TWhisUDA9xAtNm57GORN-gmMw,18549
7
+ databricks/sdk/core.py,sha256=o-LNwP_FHd7CuRui72YIT5RjtalP-oxuRupPa7EwifE,18546
8
8
  databricks/sdk/credentials_provider.py,sha256=zLmXLbt6zDS-P4jRBiS9if6QQGOea2CZn3fUrmJuJLY,26255
9
9
  databricks/sdk/dbutils.py,sha256=k-3ENkdUQwWQqX6g59OpezY3cT7TQqafVnXAtUHBjIg,12947
10
10
  databricks/sdk/environments.py,sha256=gStDfgI07ECd6Pb82Rf-nRjf48NH6hOY3UfTXm4YNZ4,2861
11
11
  databricks/sdk/oauth.py,sha256=jqe0yrrTUfRL8kpR21Odwn4R_X6Ns-hTLu3dKYDI1EM,18313
12
12
  databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
13
13
  databricks/sdk/retries.py,sha256=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
14
- databricks/sdk/version.py,sha256=pwluWaTPL8Xkb9G3PEN8_juXZgyuXodBFmQvwlw9pb4,23
14
+ databricks/sdk/version.py,sha256=ZXwoHOJ1nuRTdGrZbLNxvqbzWWkFvDkI3L0gzEDgw-w,23
15
15
  databricks/sdk/_widgets/__init__.py,sha256=Qm3JB8LmdPgEn_-VgxKkodTO4gn6OdaDPwsYcDmeIRI,2667
16
16
  databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
17
17
  databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
18
18
  databricks/sdk/errors/__init__.py,sha256=2X1j1rPSfgx0ryqDoMGTobTcnOaKqw-JIWhlpv7LH2E,123
19
- databricks/sdk/errors/base.py,sha256=7bEBt-sOSNgL9EwSz87k_tZrwOfHdW3xfxxLHNdx_J4,2245
20
- databricks/sdk/errors/mapper.py,sha256=6z_FLNr1bFGowstp45gHumCaBAf8Sdr4V-qmcxrguSI,927
19
+ databricks/sdk/errors/base.py,sha256=oawBxpuoyImsLu29ntpAgOc6RQ7kD-UcuFFER9jB3iI,3880
20
+ databricks/sdk/errors/mapper.py,sha256=TWK4-gTWO_tiiOPhE97JQv0-TtHfmIgV6VMzhjUhfoM,1161
21
+ databricks/sdk/errors/overrides.py,sha256=YswUrm5-FshXtUZ7q53f9DvnjnLoDUUoZ-YTpAyy5F0,1136
21
22
  databricks/sdk/errors/platform.py,sha256=dpD97-YcjXTqOwWg2XulFzdyb8qufN14PyU1FdukpF8,3017
22
23
  databricks/sdk/errors/sdk.py,sha256=_euMruhvquB0v_SKtgqxJUiyXHWuTb4Jl7ji6_h0E_A,109
23
24
  databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -27,27 +28,28 @@ databricks/sdk/mixins/workspace.py,sha256=dWMNvuEi8jJ5wMhrDt1LiqxNdWSsmEuDTzrcZR
27
28
  databricks/sdk/runtime/__init__.py,sha256=9NnZkBzeZXZRQxcE1qKzAszQEzcpIgpL7lQzW3_kxEU,7266
28
29
  databricks/sdk/runtime/dbutils_stub.py,sha256=UFbRZF-bBcwxjbv_pxma00bjNtktLLaYpo8oHRc4-9g,11421
29
30
  databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- databricks/sdk/service/_internal.py,sha256=VvKT8sYgF8aVYp-nxS2s8QYc8GhhQvI3IcFJZJx1g50,1841
31
+ databricks/sdk/service/_internal.py,sha256=nWbJfW5eJCQgAZ3TmA26xoWb6SNZ5N76ZA8bO1N4AsU,1961
31
32
  databricks/sdk/service/billing.py,sha256=Hbe5bMsBrpebuAl8yj-GwVRGktrzKwiZJj3gq1wUMaI,50625
32
- databricks/sdk/service/catalog.py,sha256=EytdKjPNqN6uhmUMRnQFJu5xaKP2xbQJ9GYsmnhRZLs,402330
33
- databricks/sdk/service/compute.py,sha256=fEDhQfFiycLWpOBz6ALhLXGvnNYVFsZvMlPm0j0lXpU,395632
34
- databricks/sdk/service/dashboards.py,sha256=9wsQNgrOxrZ3kBSyOfbWaWid9WJgozAu1qCVJ0H4YVM,15660
35
- databricks/sdk/service/files.py,sha256=myqpOOxwIaGwcepukUgV7QDhhZ-pHJg-SDvHU4NFX30,37599
36
- databricks/sdk/service/iam.py,sha256=Obbtlzl5G1Sd-ShmTDQq93ewDRzXbTH4D_lgNLS46uY,147465
37
- databricks/sdk/service/jobs.py,sha256=BmWC-6_xHZjQmM0BQAlObfe2BHzBsD0nxyS5OykRfCs,285521
33
+ databricks/sdk/service/catalog.py,sha256=1bpOMgqGJns3FFhLIxEs1wzaXMVjdVA_xav7OoYNDjc,409071
34
+ databricks/sdk/service/compute.py,sha256=76ovLD0sBNS9GqiDqU-Oyx2QZk6X2R8igBNZzfXi7t0,398665
35
+ databricks/sdk/service/dashboards.py,sha256=PwhX73El3POXdblc7ZOm2PAkhf5TcSZ5Na73_ne2Zb4,18801
36
+ databricks/sdk/service/files.py,sha256=VCt83YSI9rhQexmxaQdrUXHq2UCYfZcDMLvJx5X6n1M,38162
37
+ databricks/sdk/service/iam.py,sha256=11L45bjOYwzxMVlAXpKrFMOxrZzgZy75JSIOkeAXuFg,147645
38
+ databricks/sdk/service/jobs.py,sha256=wQ-J9WjenGm_CV0B2Q6G93p37s7aS4sv0UQ61gXezJY,304724
39
+ databricks/sdk/service/marketplace.py,sha256=NsBjBBHJVi3AsVvLv3MJMaaH12GGl9PxGHG7GhEfZgw,136516
38
40
  databricks/sdk/service/ml.py,sha256=vohBdESClI3EOpO-ZZ44W-CMz1alq5Tw4oJnWa99Z2M,236128
39
41
  databricks/sdk/service/oauth2.py,sha256=zpEA7glY_EsPvMgkk-hmt4eVgrmtcSGgduI7XlShNUo,36215
40
42
  databricks/sdk/service/pipelines.py,sha256=2Kum7q_4hVZcEaww2c0NLJj0Fbe9G0BGsF71JKDCvv8,101546
41
43
  databricks/sdk/service/provisioning.py,sha256=DP4Df4X-p0JEUk4zAJQhjX_wxpMi673OKLXFhxl6YSE,142678
42
- databricks/sdk/service/serving.py,sha256=kRwmGuLbUZnxUdEYIxMkS2q1iOd0kw2SV6gkdo4v1HY,130549
44
+ databricks/sdk/service/serving.py,sha256=TuF7GAN2w_IUWf-ymx1g1f6uf1g3ot83EBZn52edqbI,130618
43
45
  databricks/sdk/service/settings.py,sha256=7KITQbOPbaESxsCssckPdxLAS64auzfij1DLTRd9cQI,176630
44
46
  databricks/sdk/service/sharing.py,sha256=21BdjeHQTWvAfkoYfMBwj0hGYGOxRoGGYdz3M-20xV4,98520
45
47
  databricks/sdk/service/sql.py,sha256=FMbmD7h1ZrH5-28-fxt7A0o5KZYphenYzFQbzS8vVEw,256266
46
48
  databricks/sdk/service/vectorsearch.py,sha256=R5RACGGpM9w2yUylBTiV5Bk-YC6O2OorKlNUHqKFawg,51588
47
- databricks/sdk/service/workspace.py,sha256=Cc_fgKbZ5phzdjg7ryM-6uoVQ_ug3h4rhzQJFyk0RBM,96837
48
- databricks_sdk-0.23.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
49
- databricks_sdk-0.23.0.dist-info/METADATA,sha256=NSpDj9c0We0p3P5PtXyoQ_3H4KSyPIZZ6Qq54i-vark,34642
50
- databricks_sdk-0.23.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
51
- databricks_sdk-0.23.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
52
- databricks_sdk-0.23.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
53
- databricks_sdk-0.23.0.dist-info/RECORD,,
49
+ databricks/sdk/service/workspace.py,sha256=4BZLbKu6yF9Jztb07uzUnEflA8JKOD9LIOQEJm5BK9c,100855
50
+ databricks_sdk-0.25.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
51
+ databricks_sdk-0.25.0.dist-info/METADATA,sha256=rkNXxnkKB_9y7oF_lzcklzYj6uNnsbKQVYSvI787O6k,35766
52
+ databricks_sdk-0.25.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
53
+ databricks_sdk-0.25.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
54
+ databricks_sdk-0.25.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
55
+ databricks_sdk-0.25.0.dist-info/RECORD,,