databricks-sdk 0.48.0__py3-none-any.whl → 0.50.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 +5 -3
- databricks/sdk/service/apps.py +29 -0
- databricks/sdk/service/billing.py +11 -1
- databricks/sdk/service/catalog.py +26 -0
- databricks/sdk/service/compute.py +396 -182
- databricks/sdk/service/dashboards.py +292 -0
- databricks/sdk/service/iam.py +12 -29
- databricks/sdk/service/jobs.py +539 -74
- databricks/sdk/service/marketplace.py +2 -3
- databricks/sdk/service/ml.py +420 -109
- databricks/sdk/service/oauth2.py +12 -0
- databricks/sdk/service/pipelines.py +100 -60
- databricks/sdk/service/serving.py +210 -12
- databricks/sdk/service/settings.py +476 -4
- databricks/sdk/service/sharing.py +71 -71
- databricks/sdk/service/sql.py +138 -0
- databricks/sdk/version.py +1 -1
- {databricks_sdk-0.48.0.dist-info → databricks_sdk-0.50.0.dist-info}/METADATA +1 -1
- {databricks_sdk-0.48.0.dist-info → databricks_sdk-0.50.0.dist-info}/RECORD +23 -23
- {databricks_sdk-0.48.0.dist-info → databricks_sdk-0.50.0.dist-info}/WHEEL +0 -0
- {databricks_sdk-0.48.0.dist-info → databricks_sdk-0.50.0.dist-info}/licenses/LICENSE +0 -0
- {databricks_sdk-0.48.0.dist-info → databricks_sdk-0.50.0.dist-info}/licenses/NOTICE +0 -0
- {databricks_sdk-0.48.0.dist-info → databricks_sdk-0.50.0.dist-info}/top_level.txt +0 -0
|
@@ -324,71 +324,7 @@ class DeltaSharingDependencyList:
|
|
|
324
324
|
|
|
325
325
|
|
|
326
326
|
@dataclass
|
|
327
|
-
class
|
|
328
|
-
"""A Function in UC as a dependency."""
|
|
329
|
-
|
|
330
|
-
function_name: Optional[str] = None
|
|
331
|
-
|
|
332
|
-
schema_name: Optional[str] = None
|
|
333
|
-
|
|
334
|
-
def as_dict(self) -> dict:
|
|
335
|
-
"""Serializes the DeltaSharingFunctionDependency into a dictionary suitable for use as a JSON request body."""
|
|
336
|
-
body = {}
|
|
337
|
-
if self.function_name is not None:
|
|
338
|
-
body["function_name"] = self.function_name
|
|
339
|
-
if self.schema_name is not None:
|
|
340
|
-
body["schema_name"] = self.schema_name
|
|
341
|
-
return body
|
|
342
|
-
|
|
343
|
-
def as_shallow_dict(self) -> dict:
|
|
344
|
-
"""Serializes the DeltaSharingFunctionDependency into a shallow dictionary of its immediate attributes."""
|
|
345
|
-
body = {}
|
|
346
|
-
if self.function_name is not None:
|
|
347
|
-
body["function_name"] = self.function_name
|
|
348
|
-
if self.schema_name is not None:
|
|
349
|
-
body["schema_name"] = self.schema_name
|
|
350
|
-
return body
|
|
351
|
-
|
|
352
|
-
@classmethod
|
|
353
|
-
def from_dict(cls, d: Dict[str, Any]) -> DeltaSharingFunctionDependency:
|
|
354
|
-
"""Deserializes the DeltaSharingFunctionDependency from a dictionary."""
|
|
355
|
-
return cls(function_name=d.get("function_name", None), schema_name=d.get("schema_name", None))
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
@dataclass
|
|
359
|
-
class DeltaSharingTableDependency:
|
|
360
|
-
"""A Table in UC as a dependency."""
|
|
361
|
-
|
|
362
|
-
schema_name: Optional[str] = None
|
|
363
|
-
|
|
364
|
-
table_name: Optional[str] = None
|
|
365
|
-
|
|
366
|
-
def as_dict(self) -> dict:
|
|
367
|
-
"""Serializes the DeltaSharingTableDependency into a dictionary suitable for use as a JSON request body."""
|
|
368
|
-
body = {}
|
|
369
|
-
if self.schema_name is not None:
|
|
370
|
-
body["schema_name"] = self.schema_name
|
|
371
|
-
if self.table_name is not None:
|
|
372
|
-
body["table_name"] = self.table_name
|
|
373
|
-
return body
|
|
374
|
-
|
|
375
|
-
def as_shallow_dict(self) -> dict:
|
|
376
|
-
"""Serializes the DeltaSharingTableDependency into a shallow dictionary of its immediate attributes."""
|
|
377
|
-
body = {}
|
|
378
|
-
if self.schema_name is not None:
|
|
379
|
-
body["schema_name"] = self.schema_name
|
|
380
|
-
if self.table_name is not None:
|
|
381
|
-
body["table_name"] = self.table_name
|
|
382
|
-
return body
|
|
383
|
-
|
|
384
|
-
@classmethod
|
|
385
|
-
def from_dict(cls, d: Dict[str, Any]) -> DeltaSharingTableDependency:
|
|
386
|
-
"""Deserializes the DeltaSharingTableDependency from a dictionary."""
|
|
387
|
-
return cls(schema_name=d.get("schema_name", None), table_name=d.get("table_name", None))
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
@dataclass
|
|
391
|
-
class Function:
|
|
327
|
+
class DeltaSharingFunction:
|
|
392
328
|
aliases: Optional[List[RegisteredModelAlias]] = None
|
|
393
329
|
"""The aliass of registered model."""
|
|
394
330
|
|
|
@@ -438,7 +374,7 @@ class Function:
|
|
|
438
374
|
"""The tags of the function."""
|
|
439
375
|
|
|
440
376
|
def as_dict(self) -> dict:
|
|
441
|
-
"""Serializes the
|
|
377
|
+
"""Serializes the DeltaSharingFunction into a dictionary suitable for use as a JSON request body."""
|
|
442
378
|
body = {}
|
|
443
379
|
if self.aliases:
|
|
444
380
|
body["aliases"] = [v.as_dict() for v in self.aliases]
|
|
@@ -475,7 +411,7 @@ class Function:
|
|
|
475
411
|
return body
|
|
476
412
|
|
|
477
413
|
def as_shallow_dict(self) -> dict:
|
|
478
|
-
"""Serializes the
|
|
414
|
+
"""Serializes the DeltaSharingFunction into a shallow dictionary of its immediate attributes."""
|
|
479
415
|
body = {}
|
|
480
416
|
if self.aliases:
|
|
481
417
|
body["aliases"] = self.aliases
|
|
@@ -512,8 +448,8 @@ class Function:
|
|
|
512
448
|
return body
|
|
513
449
|
|
|
514
450
|
@classmethod
|
|
515
|
-
def from_dict(cls, d: Dict[str, Any]) ->
|
|
516
|
-
"""Deserializes the
|
|
451
|
+
def from_dict(cls, d: Dict[str, Any]) -> DeltaSharingFunction:
|
|
452
|
+
"""Deserializes the DeltaSharingFunction from a dictionary."""
|
|
517
453
|
return cls(
|
|
518
454
|
aliases=_repeated_dict(d, "aliases", RegisteredModelAlias),
|
|
519
455
|
comment=d.get("comment", None),
|
|
@@ -534,6 +470,70 @@ class Function:
|
|
|
534
470
|
)
|
|
535
471
|
|
|
536
472
|
|
|
473
|
+
@dataclass
|
|
474
|
+
class DeltaSharingFunctionDependency:
|
|
475
|
+
"""A Function in UC as a dependency."""
|
|
476
|
+
|
|
477
|
+
function_name: Optional[str] = None
|
|
478
|
+
|
|
479
|
+
schema_name: Optional[str] = None
|
|
480
|
+
|
|
481
|
+
def as_dict(self) -> dict:
|
|
482
|
+
"""Serializes the DeltaSharingFunctionDependency into a dictionary suitable for use as a JSON request body."""
|
|
483
|
+
body = {}
|
|
484
|
+
if self.function_name is not None:
|
|
485
|
+
body["function_name"] = self.function_name
|
|
486
|
+
if self.schema_name is not None:
|
|
487
|
+
body["schema_name"] = self.schema_name
|
|
488
|
+
return body
|
|
489
|
+
|
|
490
|
+
def as_shallow_dict(self) -> dict:
|
|
491
|
+
"""Serializes the DeltaSharingFunctionDependency into a shallow dictionary of its immediate attributes."""
|
|
492
|
+
body = {}
|
|
493
|
+
if self.function_name is not None:
|
|
494
|
+
body["function_name"] = self.function_name
|
|
495
|
+
if self.schema_name is not None:
|
|
496
|
+
body["schema_name"] = self.schema_name
|
|
497
|
+
return body
|
|
498
|
+
|
|
499
|
+
@classmethod
|
|
500
|
+
def from_dict(cls, d: Dict[str, Any]) -> DeltaSharingFunctionDependency:
|
|
501
|
+
"""Deserializes the DeltaSharingFunctionDependency from a dictionary."""
|
|
502
|
+
return cls(function_name=d.get("function_name", None), schema_name=d.get("schema_name", None))
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
@dataclass
|
|
506
|
+
class DeltaSharingTableDependency:
|
|
507
|
+
"""A Table in UC as a dependency."""
|
|
508
|
+
|
|
509
|
+
schema_name: Optional[str] = None
|
|
510
|
+
|
|
511
|
+
table_name: Optional[str] = None
|
|
512
|
+
|
|
513
|
+
def as_dict(self) -> dict:
|
|
514
|
+
"""Serializes the DeltaSharingTableDependency into a dictionary suitable for use as a JSON request body."""
|
|
515
|
+
body = {}
|
|
516
|
+
if self.schema_name is not None:
|
|
517
|
+
body["schema_name"] = self.schema_name
|
|
518
|
+
if self.table_name is not None:
|
|
519
|
+
body["table_name"] = self.table_name
|
|
520
|
+
return body
|
|
521
|
+
|
|
522
|
+
def as_shallow_dict(self) -> dict:
|
|
523
|
+
"""Serializes the DeltaSharingTableDependency into a shallow dictionary of its immediate attributes."""
|
|
524
|
+
body = {}
|
|
525
|
+
if self.schema_name is not None:
|
|
526
|
+
body["schema_name"] = self.schema_name
|
|
527
|
+
if self.table_name is not None:
|
|
528
|
+
body["table_name"] = self.table_name
|
|
529
|
+
return body
|
|
530
|
+
|
|
531
|
+
@classmethod
|
|
532
|
+
def from_dict(cls, d: Dict[str, Any]) -> DeltaSharingTableDependency:
|
|
533
|
+
"""Deserializes the DeltaSharingTableDependency from a dictionary."""
|
|
534
|
+
return cls(schema_name=d.get("schema_name", None), table_name=d.get("table_name", None))
|
|
535
|
+
|
|
536
|
+
|
|
537
537
|
@dataclass
|
|
538
538
|
class FunctionParameterInfo:
|
|
539
539
|
"""Represents a parameter of a function. The same message is used for both input and output
|
|
@@ -809,7 +809,7 @@ class IpAccessList:
|
|
|
809
809
|
class ListProviderShareAssetsResponse:
|
|
810
810
|
"""Response to ListProviderShareAssets, which contains the list of assets of a share."""
|
|
811
811
|
|
|
812
|
-
functions: Optional[List[
|
|
812
|
+
functions: Optional[List[DeltaSharingFunction]] = None
|
|
813
813
|
"""The list of functions in the share."""
|
|
814
814
|
|
|
815
815
|
notebooks: Optional[List[NotebookFile]] = None
|
|
@@ -851,7 +851,7 @@ class ListProviderShareAssetsResponse:
|
|
|
851
851
|
def from_dict(cls, d: Dict[str, Any]) -> ListProviderShareAssetsResponse:
|
|
852
852
|
"""Deserializes the ListProviderShareAssetsResponse from a dictionary."""
|
|
853
853
|
return cls(
|
|
854
|
-
functions=_repeated_dict(d, "functions",
|
|
854
|
+
functions=_repeated_dict(d, "functions", DeltaSharingFunction),
|
|
855
855
|
notebooks=_repeated_dict(d, "notebooks", NotebookFile),
|
|
856
856
|
tables=_repeated_dict(d, "tables", Table),
|
|
857
857
|
volumes=_repeated_dict(d, "volumes", Volume),
|
databricks/sdk/service/sql.py
CHANGED
|
@@ -3161,6 +3161,123 @@ class ExternalLink:
|
|
|
3161
3161
|
)
|
|
3162
3162
|
|
|
3163
3163
|
|
|
3164
|
+
@dataclass
|
|
3165
|
+
class ExternalQuerySource:
|
|
3166
|
+
alert_id: Optional[str] = None
|
|
3167
|
+
"""The canonical identifier for this SQL alert"""
|
|
3168
|
+
|
|
3169
|
+
dashboard_id: Optional[str] = None
|
|
3170
|
+
"""The canonical identifier for this Lakeview dashboard"""
|
|
3171
|
+
|
|
3172
|
+
genie_space_id: Optional[str] = None
|
|
3173
|
+
"""The canonical identifier for this Genie space"""
|
|
3174
|
+
|
|
3175
|
+
job_info: Optional[ExternalQuerySourceJobInfo] = None
|
|
3176
|
+
|
|
3177
|
+
legacy_dashboard_id: Optional[str] = None
|
|
3178
|
+
"""The canonical identifier for this legacy dashboard"""
|
|
3179
|
+
|
|
3180
|
+
notebook_id: Optional[str] = None
|
|
3181
|
+
"""The canonical identifier for this notebook"""
|
|
3182
|
+
|
|
3183
|
+
sql_query_id: Optional[str] = None
|
|
3184
|
+
"""The canonical identifier for this SQL query"""
|
|
3185
|
+
|
|
3186
|
+
def as_dict(self) -> dict:
|
|
3187
|
+
"""Serializes the ExternalQuerySource into a dictionary suitable for use as a JSON request body."""
|
|
3188
|
+
body = {}
|
|
3189
|
+
if self.alert_id is not None:
|
|
3190
|
+
body["alert_id"] = self.alert_id
|
|
3191
|
+
if self.dashboard_id is not None:
|
|
3192
|
+
body["dashboard_id"] = self.dashboard_id
|
|
3193
|
+
if self.genie_space_id is not None:
|
|
3194
|
+
body["genie_space_id"] = self.genie_space_id
|
|
3195
|
+
if self.job_info:
|
|
3196
|
+
body["job_info"] = self.job_info.as_dict()
|
|
3197
|
+
if self.legacy_dashboard_id is not None:
|
|
3198
|
+
body["legacy_dashboard_id"] = self.legacy_dashboard_id
|
|
3199
|
+
if self.notebook_id is not None:
|
|
3200
|
+
body["notebook_id"] = self.notebook_id
|
|
3201
|
+
if self.sql_query_id is not None:
|
|
3202
|
+
body["sql_query_id"] = self.sql_query_id
|
|
3203
|
+
return body
|
|
3204
|
+
|
|
3205
|
+
def as_shallow_dict(self) -> dict:
|
|
3206
|
+
"""Serializes the ExternalQuerySource into a shallow dictionary of its immediate attributes."""
|
|
3207
|
+
body = {}
|
|
3208
|
+
if self.alert_id is not None:
|
|
3209
|
+
body["alert_id"] = self.alert_id
|
|
3210
|
+
if self.dashboard_id is not None:
|
|
3211
|
+
body["dashboard_id"] = self.dashboard_id
|
|
3212
|
+
if self.genie_space_id is not None:
|
|
3213
|
+
body["genie_space_id"] = self.genie_space_id
|
|
3214
|
+
if self.job_info:
|
|
3215
|
+
body["job_info"] = self.job_info
|
|
3216
|
+
if self.legacy_dashboard_id is not None:
|
|
3217
|
+
body["legacy_dashboard_id"] = self.legacy_dashboard_id
|
|
3218
|
+
if self.notebook_id is not None:
|
|
3219
|
+
body["notebook_id"] = self.notebook_id
|
|
3220
|
+
if self.sql_query_id is not None:
|
|
3221
|
+
body["sql_query_id"] = self.sql_query_id
|
|
3222
|
+
return body
|
|
3223
|
+
|
|
3224
|
+
@classmethod
|
|
3225
|
+
def from_dict(cls, d: Dict[str, Any]) -> ExternalQuerySource:
|
|
3226
|
+
"""Deserializes the ExternalQuerySource from a dictionary."""
|
|
3227
|
+
return cls(
|
|
3228
|
+
alert_id=d.get("alert_id", None),
|
|
3229
|
+
dashboard_id=d.get("dashboard_id", None),
|
|
3230
|
+
genie_space_id=d.get("genie_space_id", None),
|
|
3231
|
+
job_info=_from_dict(d, "job_info", ExternalQuerySourceJobInfo),
|
|
3232
|
+
legacy_dashboard_id=d.get("legacy_dashboard_id", None),
|
|
3233
|
+
notebook_id=d.get("notebook_id", None),
|
|
3234
|
+
sql_query_id=d.get("sql_query_id", None),
|
|
3235
|
+
)
|
|
3236
|
+
|
|
3237
|
+
|
|
3238
|
+
@dataclass
|
|
3239
|
+
class ExternalQuerySourceJobInfo:
|
|
3240
|
+
job_id: Optional[str] = None
|
|
3241
|
+
"""The canonical identifier for this job."""
|
|
3242
|
+
|
|
3243
|
+
job_run_id: Optional[str] = None
|
|
3244
|
+
"""The canonical identifier of the run. This ID is unique across all runs of all jobs."""
|
|
3245
|
+
|
|
3246
|
+
job_task_run_id: Optional[str] = None
|
|
3247
|
+
"""The canonical identifier of the task run."""
|
|
3248
|
+
|
|
3249
|
+
def as_dict(self) -> dict:
|
|
3250
|
+
"""Serializes the ExternalQuerySourceJobInfo into a dictionary suitable for use as a JSON request body."""
|
|
3251
|
+
body = {}
|
|
3252
|
+
if self.job_id is not None:
|
|
3253
|
+
body["job_id"] = self.job_id
|
|
3254
|
+
if self.job_run_id is not None:
|
|
3255
|
+
body["job_run_id"] = self.job_run_id
|
|
3256
|
+
if self.job_task_run_id is not None:
|
|
3257
|
+
body["job_task_run_id"] = self.job_task_run_id
|
|
3258
|
+
return body
|
|
3259
|
+
|
|
3260
|
+
def as_shallow_dict(self) -> dict:
|
|
3261
|
+
"""Serializes the ExternalQuerySourceJobInfo into a shallow dictionary of its immediate attributes."""
|
|
3262
|
+
body = {}
|
|
3263
|
+
if self.job_id is not None:
|
|
3264
|
+
body["job_id"] = self.job_id
|
|
3265
|
+
if self.job_run_id is not None:
|
|
3266
|
+
body["job_run_id"] = self.job_run_id
|
|
3267
|
+
if self.job_task_run_id is not None:
|
|
3268
|
+
body["job_task_run_id"] = self.job_task_run_id
|
|
3269
|
+
return body
|
|
3270
|
+
|
|
3271
|
+
@classmethod
|
|
3272
|
+
def from_dict(cls, d: Dict[str, Any]) -> ExternalQuerySourceJobInfo:
|
|
3273
|
+
"""Deserializes the ExternalQuerySourceJobInfo from a dictionary."""
|
|
3274
|
+
return cls(
|
|
3275
|
+
job_id=d.get("job_id", None),
|
|
3276
|
+
job_run_id=d.get("job_run_id", None),
|
|
3277
|
+
job_task_run_id=d.get("job_task_run_id", None),
|
|
3278
|
+
)
|
|
3279
|
+
|
|
3280
|
+
|
|
3164
3281
|
class Format(Enum):
|
|
3165
3282
|
|
|
3166
3283
|
ARROW_STREAM = "ARROW_STREAM"
|
|
@@ -5077,6 +5194,11 @@ class QueryInfo:
|
|
|
5077
5194
|
channel_used: Optional[ChannelInfo] = None
|
|
5078
5195
|
"""SQL Warehouse channel information at the time of query execution"""
|
|
5079
5196
|
|
|
5197
|
+
client_application: Optional[str] = None
|
|
5198
|
+
"""Client application that ran the statement. For example: Databricks SQL Editor, Tableau, and
|
|
5199
|
+
Power BI. This field is derived from information provided by client applications. While values
|
|
5200
|
+
are expected to remain static over time, this cannot be guaranteed."""
|
|
5201
|
+
|
|
5080
5202
|
duration: Optional[int] = None
|
|
5081
5203
|
"""Total execution time of the statement ( excluding result fetch time )."""
|
|
5082
5204
|
|
|
@@ -5113,6 +5235,11 @@ class QueryInfo:
|
|
|
5113
5235
|
query_id: Optional[str] = None
|
|
5114
5236
|
"""The query ID."""
|
|
5115
5237
|
|
|
5238
|
+
query_source: Optional[ExternalQuerySource] = None
|
|
5239
|
+
"""A struct that contains key-value pairs representing Databricks entities that were involved in
|
|
5240
|
+
the execution of this statement, such as jobs, notebooks, or dashboards. This field only records
|
|
5241
|
+
Databricks entities."""
|
|
5242
|
+
|
|
5116
5243
|
query_start_time_ms: Optional[int] = None
|
|
5117
5244
|
"""The time the query started."""
|
|
5118
5245
|
|
|
@@ -5149,6 +5276,8 @@ class QueryInfo:
|
|
|
5149
5276
|
body = {}
|
|
5150
5277
|
if self.channel_used:
|
|
5151
5278
|
body["channel_used"] = self.channel_used.as_dict()
|
|
5279
|
+
if self.client_application is not None:
|
|
5280
|
+
body["client_application"] = self.client_application
|
|
5152
5281
|
if self.duration is not None:
|
|
5153
5282
|
body["duration"] = self.duration
|
|
5154
5283
|
if self.endpoint_id is not None:
|
|
@@ -5173,6 +5302,8 @@ class QueryInfo:
|
|
|
5173
5302
|
body["query_end_time_ms"] = self.query_end_time_ms
|
|
5174
5303
|
if self.query_id is not None:
|
|
5175
5304
|
body["query_id"] = self.query_id
|
|
5305
|
+
if self.query_source:
|
|
5306
|
+
body["query_source"] = self.query_source.as_dict()
|
|
5176
5307
|
if self.query_start_time_ms is not None:
|
|
5177
5308
|
body["query_start_time_ms"] = self.query_start_time_ms
|
|
5178
5309
|
if self.query_text is not None:
|
|
@@ -5198,6 +5329,8 @@ class QueryInfo:
|
|
|
5198
5329
|
body = {}
|
|
5199
5330
|
if self.channel_used:
|
|
5200
5331
|
body["channel_used"] = self.channel_used
|
|
5332
|
+
if self.client_application is not None:
|
|
5333
|
+
body["client_application"] = self.client_application
|
|
5201
5334
|
if self.duration is not None:
|
|
5202
5335
|
body["duration"] = self.duration
|
|
5203
5336
|
if self.endpoint_id is not None:
|
|
@@ -5222,6 +5355,8 @@ class QueryInfo:
|
|
|
5222
5355
|
body["query_end_time_ms"] = self.query_end_time_ms
|
|
5223
5356
|
if self.query_id is not None:
|
|
5224
5357
|
body["query_id"] = self.query_id
|
|
5358
|
+
if self.query_source:
|
|
5359
|
+
body["query_source"] = self.query_source
|
|
5225
5360
|
if self.query_start_time_ms is not None:
|
|
5226
5361
|
body["query_start_time_ms"] = self.query_start_time_ms
|
|
5227
5362
|
if self.query_text is not None:
|
|
@@ -5247,6 +5382,7 @@ class QueryInfo:
|
|
|
5247
5382
|
"""Deserializes the QueryInfo from a dictionary."""
|
|
5248
5383
|
return cls(
|
|
5249
5384
|
channel_used=_from_dict(d, "channel_used", ChannelInfo),
|
|
5385
|
+
client_application=d.get("client_application", None),
|
|
5250
5386
|
duration=d.get("duration", None),
|
|
5251
5387
|
endpoint_id=d.get("endpoint_id", None),
|
|
5252
5388
|
error_message=d.get("error_message", None),
|
|
@@ -5259,6 +5395,7 @@ class QueryInfo:
|
|
|
5259
5395
|
plans_state=_enum(d, "plans_state", PlansState),
|
|
5260
5396
|
query_end_time_ms=d.get("query_end_time_ms", None),
|
|
5261
5397
|
query_id=d.get("query_id", None),
|
|
5398
|
+
query_source=_from_dict(d, "query_source", ExternalQuerySource),
|
|
5262
5399
|
query_start_time_ms=d.get("query_start_time_ms", None),
|
|
5263
5400
|
query_text=d.get("query_text", None),
|
|
5264
5401
|
rows_produced=d.get("rows_produced", None),
|
|
@@ -7409,6 +7546,7 @@ class WarehousePermissionLevel(Enum):
|
|
|
7409
7546
|
CAN_MANAGE = "CAN_MANAGE"
|
|
7410
7547
|
CAN_MONITOR = "CAN_MONITOR"
|
|
7411
7548
|
CAN_USE = "CAN_USE"
|
|
7549
|
+
CAN_VIEW = "CAN_VIEW"
|
|
7412
7550
|
IS_OWNER = "IS_OWNER"
|
|
7413
7551
|
|
|
7414
7552
|
|
databricks/sdk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.50.0"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
|
|
2
|
-
databricks/sdk/__init__.py,sha256=
|
|
2
|
+
databricks/sdk/__init__.py,sha256=byaxgSes20OkcLun7EwHxzDw0zfvTD8i9huDEUVWlR0,55636
|
|
3
3
|
databricks/sdk/_base_client.py,sha256=IMHtzC5BhWt-lBVjifewR1Ah5fegGDMv0__-O1hCxWI,15850
|
|
4
4
|
databricks/sdk/_property.py,sha256=ccbxhkXZmZOxbx2sqKMTzhVZDuvWXG0WPHFRgac6JAM,1701
|
|
5
5
|
databricks/sdk/azure.py,sha256=sN_ARpmP9h1JovtiHIsDLtrVQP_K11eNDDtHS6PD19k,1015
|
|
@@ -15,7 +15,7 @@ databricks/sdk/oauth.py,sha256=8Cod3Fa4gPuVhd7zFBkVOVLB1fwiAKkyibU6_wnpqDE,28411
|
|
|
15
15
|
databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
|
|
16
16
|
databricks/sdk/retries.py,sha256=7k2kEexGqGKXHNAWHbPFSZSugU8UIU0qtyly_hix22Q,2581
|
|
17
17
|
databricks/sdk/useragent.py,sha256=boEgzTv-Zmo6boipZKjSopNy0CXg4GShC1_lTKpJgqs,7361
|
|
18
|
-
databricks/sdk/version.py,sha256=
|
|
18
|
+
databricks/sdk/version.py,sha256=ZGGb_j5nPbepbHyYElcl845wxThO9mrTqMfv_Wc33E4,23
|
|
19
19
|
databricks/sdk/_widgets/__init__.py,sha256=VhI-VvLlr3rKUT1nbROslHJIbmZX_tPJ9rRhrdFsYUA,2811
|
|
20
20
|
databricks/sdk/_widgets/default_widgets_utils.py,sha256=_hwCbptLbRzWEmknco0H1wQNAYcuy2pjFO9NiRbvFeo,1127
|
|
21
21
|
databricks/sdk/_widgets/ipywidgets_utils.py,sha256=mg3rEPG9z76e0yVjGgcLybUvd_zSuN5ziGeKiZ-c8Ew,2927
|
|
@@ -42,29 +42,29 @@ databricks/sdk/runtime/__init__.py,sha256=6nthZxeYY1HjHieQcP7kXVLIId7w2yfHpZRXXt
|
|
|
42
42
|
databricks/sdk/runtime/dbutils_stub.py,sha256=S_pgWyGmwp3Ay-pMDEXccYsPwNVqCtz7MpD3fZVlHUA,11408
|
|
43
43
|
databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
44
|
databricks/sdk/service/_internal.py,sha256=PY83MPehEwGuMzCnyvolqglnfZeQ7-eS38kedTa7KDU,1985
|
|
45
|
-
databricks/sdk/service/apps.py,sha256=
|
|
46
|
-
databricks/sdk/service/billing.py,sha256=
|
|
47
|
-
databricks/sdk/service/catalog.py,sha256=
|
|
45
|
+
databricks/sdk/service/apps.py,sha256=Qe5WLmtvGJQdMXRQm4-huR7_wudAfW0971IBE4_dezg,56078
|
|
46
|
+
databricks/sdk/service/billing.py,sha256=uq5NCqAM3Jv8qIeID9gSrIZ9r5MNHUCzLFrK-LoCb3o,99205
|
|
47
|
+
databricks/sdk/service/catalog.py,sha256=0xE6Ps7F4_ut_2k14BwnWnjMoGyLZNkCJyhU4shn_F4,603900
|
|
48
48
|
databricks/sdk/service/cleanrooms.py,sha256=TON2V0-T_TOk31K9bUypuRJaAJhHMM0bQDbMjJWlCDQ,58613
|
|
49
|
-
databricks/sdk/service/compute.py,sha256=
|
|
50
|
-
databricks/sdk/service/dashboards.py,sha256=
|
|
49
|
+
databricks/sdk/service/compute.py,sha256=VY3qhNk83Ft_tO-qC3YSWOdMH7vwracci7AFpXDlDHU,565926
|
|
50
|
+
databricks/sdk/service/dashboards.py,sha256=ddpcJ981Otok5MUAMcc-HN0xic3edyC3NrECJNAqV_Q,118313
|
|
51
51
|
databricks/sdk/service/files.py,sha256=gWjtORuRe7B1VZol0rr_dcSHq1gMmuKszGHaMqunslU,46234
|
|
52
|
-
databricks/sdk/service/iam.py,sha256=
|
|
53
|
-
databricks/sdk/service/jobs.py,sha256=
|
|
54
|
-
databricks/sdk/service/marketplace.py,sha256=
|
|
55
|
-
databricks/sdk/service/ml.py,sha256=
|
|
56
|
-
databricks/sdk/service/oauth2.py,sha256=
|
|
57
|
-
databricks/sdk/service/pipelines.py,sha256=
|
|
52
|
+
databricks/sdk/service/iam.py,sha256=23mpLuwFwNAwK632y11dI7TH3jXmShJLiDx_KxKt6JQ,173744
|
|
53
|
+
databricks/sdk/service/jobs.py,sha256=e6C6CvP_9w-SoLACT2zCOagvm7gCjLjcsQVPloL2kKE,462704
|
|
54
|
+
databricks/sdk/service/marketplace.py,sha256=NLCJ7zb0Oj5nhLth9R1Szuz6fSSoxAnsKvFhKgx994s,175741
|
|
55
|
+
databricks/sdk/service/ml.py,sha256=ToIiQYYc-V4h9VnYO52C2THu1CH7YvKe22bjmL7HYVw,328351
|
|
56
|
+
databricks/sdk/service/oauth2.py,sha256=EKptQcQnTX0M4JDLfzwTKekjWLDS_LPIwZdTXv6-YwU,80467
|
|
57
|
+
databricks/sdk/service/pipelines.py,sha256=DN2PfcsavsV8Bs5hl7coGLXcfhEkk0lcJhSXpfSpyHQ,168165
|
|
58
58
|
databricks/sdk/service/provisioning.py,sha256=-Ly2o02i-jhNmiP9zLPeYF8H2usoB-oTG0RLF5gkIpc,169311
|
|
59
|
-
databricks/sdk/service/serving.py,sha256=
|
|
60
|
-
databricks/sdk/service/settings.py,sha256=
|
|
61
|
-
databricks/sdk/service/sharing.py,sha256=
|
|
62
|
-
databricks/sdk/service/sql.py,sha256=
|
|
59
|
+
databricks/sdk/service/serving.py,sha256=NuRvg6qky6z5S49wKo2AK3cCI3mOVBsDEFR4p27ONGE,213294
|
|
60
|
+
databricks/sdk/service/settings.py,sha256=sw60Yda5bGyxqiKn4gKdS8mTqTNJg062R1arV9Li544,343481
|
|
61
|
+
databricks/sdk/service/sharing.py,sha256=IV-rws5EzsHFfyjSBlbPEDQKZvbH4OgDp9Yxg9Hyrwk,142557
|
|
62
|
+
databricks/sdk/service/sql.py,sha256=30nXPbhaDCYiO7CFQkC-gBryK6o3kVTb0FxuAfUyRYk,415340
|
|
63
63
|
databricks/sdk/service/vectorsearch.py,sha256=stdRmV-iE8L0rGzhSSG5tmoVRXb9bPItSE_ss6HQVDo,79897
|
|
64
64
|
databricks/sdk/service/workspace.py,sha256=T0ZbnG1qcPjKysGO_tBzl5x1PyalydeYJRBZbooYNm0,130893
|
|
65
|
-
databricks_sdk-0.
|
|
66
|
-
databricks_sdk-0.
|
|
67
|
-
databricks_sdk-0.
|
|
68
|
-
databricks_sdk-0.
|
|
69
|
-
databricks_sdk-0.
|
|
70
|
-
databricks_sdk-0.
|
|
65
|
+
databricks_sdk-0.50.0.dist-info/licenses/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
|
|
66
|
+
databricks_sdk-0.50.0.dist-info/licenses/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
|
|
67
|
+
databricks_sdk-0.50.0.dist-info/METADATA,sha256=DioZ46kvPoHVNyGhTmFtg0C274UyQ5vQnjKfTiChPdE,38334
|
|
68
|
+
databricks_sdk-0.50.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
69
|
+
databricks_sdk-0.50.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
|
|
70
|
+
databricks_sdk-0.50.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|