databricks-sdk 0.23.0__py3-none-any.whl → 0.24.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/service/_internal.py +5 -0
- databricks/sdk/service/dashboards.py +83 -0
- databricks/sdk/service/files.py +25 -12
- databricks/sdk/service/iam.py +3 -0
- databricks/sdk/service/jobs.py +621 -316
- databricks/sdk/service/serving.py +53 -53
- databricks/sdk/service/workspace.py +50 -10
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.23.0.dist-info → databricks_sdk-0.24.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.23.0.dist-info → databricks_sdk-0.24.0.dist-info}/RECORD +14 -14
- {databricks_sdk-0.23.0.dist-info → databricks_sdk-0.24.0.dist-info}/LICENSE +0 -0
- {databricks_sdk-0.23.0.dist-info → databricks_sdk-0.24.0.dist-info}/NOTICE +0 -0
- {databricks_sdk-0.23.0.dist-info → databricks_sdk-0.24.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.23.0.dist-info → databricks_sdk-0.24.0.dist-info}/top_level.txt +0 -0
|
@@ -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', '
|
|
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', '
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
1
|
+
__version__ = '0.24.0'
|
|
@@ -11,7 +11,7 @@ databricks/sdk/environments.py,sha256=gStDfgI07ECd6Pb82Rf-nRjf48NH6hOY3UfTXm4YNZ
|
|
|
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=
|
|
14
|
+
databricks/sdk/version.py,sha256=lbgaUA9yL_X3wnFgvRc5nIlmJ4gFm6Ala6TbPHN-5aY,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
|
|
@@ -27,27 +27,27 @@ databricks/sdk/mixins/workspace.py,sha256=dWMNvuEi8jJ5wMhrDt1LiqxNdWSsmEuDTzrcZR
|
|
|
27
27
|
databricks/sdk/runtime/__init__.py,sha256=9NnZkBzeZXZRQxcE1qKzAszQEzcpIgpL7lQzW3_kxEU,7266
|
|
28
28
|
databricks/sdk/runtime/dbutils_stub.py,sha256=UFbRZF-bBcwxjbv_pxma00bjNtktLLaYpo8oHRc4-9g,11421
|
|
29
29
|
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
databricks/sdk/service/_internal.py,sha256=
|
|
30
|
+
databricks/sdk/service/_internal.py,sha256=nWbJfW5eJCQgAZ3TmA26xoWb6SNZ5N76ZA8bO1N4AsU,1961
|
|
31
31
|
databricks/sdk/service/billing.py,sha256=Hbe5bMsBrpebuAl8yj-GwVRGktrzKwiZJj3gq1wUMaI,50625
|
|
32
32
|
databricks/sdk/service/catalog.py,sha256=EytdKjPNqN6uhmUMRnQFJu5xaKP2xbQJ9GYsmnhRZLs,402330
|
|
33
33
|
databricks/sdk/service/compute.py,sha256=fEDhQfFiycLWpOBz6ALhLXGvnNYVFsZvMlPm0j0lXpU,395632
|
|
34
|
-
databricks/sdk/service/dashboards.py,sha256=
|
|
35
|
-
databricks/sdk/service/files.py,sha256=
|
|
36
|
-
databricks/sdk/service/iam.py,sha256=
|
|
37
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
34
|
+
databricks/sdk/service/dashboards.py,sha256=PwhX73El3POXdblc7ZOm2PAkhf5TcSZ5Na73_ne2Zb4,18801
|
|
35
|
+
databricks/sdk/service/files.py,sha256=VCt83YSI9rhQexmxaQdrUXHq2UCYfZcDMLvJx5X6n1M,38162
|
|
36
|
+
databricks/sdk/service/iam.py,sha256=3Pe8ZpP413ys2GsaCEbvEKvv1eEji8OeuKrnGWbtb1E,147612
|
|
37
|
+
databricks/sdk/service/jobs.py,sha256=Pi0tkKKIYqtWwKTucT2ZE0bsh4A4oPPuRQwwq7p8ock,304889
|
|
38
38
|
databricks/sdk/service/ml.py,sha256=vohBdESClI3EOpO-ZZ44W-CMz1alq5Tw4oJnWa99Z2M,236128
|
|
39
39
|
databricks/sdk/service/oauth2.py,sha256=zpEA7glY_EsPvMgkk-hmt4eVgrmtcSGgduI7XlShNUo,36215
|
|
40
40
|
databricks/sdk/service/pipelines.py,sha256=2Kum7q_4hVZcEaww2c0NLJj0Fbe9G0BGsF71JKDCvv8,101546
|
|
41
41
|
databricks/sdk/service/provisioning.py,sha256=DP4Df4X-p0JEUk4zAJQhjX_wxpMi673OKLXFhxl6YSE,142678
|
|
42
|
-
databricks/sdk/service/serving.py,sha256=
|
|
42
|
+
databricks/sdk/service/serving.py,sha256=TuF7GAN2w_IUWf-ymx1g1f6uf1g3ot83EBZn52edqbI,130618
|
|
43
43
|
databricks/sdk/service/settings.py,sha256=7KITQbOPbaESxsCssckPdxLAS64auzfij1DLTRd9cQI,176630
|
|
44
44
|
databricks/sdk/service/sharing.py,sha256=21BdjeHQTWvAfkoYfMBwj0hGYGOxRoGGYdz3M-20xV4,98520
|
|
45
45
|
databricks/sdk/service/sql.py,sha256=FMbmD7h1ZrH5-28-fxt7A0o5KZYphenYzFQbzS8vVEw,256266
|
|
46
46
|
databricks/sdk/service/vectorsearch.py,sha256=R5RACGGpM9w2yUylBTiV5Bk-YC6O2OorKlNUHqKFawg,51588
|
|
47
|
-
databricks/sdk/service/workspace.py,sha256=
|
|
48
|
-
databricks_sdk-0.
|
|
49
|
-
databricks_sdk-0.
|
|
50
|
-
databricks_sdk-0.
|
|
51
|
-
databricks_sdk-0.
|
|
52
|
-
databricks_sdk-0.
|
|
53
|
-
databricks_sdk-0.
|
|
47
|
+
databricks/sdk/service/workspace.py,sha256=4BZLbKu6yF9Jztb07uzUnEflA8JKOD9LIOQEJm5BK9c,100855
|
|
48
|
+
databricks_sdk-0.24.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
49
|
+
databricks_sdk-0.24.0.dist-info/METADATA,sha256=yrgQWRk8_Wgb5AoiwfCXx32MFKu0SG4vN84-53lCGAo,34642
|
|
50
|
+
databricks_sdk-0.24.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
|
|
51
|
+
databricks_sdk-0.24.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
52
|
+
databricks_sdk-0.24.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
53
|
+
databricks_sdk-0.24.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|