databricks-sdk 0.65.0__tar.gz → 0.74.0__tar.gz
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.
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/CHANGELOG.md +538 -87
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/PKG-INFO +7 -4
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/README.md +5 -3
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/__init__.py +127 -46
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/_base_client.py +4 -1
- databricks_sdk-0.74.0/databricks/sdk/common/lro.py +17 -0
- databricks_sdk-0.74.0/databricks/sdk/common/types/fieldmask.py +39 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/config.py +65 -14
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/credentials_provider.py +112 -19
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/dbutils.py +22 -1
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/parser.py +8 -3
- databricks_sdk-0.74.0/databricks/sdk/mixins/files.py +2620 -0
- databricks_sdk-0.74.0/databricks/sdk/mixins/files_utils.py +293 -0
- databricks_sdk-0.74.0/databricks/sdk/mixins/sharing.py +44 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/oauth.py +91 -3
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/oidc.py +1 -1
- databricks_sdk-0.74.0/databricks/sdk/oidc_token_supplier.py +108 -0
- databricks_sdk-0.74.0/databricks/sdk/retries.py +169 -0
- databricks_sdk-0.74.0/databricks/sdk/service/__init__.py +0 -0
- databricks_sdk-0.74.0/databricks/sdk/service/_internal.py +164 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/agentbricks.py +3 -1
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/apps.py +273 -1
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/billing.py +30 -7
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/catalog.py +1167 -568
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/cleanrooms.py +13 -5
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/compute.py +100 -46
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/dashboards.py +318 -27
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/database.py +154 -49
- databricks_sdk-0.74.0/databricks/sdk/service/dataquality.py +1294 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/files.py +9 -73
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/iam.py +2575 -518
- databricks_sdk-0.74.0/databricks/sdk/service/iamv2.py +649 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/jobs.py +214 -237
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/marketplace.py +20 -1
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/ml.py +1543 -60
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/oauth2.py +41 -23
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/pipelines.py +564 -27
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/provisioning.py +611 -658
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/qualitymonitorv2.py +3 -1
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/serving.py +75 -22
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/settings.py +52 -74
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/settingsv2.py +57 -67
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/sharing.py +58 -73
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/sql.py +428 -175
- databricks_sdk-0.74.0/databricks/sdk/service/tags.py +512 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/vectorsearch.py +254 -3
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/service/workspace.py +100 -112
- databricks_sdk-0.74.0/databricks/sdk/version.py +1 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/PKG-INFO +7 -4
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/SOURCES.txt +7 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/requires.txt +1 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/pyproject.toml +3 -0
- databricks_sdk-0.65.0/databricks/sdk/mixins/files.py +0 -1519
- databricks_sdk-0.65.0/databricks/sdk/oidc_token_supplier.py +0 -28
- databricks_sdk-0.65.0/databricks/sdk/retries.py +0 -69
- databricks_sdk-0.65.0/databricks/sdk/service/_internal.py +0 -72
- databricks_sdk-0.65.0/databricks/sdk/service/tags.py +0 -232
- databricks_sdk-0.65.0/databricks/sdk/version.py +0 -1
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/CONTRIBUTING.md +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/DCO +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/LICENSE +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/MANIFEST.in +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/Makefile +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/NOTICE +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/SECURITY.md +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/_property.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/_widgets/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/_widgets/default_widgets_utils.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/_widgets/ipywidgets_utils.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/azure.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/casing.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/clock.py +0 -0
- {databricks_sdk-0.65.0/databricks/sdk/mixins → databricks_sdk-0.74.0/databricks/sdk/common/types}/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/core.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/data_plane.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/environments.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/base.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/customizer.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/deserializer.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/details.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/mapper.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/overrides.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/platform.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/private_link.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/sdk.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/logger/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/logger/round_trip_logger.py +0 -0
- {databricks_sdk-0.65.0/databricks/sdk/service → databricks_sdk-0.74.0/databricks/sdk/mixins}/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/compute.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/jobs.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/open_ai_client.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/workspace.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/py.typed +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/runtime/__init__.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/runtime/dbutils_stub.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks/sdk/useragent.py +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/dependency_links.txt +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/top_level.txt +0 -0
- {databricks_sdk-0.65.0 → databricks_sdk-0.74.0}/setup.cfg +0 -0
|
@@ -1,6 +1,457 @@
|
|
|
1
1
|
# Version changelog
|
|
2
2
|
|
|
3
|
-
## Release v0.
|
|
3
|
+
## Release v0.74.0 (2025-12-10)
|
|
4
|
+
|
|
5
|
+
### New Features and Improvements
|
|
6
|
+
* Add new auth type (`runtime-oauth`) for notebooks: Introduce a new authentication mechanism that allows notebooks to authenticate using OAuth tokens
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Fixed an issue where download from Shared Volumes could fail by falling back to Files API whenever Presigned URLs are not available.
|
|
11
|
+
|
|
12
|
+
### API Changes
|
|
13
|
+
* Add `create_space()` and `update_space()` methods for [w.genie](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/dashboards/genie.html) workspace-level service.
|
|
14
|
+
* Add `create_kafka_config()`, `delete_kafka_config()`, `get_kafka_config()`, `list_kafka_configs()` and `update_kafka_config()` methods for [w.feature_engineering](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/ml/feature_engineering.html) workspace-level service.
|
|
15
|
+
* Add `delete_online_table()` method for [w.feature_store](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/ml/feature_store.html) workspace-level service.
|
|
16
|
+
* Add `retrieve_user_visible_metrics()` method for [w.vector_search_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/vectorsearch/vector_search_endpoints.html) workspace-level service.
|
|
17
|
+
* Add `major_version` field for `databricks.sdk.service.billing.CreateBillingUsageDashboardRequest`.
|
|
18
|
+
* Add `include_serialized_space` field for `databricks.sdk.service.dashboards.GenieGetSpaceRequest`.
|
|
19
|
+
* Add `serialized_space` field for `databricks.sdk.service.dashboards.GenieSpace`.
|
|
20
|
+
* Add `purpose` field for `databricks.sdk.service.dashboards.TextAttachment`.
|
|
21
|
+
* Add `budget_policy_id` field for `databricks.sdk.service.database.NewPipelineSpec`.
|
|
22
|
+
* Add `model` field for `databricks.sdk.service.jobs.TriggerSettings`.
|
|
23
|
+
* Add `kafka_source` field for `databricks.sdk.service.ml.DataSource`.
|
|
24
|
+
* Add `connection_parameters` field for `databricks.sdk.service.pipelines.IngestionGatewayPipelineDefinition`.
|
|
25
|
+
* Add `ingest_from_uc_foreign_catalog` field for `databricks.sdk.service.pipelines.IngestionPipelineDefinition`.
|
|
26
|
+
* Add `rewind_spec` field for `databricks.sdk.service.pipelines.StartUpdate`.
|
|
27
|
+
* Add `type_text` field for `databricks.sdk.service.vectorsearch.ColumnInfo`.
|
|
28
|
+
* Add `foreign_catalog` enum value for `databricks.sdk.service.pipelines.IngestionSourceType`.
|
|
29
|
+
* Add `creating` and `create_failed` enum values for `databricks.sdk.service.settings.CustomerFacingNetworkConnectivityConfigAwsPrivateEndpointRulePrivateLinkConnectionState`.
|
|
30
|
+
* Add `creating` and `create_failed` enum values for `databricks.sdk.service.settings.NccAzurePrivateEndpointRuleConnectionState`.
|
|
31
|
+
* [Breaking] Change `destinations` field for `databricks.sdk.service.catalog.AccessRequestDestinations` to no longer be required.
|
|
32
|
+
* Change `destinations` field for `databricks.sdk.service.catalog.AccessRequestDestinations` to no longer be required.
|
|
33
|
+
* [Breaking] Change `online_store_config` field for `databricks.sdk.service.ml.MaterializedFeature` to type `databricks.sdk.service.ml.OnlineStoreConfig` dataclass.
|
|
34
|
+
* Add [w.workspace_entity_tag_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/tags/workspace_entity_tag_assignments.html) workspace-level service.
|
|
35
|
+
* Add `clone()` method for [w.pipelines](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/pipelines/pipelines.html) workspace-level service.
|
|
36
|
+
* Add `dataset_catalog` and `dataset_schema` fields for `databricks.sdk.service.dashboards.CreateDashboardRequest`.
|
|
37
|
+
* Add `dataset_catalog` and `dataset_schema` fields for `databricks.sdk.service.dashboards.UpdateDashboardRequest`.
|
|
38
|
+
* Add `purge_data` field for `databricks.sdk.service.database.DeleteSyncedDatabaseTableRequest`.
|
|
39
|
+
* Add `cron_schedule` field for `databricks.sdk.service.ml.MaterializedFeature`.
|
|
40
|
+
* Add `truncation` field for `databricks.sdk.service.pipelines.PipelineEvent`.
|
|
41
|
+
* Add `gcp_service_account` field for `databricks.sdk.service.provisioning.CreateGcpKeyInfo`.
|
|
42
|
+
* Add `gcp_service_account` field for `databricks.sdk.service.provisioning.GcpKeyInfo`.
|
|
43
|
+
* Add `has_delta_uniform_iceberg` field for `databricks.sdk.service.sharing.TableInternalAttributes`.
|
|
44
|
+
* Add `foreign_table` and `volume` enum values for `databricks.sdk.service.sharing.SharedDataObjectDataObjectType`.
|
|
45
|
+
* Change `time_window` field for `databricks.sdk.service.ml.Feature` to no longer be required.
|
|
46
|
+
* [Breaking] Change `time_window` field for `databricks.sdk.service.ml.Feature` to no longer be required.
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## Release v0.73.0 (2025-11-05)
|
|
50
|
+
|
|
51
|
+
### Security
|
|
52
|
+
- Update `protobuf` dependency constraints to exclude known vulnerable versions (related to `SNYK-PYTHON-PROTOBUF-10364902`).
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## Release v0.72.0 (2025-11-04)
|
|
56
|
+
|
|
57
|
+
### Bug Fixes
|
|
58
|
+
- Fix `FilesExt` can fail to upload and download data when Presigned URLs are not available in certain environments (e.g. Serverless GPU clusters).
|
|
59
|
+
|
|
60
|
+
- Fix `FilesExt.upload` and `FilesExt.upload_from` would fail when the source content is empty and `use_parallel=True`.
|
|
61
|
+
|
|
62
|
+
### API Changes
|
|
63
|
+
* Add `google_ads`, `tiktok_ads`, `salesforce_marketing_cloud`, `hubspot`, `workday_hcm`, `guidewire` and `zendesk` enum values for `databricks.sdk.service.pipelines.IngestionSourceType`.
|
|
64
|
+
* Add `batch_create_materialized_features()` method for [w.feature_engineering](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/ml/feature_engineering.html) workspace-level service.
|
|
65
|
+
* Add `lineage_context` field for `databricks.sdk.service.ml.Feature`.
|
|
66
|
+
* Add `autoscale_v2` enum value for `databricks.sdk.service.compute.EventDetailsCause`.
|
|
67
|
+
* Add `unsupported_conversation_type_exception` enum value for `databricks.sdk.service.dashboards.MessageErrorType`.
|
|
68
|
+
* Add `red_state` and `yellow_state` enum values for `databricks.sdk.service.vectorsearch.EndpointStatusState`.
|
|
69
|
+
* [Breaking] Change `table_names` field for `databricks.sdk.service.jobs.TableUpdateTriggerConfiguration` to be required.
|
|
70
|
+
* Change `table_names` field for `databricks.sdk.service.jobs.TableUpdateTriggerConfiguration` to be required.
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## Release v0.71.0 (2025-10-30)
|
|
74
|
+
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
|
|
77
|
+
- Fix the issue where `FilesExt.upload`'s second parameter was changed from `contents` to `content` unintentionally. Now the interface is backward compatible to versions previous than 0.69.0.
|
|
78
|
+
|
|
79
|
+
### API Changes
|
|
80
|
+
* Add `instance_profile_arn` field for `databricks.sdk.service.compute.InstancePoolAwsAttributes`.
|
|
81
|
+
* Add `continuous`, `sliding` and `tumbling` fields for `databricks.sdk.service.ml.TimeWindow`.
|
|
82
|
+
* Add `usage_policy_id` field for `databricks.sdk.service.pipelines.CreatePipeline`.
|
|
83
|
+
* Add `usage_policy_id` field for `databricks.sdk.service.pipelines.EditPipeline`.
|
|
84
|
+
* Add `usage_policy_id` field for `databricks.sdk.service.pipelines.PipelineSpec`.
|
|
85
|
+
* Add `read_files_bytes` field for `databricks.sdk.service.sql.QueryMetrics`.
|
|
86
|
+
* Add `select` enum value for `databricks.sdk.service.apps.AppManifestAppResourceUcSecurableSpecUcSecurablePermission`.
|
|
87
|
+
* Add `table` enum value for `databricks.sdk.service.apps.AppManifestAppResourceUcSecurableSpecUcSecurableType`.
|
|
88
|
+
* Add `decommission_started` and `decommission_ended` enum values for `databricks.sdk.service.compute.EventType`.
|
|
89
|
+
* Add `dbr_image_resolution_failure` enum value for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
90
|
+
* Add `dbr_image_resolution_failure` enum value for `databricks.sdk.service.sql.TerminationReasonCode`.
|
|
91
|
+
* [Breaking] Change `offline_store_config` and `online_store_config` fields for `databricks.sdk.service.ml.MaterializedFeature` to no longer be required.
|
|
92
|
+
* Change `offline_store_config` and `online_store_config` fields for `databricks.sdk.service.ml.MaterializedFeature` to no longer be required.
|
|
93
|
+
* [Breaking] Change `lifecycle_state` field for `databricks.sdk.service.sql.AlertV2` to type `databricks.sdk.service.sql.AlertLifecycleState` dataclass.
|
|
94
|
+
* [Breaking] Remove `table` field for `databricks.sdk.service.jobs.TriggerSettings`.
|
|
95
|
+
* [Breaking] Remove `duration` and `offset` fields for `databricks.sdk.service.ml.TimeWindow`.
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## Release v0.70.0 (2025-10-23)
|
|
99
|
+
|
|
100
|
+
### Bug Fixes
|
|
101
|
+
- Improving the error message that is shown when the unsupported `dbutils.credentials.getServiceCredentialsProvider` method is used. This method can only be used inside of a notebook.
|
|
102
|
+
|
|
103
|
+
### API Changes
|
|
104
|
+
* Add `create_materialized_feature()`, `delete_materialized_feature()`, `get_materialized_feature()`, `list_materialized_features()` and `update_materialized_feature()` methods for [w.feature_engineering](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/ml/feature_engineering.html) workspace-level service.
|
|
105
|
+
* Add `filter_condition` field for `databricks.sdk.service.ml.Feature`.
|
|
106
|
+
* Add `absolute_session_lifetime_in_minutes` and `enable_single_use_refresh_tokens` fields for `databricks.sdk.service.oauth2.TokenAccessPolicy`.
|
|
107
|
+
* Add `network_connectivity_config_id` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest`.
|
|
108
|
+
* Add `oauth_mtls` enum value for `databricks.sdk.service.catalog.CredentialType`.
|
|
109
|
+
* Add `network_check_nic_failure_due_to_misconfig`, `network_check_dns_server_failure_due_to_misconfig`, `network_check_storage_failure_due_to_misconfig`, `network_check_metadata_endpoint_failure_due_to_misconfig`, `network_check_control_plane_failure_due_to_misconfig` and `network_check_multiple_components_failure_due_to_misconfig` enum values for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
110
|
+
* Add `creating` and `create_failed` enum values for `databricks.sdk.service.settings.NccPrivateEndpointRulePrivateLinkConnectionState`.
|
|
111
|
+
* Add `network_check_nic_failure_due_to_misconfig`, `network_check_dns_server_failure_due_to_misconfig`, `network_check_storage_failure_due_to_misconfig`, `network_check_metadata_endpoint_failure_due_to_misconfig`, `network_check_control_plane_failure_due_to_misconfig` and `network_check_multiple_components_failure_due_to_misconfig` enum values for `databricks.sdk.service.sql.TerminationReasonCode`.
|
|
112
|
+
* [Breaking] Change `display_name`, `evaluation`, `query_text`, `schedule` and `warehouse_id` fields for `databricks.sdk.service.sql.AlertV2` to be required.
|
|
113
|
+
* Change `display_name`, `evaluation`, `query_text`, `schedule` and `warehouse_id` fields for `databricks.sdk.service.sql.AlertV2` to be required.
|
|
114
|
+
* Change `comparison_operator` and `source` fields for `databricks.sdk.service.sql.AlertV2Evaluation` to be required.
|
|
115
|
+
* [Breaking] Change `comparison_operator` and `source` fields for `databricks.sdk.service.sql.AlertV2Evaluation` to be required.
|
|
116
|
+
* Change `name` field for `databricks.sdk.service.sql.AlertV2OperandColumn` to be required.
|
|
117
|
+
* [Breaking] Change `name` field for `databricks.sdk.service.sql.AlertV2OperandColumn` to be required.
|
|
118
|
+
* [Breaking] Change `quartz_cron_schedule` and `timezone_id` fields for `databricks.sdk.service.sql.CronSchedule` to be required.
|
|
119
|
+
* Change `quartz_cron_schedule` and `timezone_id` fields for `databricks.sdk.service.sql.CronSchedule` to be required.
|
|
120
|
+
* [Breaking] Remove `update()` method for [w.recipient_federation_policies](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/sharing/recipient_federation_policies.html) workspace-level service.
|
|
121
|
+
* [Breaking] Remove `results` field for `databricks.sdk.service.sql.ListAlertsV2Response`.
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
## Release v0.69.0 (2025-10-20)
|
|
125
|
+
|
|
126
|
+
### New Features and Improvements
|
|
127
|
+
|
|
128
|
+
* Add a new interface `upload_from` to `databricks.sdk.mixins.FilesExt` to support upload from a file in local filesystem.
|
|
129
|
+
* Improve `databricks.sdk.mixins.FilesExt` upload throughput by uploading data in parallel by default.
|
|
130
|
+
* Add a new interface `download_to` to `databricks.sdk.mixins.FilesExt` to support download to a file in local filesystem. This interface will also download the file in parallel by default. Parallel downloading is currently unavailable on Windows.
|
|
131
|
+
* Improve `databricks.sdk.mixins.FilesExt.upload` to support uploading when Presigned URL is not enabled for the Workspace by introducing a fallback to Single Part Upload.
|
|
132
|
+
|
|
133
|
+
### API Changes
|
|
134
|
+
|
|
135
|
+
* Add `upload_from()`, `download_to()` method for `databricks.sdk.mixins.FilesExt`.
|
|
136
|
+
* Add `use_parallel`, `parallelism`, `part_size` field for `databricks.sdk.mixins.FilesExt.upload`.
|
|
137
|
+
* [Breaking] Change `files_api_client_download_max_total_recovers` to `files_ext_client_download_max_total_recovers` for `databricks.sdk.Config`
|
|
138
|
+
* [Breaking] Change `files_api_client_download_max_total_recovers_without_progressing` to `files_ext_client_download_max_total_recovers_without_progressing` for `databricks.sdk.Config`
|
|
139
|
+
* [Breaking] Change `multipart_upload_min_stream_size` to `files_ext_multipart_upload_min_stream_size` for `databricks.sdk.Config`
|
|
140
|
+
* [Breaking] Change `multipart_upload_batch_url_count` to `files_ext_multipart_upload_batch_url_count` for `databricks.sdk.Config`
|
|
141
|
+
* [Breaking] Change `multipart_upload_chunk_size` to `files_ext_multipart_upload_default_part_size` for `databricks.sdk.Config`
|
|
142
|
+
* [Breaking] Change `multipart_upload_url_expiration_duration` to `files_ext_multipart_upload_url_expiration_duration` for `databricks.sdk.Config`
|
|
143
|
+
* [Breaking] Change `multipart_upload_max_retries` to `files_ext_multipart_upload_max_retries` for `databricks.sdk.Config`
|
|
144
|
+
* Add `files_ext_client_download_streaming_chunk_size`, `files_ext_multipart_upload_part_size_options`, `files_ext_multipart_upload_max_part_size`, `files_ext_multipart_upload_default_parallelism`, `files_ext_presigned_download_url_expiration_duration`, `files_ext_parallel_download_default_parallelism`, `files_ext_parallel_download_min_file_size`, `files_ext_parallel_download_default_part_size`, `files_ext_parallel_download_max_retries` for `databricks.sdk.Config`
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
## Release v0.68.0 (2025-10-14)
|
|
148
|
+
|
|
149
|
+
### New Features and Improvements
|
|
150
|
+
|
|
151
|
+
* Add native support for authentication through Azure DevOps OIDC.
|
|
152
|
+
|
|
153
|
+
### Bug Fixes
|
|
154
|
+
* Fix a security issue that resulted in bearer tokens being logged in exception messages.
|
|
155
|
+
|
|
156
|
+
### API Changes
|
|
157
|
+
* Add `databricks.sdk.service.dataquality` package.
|
|
158
|
+
* Add [w.data_quality](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/dataquality/data_quality.html) workspace-level service.
|
|
159
|
+
* Add `create_update()` and `get_update()` methods for [w.apps](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/apps/apps.html) workspace-level service.
|
|
160
|
+
* Add `compute_size` field for `databricks.sdk.service.apps.App`.
|
|
161
|
+
* Add `genie_space` field for `databricks.sdk.service.apps.AppResource`.
|
|
162
|
+
* Add `skip_validation` field for `databricks.sdk.service.catalog.AccountsCreateStorageCredential`.
|
|
163
|
+
* Add `skip_validation` field for `databricks.sdk.service.catalog.AccountsUpdateStorageCredential`.
|
|
164
|
+
* Add `aliases`, `browse_only`, `created_at`, `created_by`, `full_name`, `metastore_id`, `owner`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.CreateRegisteredModelRequest`.
|
|
165
|
+
* Add `catalog_name`, `id`, `model_name` and `schema_name` fields for `databricks.sdk.service.catalog.RegisteredModelAlias`.
|
|
166
|
+
* Add `aliases`, `catalog_name`, `created_at`, `created_by`, `id`, `metastore_id`, `model_name`, `model_version_dependencies`, `run_id`, `run_workspace_id`, `schema_name`, `source`, `status`, `storage_location`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.UpdateModelVersionRequest`.
|
|
167
|
+
* Add `aliases`, `browse_only`, `catalog_name`, `created_at`, `created_by`, `metastore_id`, `name`, `schema_name`, `storage_location`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.UpdateRegisteredModelRequest`.
|
|
168
|
+
* Add `key_region` field for `databricks.sdk.service.provisioning.CreateAwsKeyInfo`.
|
|
169
|
+
* Add `role_arn` field for `databricks.sdk.service.provisioning.CreateStorageConfigurationRequest`.
|
|
170
|
+
* Add `azure_key_info` field for `databricks.sdk.service.provisioning.CustomerManagedKey`.
|
|
171
|
+
* [Breaking] Add `customer_facing_private_access_settings` field for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
172
|
+
* Add `role_arn` field for `databricks.sdk.service.provisioning.StorageConfiguration`.
|
|
173
|
+
* [Breaking] Add `customer_facing_workspace` field for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
174
|
+
* Add `update_mask` field for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
175
|
+
* Add `compute_mode`, `network`, `network_connectivity_config_id` and `storage_mode` fields for `databricks.sdk.service.provisioning.Workspace`.
|
|
176
|
+
* Add `enable_serverless_compute` field for `databricks.sdk.service.sql.GetWorkspaceWarehouseConfigResponse`.
|
|
177
|
+
* Add `page_size` and `page_token` fields for `databricks.sdk.service.sql.ListWarehousesRequest`.
|
|
178
|
+
* Add `next_page_token` field for `databricks.sdk.service.sql.ListWarehousesResponse`.
|
|
179
|
+
* Add `enable_serverless_compute` field for `databricks.sdk.service.sql.SetWorkspaceWarehouseConfigRequest`.
|
|
180
|
+
* Add `model_version_status_unknown` enum value for `databricks.sdk.service.catalog.ModelVersionInfoStatus`.
|
|
181
|
+
* Add `k8s_active_pod_quota_exceeded` and `cloud_account_pod_quota_exceeded` enum values for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
182
|
+
* Add `internal_catalog_asset_creation_ongoing_exception`, `internal_catalog_asset_creation_failed_exception` and `internal_catalog_asset_creation_unsupported_exception` enum values for `databricks.sdk.service.dashboards.MessageErrorType`.
|
|
183
|
+
* Add `ssh_bootstrap_failure`, `aws_inaccessible_kms_key_failure`, `init_container_not_finished`, `spark_image_download_throttled`, `spark_image_not_found`, `cluster_operation_throttled`, `cluster_operation_timeout`, `serverless_long_running_terminated`, `azure_packed_deployment_partial_failure`, `invalid_worker_image_failure`, `workspace_update`, `invalid_aws_parameter`, `driver_out_of_disk`, `driver_out_of_memory`, `driver_launch_timeout`, `driver_unexpected_failure`, `unexpected_pod_recreation`, `gcp_inaccessible_kms_key_failure`, `gcp_kms_key_permission_denied`, `driver_eviction`, `user_initiated_vm_termination`, `gcp_iam_timeout`, `aws_resource_quota_exceeded`, `cloud_account_setup_failure`, `aws_invalid_key_pair`, `driver_pod_creation_failure`, `maintenance_mode`, `internal_capacity_failure`, `executor_pod_unscheduled`, `storage_download_failure_slow`, `storage_download_failure_throttled`, `dynamic_spark_conf_size_exceeded`, `aws_instance_profile_update_failure`, `instance_pool_not_found`, `instance_pool_max_capacity_reached`, `aws_invalid_kms_key_state`, `gcp_insufficient_capacity`, `gcp_api_rate_quota_exceeded`, `gcp_resource_quota_exceeded`, `gcp_ip_space_exhausted`, `gcp_service_account_access_denied`, `gcp_service_account_not_found`, `gcp_forbidden`, `gcp_not_found`, `resource_usage_blocked`, `data_access_config_changed`, `access_token_failure`, `invalid_instance_placement_protocol`, `budget_policy_resolution_failure`, `in_penalty_box`, `disaster_recovery_replication`, `bootstrap_timeout_due_to_misconfig`, `instance_unreachable_due_to_misconfig`, `storage_download_failure_due_to_misconfig`, `control_plane_request_failure_due_to_misconfig`, `cloud_provider_launch_failure_due_to_misconfig`, `gcp_subnet_not_ready`, `cloud_operation_cancelled`, `cloud_provider_instance_not_launched`, `gcp_trusted_image_projects_violated`, `budget_policy_limit_enforcement_activated`, `eos_spark_image`, `no_matched_k8s`, `lazy_allocation_timeout`, `driver_node_unreachable`, `secret_creation_failure`, `pod_scheduling_failure`, `pod_assignment_failure`, `allocation_timeout`, `allocation_timeout_no_unallocated_clusters`, `allocation_timeout_no_matched_clusters`, `allocation_timeout_no_ready_clusters`, `allocation_timeout_no_warmed_up_clusters`, `allocation_timeout_node_daemon_not_ready`, `allocation_timeout_no_healthy_clusters`, `netvisor_setup_timeout`, `no_matched_k8s_testing_tag`, `cloud_provider_resource_stockout_due_to_misconfig`, `gke_based_cluster_termination`, `allocation_timeout_no_healthy_and_warmed_up_clusters`, `docker_invalid_os_exception`, `docker_container_creation_exception`, `docker_image_too_large_for_instance_exception`, `dns_resolution_error`, `gcp_denied_by_org_policy`, `secret_permission_denied`, `network_check_nic_failure`, `network_check_dns_server_failure`, `network_check_storage_failure`, `network_check_metadata_endpoint_failure`, `network_check_control_plane_failure`, `network_check_multiple_components_failure`, `driver_unhealthy`, `security_agents_failed_initial_verification`, `driver_dns_resolution_failure`, `no_activated_k8s`, `usage_policy_entitlement_denied`, `no_activated_k8s_testing_tag`, `k8s_active_pod_quota_exceeded` and `cloud_account_pod_quota_exceeded` enum values for `databricks.sdk.service.sql.TerminationReasonCode`.
|
|
184
|
+
* [Breaking] Change `create()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsCreateMetastoreAssignmentResponse` dataclass.
|
|
185
|
+
* [Breaking] Change `delete()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsDeleteMetastoreAssignmentResponse` dataclass.
|
|
186
|
+
* [Breaking] Change `update()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsUpdateMetastoreAssignmentResponse` dataclass.
|
|
187
|
+
* [Breaking] Change `create()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsCreateMetastoreResponse` dataclass.
|
|
188
|
+
* [Breaking] Change `delete()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsDeleteMetastoreResponse` dataclass.
|
|
189
|
+
* [Breaking] Change `get()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsGetMetastoreResponse` dataclass.
|
|
190
|
+
* [Breaking] Change `list()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsListMetastoresResponse` dataclass.
|
|
191
|
+
* [Breaking] Change `update()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsUpdateMetastoreResponse` dataclass.
|
|
192
|
+
* [Breaking] Change `create()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsCreateStorageCredentialInfo` dataclass.
|
|
193
|
+
* [Breaking] Change `delete()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsDeleteStorageCredentialResponse` dataclass.
|
|
194
|
+
* [Breaking] Change `update()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsUpdateStorageCredentialResponse` dataclass.
|
|
195
|
+
* [Breaking] Change `create()` method for [w.registered_models](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/catalog/registered_models.html) workspace-level service with new required argument order.
|
|
196
|
+
* [Breaking] Change `delete()` method for [a.credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/credentials.html) account-level service to start returning `databricks.sdk.service.provisioning.Credential` dataclass.
|
|
197
|
+
* [Breaking] Change `delete()` method for [a.encryption_keys](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/encryption_keys.html) account-level service to start returning `databricks.sdk.service.provisioning.CustomerManagedKey` dataclass.
|
|
198
|
+
* [Breaking] Change `create()` method for [a.networks](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/networks.html) account-level service with new required argument order.
|
|
199
|
+
* [Breaking] Change `delete()` method for [a.networks](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/networks.html) account-level service to start returning `databricks.sdk.service.provisioning.Network` dataclass.
|
|
200
|
+
* [Breaking] Change `create()` and `replace()` methods for [a.private_access](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/private_access.html) account-level service with new required argument order.
|
|
201
|
+
* [Breaking] Change `delete()` and `replace()` methods for [a.private_access](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/private_access.html) account-level service to start returning `databricks.sdk.service.provisioning.PrivateAccessSettings` dataclass.
|
|
202
|
+
* [Breaking] Change `delete()` method for [a.storage](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/storage.html) account-level service to start returning `databricks.sdk.service.provisioning.StorageConfiguration` dataclass.
|
|
203
|
+
* [Breaking] Change `create()` method for [a.vpc_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/vpc_endpoints.html) account-level service with new required argument order.
|
|
204
|
+
* [Breaking] Change `delete()` method for [a.vpc_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/vpc_endpoints.html) account-level service to start returning `databricks.sdk.service.provisioning.VpcEndpoint` dataclass.
|
|
205
|
+
* [Breaking] Change `create()` and `update()` methods for [a.workspaces](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html) account-level service with new required argument order.
|
|
206
|
+
* [Breaking] Change `delete()` and `update()` methods for [a.workspaces](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html) account-level service to start returning `databricks.sdk.service.provisioning.Workspace` dataclass.
|
|
207
|
+
* [Breaking] Change `execute_statement()` method for [w.statement_execution](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/sql/statement_execution.html) workspace-level service . Method path has changed.
|
|
208
|
+
* [Breaking] Change `metastore_info` field for `databricks.sdk.service.catalog.AccountsCreateMetastore` to type `databricks.sdk.service.catalog.CreateAccountsMetastore` dataclass.
|
|
209
|
+
* [Breaking] Change `credential_info` field for `databricks.sdk.service.catalog.AccountsCreateStorageCredential` to type `databricks.sdk.service.catalog.CreateAccountsStorageCredential` dataclass.
|
|
210
|
+
* [Breaking] Change `metastore_info` field for `databricks.sdk.service.catalog.AccountsUpdateMetastore` to type `databricks.sdk.service.catalog.UpdateAccountsMetastore` dataclass.
|
|
211
|
+
* [Breaking] Change `credential_info` field for `databricks.sdk.service.catalog.AccountsUpdateStorageCredential` to type `databricks.sdk.service.catalog.UpdateAccountsStorageCredential` dataclass.
|
|
212
|
+
* Change `catalog_name`, `name` and `schema_name` fields for `databricks.sdk.service.catalog.CreateRegisteredModelRequest` to no longer be required.
|
|
213
|
+
* Change `network_name` field for `databricks.sdk.service.provisioning.CreateNetworkRequest` to no longer be required.
|
|
214
|
+
* Change `private_access_settings_name` and `region` fields for `databricks.sdk.service.provisioning.CreatePrivateAccessSettingsRequest` to no longer be required.
|
|
215
|
+
* Change `vpc_endpoint_name` field for `databricks.sdk.service.provisioning.CreateVpcEndpointRequest` to no longer be required.
|
|
216
|
+
* Change `workspace_name` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest` to no longer be required.
|
|
217
|
+
* [Breaking] Change `dataplane_relay` and `rest_api` fields for `databricks.sdk.service.provisioning.NetworkVpcEndpoints` to no longer be required.
|
|
218
|
+
* Change `dataplane_relay` and `rest_api` fields for `databricks.sdk.service.provisioning.NetworkVpcEndpoints` to no longer be required.
|
|
219
|
+
* [Breaking] Change waiter for [WorkspacesAPI.update](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html#databricks.sdk.service.provisioning.WorkspacesAPI.update) method.
|
|
220
|
+
* [Breaking] Remove `browse_only` field for `databricks.sdk.service.catalog.ModelVersionInfo`.
|
|
221
|
+
* [Breaking] Remove `jar_dependencies` field for `databricks.sdk.service.compute.Environment`.
|
|
222
|
+
* [Breaking] Remove `is_no_public_ip_enabled` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest`.
|
|
223
|
+
* [Breaking] Remove `allowed_vpc_endpoint_ids`, `private_access_level`, `private_access_settings_name`, `public_access_enabled` and `region` fields for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
224
|
+
* [Breaking] Remove `external_id` field for `databricks.sdk.service.provisioning.StsRole`.
|
|
225
|
+
* [Breaking] Remove `aws_region`, `credentials_id`, `custom_tags`, `managed_services_customer_managed_key_id`, `network_connectivity_config_id`, `network_id`, `private_access_settings_id`, `storage_configuration_id` and `storage_customer_managed_key_id` fields for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
226
|
+
* [Breaking] Remove `external_customer_info` and `is_no_public_ip_enabled` fields for `databricks.sdk.service.provisioning.Workspace`.
|
|
227
|
+
* [Breaking] Remove `status_unspecified` enum value for `databricks.sdk.service.sql.Status`.
|
|
228
|
+
* Add `browse_only` field for `databricks.sdk.service.catalog.ModelVersionInfo`.
|
|
229
|
+
* Add `jar_dependencies` field for `databricks.sdk.service.compute.Environment`.
|
|
230
|
+
* Add `is_no_public_ip_enabled` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest`.
|
|
231
|
+
* Add `allowed_vpc_endpoint_ids`, `private_access_level` and `public_access_enabled` fields for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
232
|
+
* [Breaking] Add `private_access_settings_name` and `region` fields for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
233
|
+
* Add `external_id` field for `databricks.sdk.service.provisioning.StsRole`.
|
|
234
|
+
* Add `aws_region`, `credentials_id`, `custom_tags`, `managed_services_customer_managed_key_id`, `network_connectivity_config_id`, `network_id`, `private_access_settings_id`, `storage_configuration_id` and `storage_customer_managed_key_id` fields for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
235
|
+
* Add `external_customer_info` and `is_no_public_ip_enabled` fields for `databricks.sdk.service.provisioning.Workspace`.
|
|
236
|
+
* Add `status_unspecified` enum value for `databricks.sdk.service.sql.Status`.
|
|
237
|
+
* [Breaking] Change `create()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to no longer return `databricks.sdk.service.catalog.AccountsCreateMetastoreAssignmentResponse` dataclass.
|
|
238
|
+
* [Breaking] Change `delete()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to no longer return `databricks.sdk.service.catalog.AccountsDeleteMetastoreAssignmentResponse` dataclass.
|
|
239
|
+
* [Breaking] Change `update()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to no longer return `databricks.sdk.service.catalog.AccountsUpdateMetastoreAssignmentResponse` dataclass.
|
|
240
|
+
* [Breaking] Change `create()`, `get()` and `update()` methods for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsMetastoreInfo` dataclass.
|
|
241
|
+
* [Breaking] Change `delete()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to no longer return `databricks.sdk.service.catalog.AccountsDeleteMetastoreResponse` dataclass.
|
|
242
|
+
* [Breaking] Change `list()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.ListMetastoresResponse` dataclass.
|
|
243
|
+
* [Breaking] Change `create()` and `update()` methods for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsStorageCredentialInfo` dataclass.
|
|
244
|
+
* [Breaking] Change `delete()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to no longer return `databricks.sdk.service.catalog.AccountsDeleteStorageCredentialResponse` dataclass.
|
|
245
|
+
* [Breaking] Change `create()` method for [w.registered_models](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/catalog/registered_models.html) workspace-level service with new required argument order.
|
|
246
|
+
* [Breaking] Change `delete()` method for [a.credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/credentials.html) account-level service to no longer return `databricks.sdk.service.provisioning.Credential` dataclass.
|
|
247
|
+
* [Breaking] Change `delete()` method for [a.encryption_keys](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/encryption_keys.html) account-level service to no longer return `databricks.sdk.service.provisioning.CustomerManagedKey` dataclass.
|
|
248
|
+
* [Breaking] Change `create()` method for [a.networks](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/networks.html) account-level service with new required argument order.
|
|
249
|
+
* [Breaking] Change `delete()` method for [a.networks](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/networks.html) account-level service to no longer return `databricks.sdk.service.provisioning.Network` dataclass.
|
|
250
|
+
* [Breaking] Change `create()` and `replace()` methods for [a.private_access](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/private_access.html) account-level service with new required argument order.
|
|
251
|
+
* [Breaking] Change `delete()` and `replace()` methods for [a.private_access](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/private_access.html) account-level service to no longer return `databricks.sdk.service.provisioning.PrivateAccessSettings` dataclass.
|
|
252
|
+
* [Breaking] Change `delete()` method for [a.storage](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/storage.html) account-level service to no longer return `databricks.sdk.service.provisioning.StorageConfiguration` dataclass.
|
|
253
|
+
* [Breaking] Change `create()` method for [a.vpc_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/vpc_endpoints.html) account-level service with new required argument order.
|
|
254
|
+
* [Breaking] Change `delete()` method for [a.vpc_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/vpc_endpoints.html) account-level service to no longer return `databricks.sdk.service.provisioning.VpcEndpoint` dataclass.
|
|
255
|
+
* [Breaking] Change `create()` and `update()` methods for [a.workspaces](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html) account-level service with new required argument order.
|
|
256
|
+
* [Breaking] Change `delete()` and `update()` methods for [a.workspaces](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html) account-level service to no longer return `databricks.sdk.service.provisioning.Workspace` dataclass.
|
|
257
|
+
* [Breaking] Change `execute_statement()` method for [w.statement_execution](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/sql/statement_execution.html) workspace-level service . Method path has changed.
|
|
258
|
+
* [Breaking] Change `metastore_info` field for `databricks.sdk.service.catalog.AccountsCreateMetastore` to type `databricks.sdk.service.catalog.CreateMetastore` dataclass.
|
|
259
|
+
* [Breaking] Change `credential_info` field for `databricks.sdk.service.catalog.AccountsCreateStorageCredential` to type `databricks.sdk.service.catalog.CreateStorageCredential` dataclass.
|
|
260
|
+
* [Breaking] Change `metastore_info` field for `databricks.sdk.service.catalog.AccountsUpdateMetastore` to type `databricks.sdk.service.catalog.UpdateMetastore` dataclass.
|
|
261
|
+
* [Breaking] Change `credential_info` field for `databricks.sdk.service.catalog.AccountsUpdateStorageCredential` to type `databricks.sdk.service.catalog.UpdateStorageCredential` dataclass.
|
|
262
|
+
* [Breaking] Change `catalog_name`, `name` and `schema_name` fields for `databricks.sdk.service.catalog.CreateRegisteredModelRequest` to be required.
|
|
263
|
+
* [Breaking] Change `name` field for `databricks.sdk.service.database.DatabaseInstanceRole` to no longer be required.
|
|
264
|
+
* Change `name` field for `databricks.sdk.service.database.DatabaseInstanceRole` to no longer be required.
|
|
265
|
+
* [Breaking] Change `network_name` field for `databricks.sdk.service.provisioning.CreateNetworkRequest` to be required.
|
|
266
|
+
* [Breaking] Change `private_access_settings_name` and `region` fields for `databricks.sdk.service.provisioning.CreatePrivateAccessSettingsRequest` to be required.
|
|
267
|
+
* [Breaking] Change `vpc_endpoint_name` field for `databricks.sdk.service.provisioning.CreateVpcEndpointRequest` to be required.
|
|
268
|
+
* [Breaking] Change `workspace_name` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest` to be required.
|
|
269
|
+
* Change `dataplane_relay` and `rest_api` fields for `databricks.sdk.service.provisioning.NetworkVpcEndpoints` to be required.
|
|
270
|
+
* [Breaking] Change `dataplane_relay` and `rest_api` fields for `databricks.sdk.service.provisioning.NetworkVpcEndpoints` to be required.
|
|
271
|
+
* [Breaking] Change waiter for [WorkspacesAPI.update](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html#databricks.sdk.service.provisioning.WorkspacesAPI.update) method.
|
|
272
|
+
* [Breaking] Remove `databricks.sdk.service.dataquality` package.
|
|
273
|
+
* [Breaking] Remove `create_update()` and `get_update()` methods for [w.apps](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/apps/apps.html) workspace-level service.
|
|
274
|
+
* [Breaking] Remove `update_notifications()` method for [w.serving_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/serving/serving_endpoints.html) workspace-level service.
|
|
275
|
+
* [Breaking] Remove `compute_size` field for `databricks.sdk.service.apps.App`.
|
|
276
|
+
* [Breaking] Remove `genie_space` field for `databricks.sdk.service.apps.AppResource`.
|
|
277
|
+
* [Breaking] Remove `skip_validation` field for `databricks.sdk.service.catalog.AccountsCreateStorageCredential`.
|
|
278
|
+
* [Breaking] Remove `skip_validation` field for `databricks.sdk.service.catalog.AccountsUpdateStorageCredential`.
|
|
279
|
+
* [Breaking] Remove `aliases`, `browse_only`, `created_at`, `created_by`, `full_name`, `metastore_id`, `owner`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.CreateRegisteredModelRequest`.
|
|
280
|
+
* [Breaking] Remove `catalog_name`, `id`, `model_name` and `schema_name` fields for `databricks.sdk.service.catalog.RegisteredModelAlias`.
|
|
281
|
+
* [Breaking] Remove `aliases`, `catalog_name`, `created_at`, `created_by`, `id`, `metastore_id`, `model_name`, `model_version_dependencies`, `run_id`, `run_workspace_id`, `schema_name`, `source`, `status`, `storage_location`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.UpdateModelVersionRequest`.
|
|
282
|
+
* [Breaking] Remove `aliases`, `browse_only`, `catalog_name`, `created_at`, `created_by`, `metastore_id`, `name`, `schema_name`, `storage_location`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.UpdateRegisteredModelRequest`.
|
|
283
|
+
* [Breaking] Remove `parameters` field for `databricks.sdk.service.dashboards.GenieQueryAttachment`.
|
|
284
|
+
* [Breaking] Remove `database_instance_name` field for `databricks.sdk.service.database.CreateDatabaseInstanceRoleRequest`.
|
|
285
|
+
* [Breaking] Remove `custom_tags`, `effective_custom_tags`, `effective_usage_policy_id` and `usage_policy_id` fields for `databricks.sdk.service.database.DatabaseInstance`.
|
|
286
|
+
* [Breaking] Remove `effective_attributes` and `instance_name` fields for `databricks.sdk.service.database.DatabaseInstanceRole`.
|
|
287
|
+
* [Breaking] Remove `key_region` field for `databricks.sdk.service.provisioning.CreateAwsKeyInfo`.
|
|
288
|
+
* [Breaking] Remove `role_arn` field for `databricks.sdk.service.provisioning.CreateStorageConfigurationRequest`.
|
|
289
|
+
* [Breaking] Remove `azure_key_info` field for `databricks.sdk.service.provisioning.CustomerManagedKey`.
|
|
290
|
+
* [Breaking] Remove `customer_facing_private_access_settings` field for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
291
|
+
* [Breaking] Remove `role_arn` field for `databricks.sdk.service.provisioning.StorageConfiguration`.
|
|
292
|
+
* [Breaking] Remove `customer_facing_workspace` and `update_mask` fields for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
293
|
+
* [Breaking] Remove `compute_mode`, `network`, `network_connectivity_config_id` and `storage_mode` fields for `databricks.sdk.service.provisioning.Workspace`.
|
|
294
|
+
* [Breaking] Remove `enable_serverless_compute` field for `databricks.sdk.service.sql.GetWorkspaceWarehouseConfigResponse`.
|
|
295
|
+
* [Breaking] Remove `page_size` and `page_token` fields for `databricks.sdk.service.sql.ListWarehousesRequest`.
|
|
296
|
+
* [Breaking] Remove `next_page_token` field for `databricks.sdk.service.sql.ListWarehousesResponse`.
|
|
297
|
+
* [Breaking] Remove `enable_serverless_compute` field for `databricks.sdk.service.sql.SetWorkspaceWarehouseConfigRequest`.
|
|
298
|
+
* [Breaking] Remove `model_version_status_unknown` enum value for `databricks.sdk.service.catalog.ModelVersionInfoStatus`.
|
|
299
|
+
* [Breaking] Remove `stream_native` enum value for `databricks.sdk.service.catalog.SystemType`.
|
|
300
|
+
* [Breaking] Remove `k8s_active_pod_quota_exceeded` and `cloud_account_pod_quota_exceeded` enum values for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
301
|
+
* [Breaking] Remove `exceeded_max_token_length_exception`, `internal_catalog_asset_creation_ongoing_exception`, `internal_catalog_asset_creation_failed_exception` and `internal_catalog_asset_creation_unsupported_exception` enum values for `databricks.sdk.service.dashboards.MessageErrorType`.
|
|
302
|
+
* [Breaking] Remove `ssh_bootstrap_failure`, `aws_inaccessible_kms_key_failure`, `init_container_not_finished`, `spark_image_download_throttled`, `spark_image_not_found`, `cluster_operation_throttled`, `cluster_operation_timeout`, `serverless_long_running_terminated`, `azure_packed_deployment_partial_failure`, `invalid_worker_image_failure`, `workspace_update`, `invalid_aws_parameter`, `driver_out_of_disk`, `driver_out_of_memory`, `driver_launch_timeout`, `driver_unexpected_failure`, `unexpected_pod_recreation`, `gcp_inaccessible_kms_key_failure`, `gcp_kms_key_permission_denied`, `driver_eviction`, `user_initiated_vm_termination`, `gcp_iam_timeout`, `aws_resource_quota_exceeded`, `cloud_account_setup_failure`, `aws_invalid_key_pair`, `driver_pod_creation_failure`, `maintenance_mode`, `internal_capacity_failure`, `executor_pod_unscheduled`, `storage_download_failure_slow`, `storage_download_failure_throttled`, `dynamic_spark_conf_size_exceeded`, `aws_instance_profile_update_failure`, `instance_pool_not_found`, `instance_pool_max_capacity_reached`, `aws_invalid_kms_key_state`, `gcp_insufficient_capacity`, `gcp_api_rate_quota_exceeded`, `gcp_resource_quota_exceeded`, `gcp_ip_space_exhausted`, `gcp_service_account_access_denied`, `gcp_service_account_not_found`, `gcp_forbidden`, `gcp_not_found`, `resource_usage_blocked`, `data_access_config_changed`, `access_token_failure`, `invalid_instance_placement_protocol`, `budget_policy_resolution_failure`, `in_penalty_box`, `disaster_recovery_replication`, `bootstrap_timeout_due_to_misconfig`, `instance_unreachable_due_to_misconfig`, `storage_download_failure_due_to_misconfig`, `control_plane_request_failure_due_to_misconfig`, `cloud_provider_launch_failure_due_to_misconfig`, `gcp_subnet_not_ready`, `cloud_operation_cancelled`, `cloud_provider_instance_not_launched`, `gcp_trusted_image_projects_violated`, `budget_policy_limit_enforcement_activated`, `eos_spark_image`, `no_matched_k8s`, `lazy_allocation_timeout`, `driver_node_unreachable`, `secret_creation_failure`, `pod_scheduling_failure`, `pod_assignment_failure`, `allocation_timeout`, `allocation_timeout_no_unallocated_clusters`, `allocation_timeout_no_matched_clusters`, `allocation_timeout_no_ready_clusters`, `allocation_timeout_no_warmed_up_clusters`, `allocation_timeout_node_daemon_not_ready`, `allocation_timeout_no_healthy_clusters`, `netvisor_setup_timeout`, `no_matched_k8s_testing_tag`, `cloud_provider_resource_stockout_due_to_misconfig`, `gke_based_cluster_termination`, `allocation_timeout_no_healthy_and_warmed_up_clusters`, `docker_invalid_os_exception`, `docker_container_creation_exception`, `docker_image_too_large_for_instance_exception`, `dns_resolution_error`, `gcp_denied_by_org_policy`, `secret_permission_denied`, `network_check_nic_failure`, `network_check_dns_server_failure`, `network_check_storage_failure`, `network_check_metadata_endpoint_failure`, `network_check_control_plane_failure`, `network_check_multiple_components_failure`, `driver_unhealthy`, `security_agents_failed_initial_verification`, `driver_dns_resolution_failure`, `no_activated_k8s`, `usage_policy_entitlement_denied`, `no_activated_k8s_testing_tag`, `k8s_active_pod_quota_exceeded` and `cloud_account_pod_quota_exceeded` enum values for `databricks.sdk.service.sql.TerminationReasonCode`.
|
|
303
|
+
* Add `databricks.sdk.service.dataquality` package.
|
|
304
|
+
* Add [w.data_quality](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/dataquality/data_quality.html) workspace-level service.
|
|
305
|
+
* Add `create_update()` and `get_update()` methods for [w.apps](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/apps/apps.html) workspace-level service.
|
|
306
|
+
* Add `update_notifications()` method for [w.serving_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/serving/serving_endpoints.html) workspace-level service.
|
|
307
|
+
* Add `compute_size` field for `databricks.sdk.service.apps.App`.
|
|
308
|
+
* Add `genie_space` field for `databricks.sdk.service.apps.AppResource`.
|
|
309
|
+
* Add `skip_validation` field for `databricks.sdk.service.catalog.AccountsCreateStorageCredential`.
|
|
310
|
+
* Add `skip_validation` field for `databricks.sdk.service.catalog.AccountsUpdateStorageCredential`.
|
|
311
|
+
* Add `aliases`, `browse_only`, `created_at`, `created_by`, `full_name`, `metastore_id`, `owner`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.CreateRegisteredModelRequest`.
|
|
312
|
+
* Add `include_unbound` field for `databricks.sdk.service.catalog.ListCatalogsRequest`.
|
|
313
|
+
* Add `include_unbound` field for `databricks.sdk.service.catalog.ListCredentialsRequest`.
|
|
314
|
+
* Add `include_unbound` field for `databricks.sdk.service.catalog.ListExternalLocationsRequest`.
|
|
315
|
+
* Add `include_unbound` field for `databricks.sdk.service.catalog.ListStorageCredentialsRequest`.
|
|
316
|
+
* Add `catalog_name`, `id`, `model_name` and `schema_name` fields for `databricks.sdk.service.catalog.RegisteredModelAlias`.
|
|
317
|
+
* Add `aliases`, `catalog_name`, `created_at`, `created_by`, `id`, `metastore_id`, `model_name`, `model_version_dependencies`, `run_id`, `run_workspace_id`, `schema_name`, `source`, `status`, `storage_location`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.UpdateModelVersionRequest`.
|
|
318
|
+
* Add `aliases`, `browse_only`, `catalog_name`, `created_at`, `created_by`, `metastore_id`, `name`, `schema_name`, `storage_location`, `updated_at` and `updated_by` fields for `databricks.sdk.service.catalog.UpdateRegisteredModelRequest`.
|
|
319
|
+
* Add `parameters` field for `databricks.sdk.service.dashboards.GenieQueryAttachment`.
|
|
320
|
+
* Add `database_instance_name` field for `databricks.sdk.service.database.CreateDatabaseInstanceRoleRequest`.
|
|
321
|
+
* Add `custom_tags`, `effective_custom_tags`, `effective_usage_policy_id` and `usage_policy_id` fields for `databricks.sdk.service.database.DatabaseInstance`.
|
|
322
|
+
* Add `effective_attributes` and `instance_name` fields for `databricks.sdk.service.database.DatabaseInstanceRole`.
|
|
323
|
+
* Add `key_region` field for `databricks.sdk.service.provisioning.CreateAwsKeyInfo`.
|
|
324
|
+
* Add `role_arn` field for `databricks.sdk.service.provisioning.CreateStorageConfigurationRequest`.
|
|
325
|
+
* Add `azure_key_info` field for `databricks.sdk.service.provisioning.CustomerManagedKey`.
|
|
326
|
+
* [Breaking] Add `customer_facing_private_access_settings` field for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
327
|
+
* Add `role_arn` field for `databricks.sdk.service.provisioning.StorageConfiguration`.
|
|
328
|
+
* [Breaking] Add `customer_facing_workspace` field for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
329
|
+
* Add `update_mask` field for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
330
|
+
* Add `compute_mode`, `network`, `network_connectivity_config_id` and `storage_mode` fields for `databricks.sdk.service.provisioning.Workspace`.
|
|
331
|
+
* Add `enable_serverless_compute` field for `databricks.sdk.service.sql.GetWorkspaceWarehouseConfigResponse`.
|
|
332
|
+
* Add `page_size` and `page_token` fields for `databricks.sdk.service.sql.ListWarehousesRequest`.
|
|
333
|
+
* Add `next_page_token` field for `databricks.sdk.service.sql.ListWarehousesResponse`.
|
|
334
|
+
* Add `enable_serverless_compute` field for `databricks.sdk.service.sql.SetWorkspaceWarehouseConfigRequest`.
|
|
335
|
+
* Add `model_version_status_unknown` enum value for `databricks.sdk.service.catalog.ModelVersionInfoStatus`.
|
|
336
|
+
* Add `stream_native` enum value for `databricks.sdk.service.catalog.SystemType`.
|
|
337
|
+
* Add `k8s_active_pod_quota_exceeded` and `cloud_account_pod_quota_exceeded` enum values for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
338
|
+
* Add `exceeded_max_token_length_exception`, `internal_catalog_asset_creation_ongoing_exception`, `internal_catalog_asset_creation_failed_exception` and `internal_catalog_asset_creation_unsupported_exception` enum values for `databricks.sdk.service.dashboards.MessageErrorType`.
|
|
339
|
+
* Add `asset_type_mcp` enum value for `databricks.sdk.service.marketplace.AssetType`.
|
|
340
|
+
* Add `ssh_bootstrap_failure`, `aws_inaccessible_kms_key_failure`, `init_container_not_finished`, `spark_image_download_throttled`, `spark_image_not_found`, `cluster_operation_throttled`, `cluster_operation_timeout`, `serverless_long_running_terminated`, `azure_packed_deployment_partial_failure`, `invalid_worker_image_failure`, `workspace_update`, `invalid_aws_parameter`, `driver_out_of_disk`, `driver_out_of_memory`, `driver_launch_timeout`, `driver_unexpected_failure`, `unexpected_pod_recreation`, `gcp_inaccessible_kms_key_failure`, `gcp_kms_key_permission_denied`, `driver_eviction`, `user_initiated_vm_termination`, `gcp_iam_timeout`, `aws_resource_quota_exceeded`, `cloud_account_setup_failure`, `aws_invalid_key_pair`, `driver_pod_creation_failure`, `maintenance_mode`, `internal_capacity_failure`, `executor_pod_unscheduled`, `storage_download_failure_slow`, `storage_download_failure_throttled`, `dynamic_spark_conf_size_exceeded`, `aws_instance_profile_update_failure`, `instance_pool_not_found`, `instance_pool_max_capacity_reached`, `aws_invalid_kms_key_state`, `gcp_insufficient_capacity`, `gcp_api_rate_quota_exceeded`, `gcp_resource_quota_exceeded`, `gcp_ip_space_exhausted`, `gcp_service_account_access_denied`, `gcp_service_account_not_found`, `gcp_forbidden`, `gcp_not_found`, `resource_usage_blocked`, `data_access_config_changed`, `access_token_failure`, `invalid_instance_placement_protocol`, `budget_policy_resolution_failure`, `in_penalty_box`, `disaster_recovery_replication`, `bootstrap_timeout_due_to_misconfig`, `instance_unreachable_due_to_misconfig`, `storage_download_failure_due_to_misconfig`, `control_plane_request_failure_due_to_misconfig`, `cloud_provider_launch_failure_due_to_misconfig`, `gcp_subnet_not_ready`, `cloud_operation_cancelled`, `cloud_provider_instance_not_launched`, `gcp_trusted_image_projects_violated`, `budget_policy_limit_enforcement_activated`, `eos_spark_image`, `no_matched_k8s`, `lazy_allocation_timeout`, `driver_node_unreachable`, `secret_creation_failure`, `pod_scheduling_failure`, `pod_assignment_failure`, `allocation_timeout`, `allocation_timeout_no_unallocated_clusters`, `allocation_timeout_no_matched_clusters`, `allocation_timeout_no_ready_clusters`, `allocation_timeout_no_warmed_up_clusters`, `allocation_timeout_node_daemon_not_ready`, `allocation_timeout_no_healthy_clusters`, `netvisor_setup_timeout`, `no_matched_k8s_testing_tag`, `cloud_provider_resource_stockout_due_to_misconfig`, `gke_based_cluster_termination`, `allocation_timeout_no_healthy_and_warmed_up_clusters`, `docker_invalid_os_exception`, `docker_container_creation_exception`, `docker_image_too_large_for_instance_exception`, `dns_resolution_error`, `gcp_denied_by_org_policy`, `secret_permission_denied`, `network_check_nic_failure`, `network_check_dns_server_failure`, `network_check_storage_failure`, `network_check_metadata_endpoint_failure`, `network_check_control_plane_failure`, `network_check_multiple_components_failure`, `driver_unhealthy`, `security_agents_failed_initial_verification`, `driver_dns_resolution_failure`, `no_activated_k8s`, `usage_policy_entitlement_denied`, `no_activated_k8s_testing_tag`, `k8s_active_pod_quota_exceeded` and `cloud_account_pod_quota_exceeded` enum values for `databricks.sdk.service.sql.TerminationReasonCode`.
|
|
341
|
+
* [Breaking] Change `create()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsCreateMetastoreAssignmentResponse` dataclass.
|
|
342
|
+
* [Breaking] Change `delete()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsDeleteMetastoreAssignmentResponse` dataclass.
|
|
343
|
+
* [Breaking] Change `update()` method for [a.account_metastore_assignments](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastore_assignments.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsUpdateMetastoreAssignmentResponse` dataclass.
|
|
344
|
+
* [Breaking] Change `create()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsCreateMetastoreResponse` dataclass.
|
|
345
|
+
* [Breaking] Change `delete()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsDeleteMetastoreResponse` dataclass.
|
|
346
|
+
* [Breaking] Change `get()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsGetMetastoreResponse` dataclass.
|
|
347
|
+
* [Breaking] Change `list()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsListMetastoresResponse` dataclass.
|
|
348
|
+
* [Breaking] Change `update()` method for [a.account_metastores](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_metastores.html) account-level service to return `databricks.sdk.service.catalog.AccountsUpdateMetastoreResponse` dataclass.
|
|
349
|
+
* [Breaking] Change `create()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsCreateStorageCredentialInfo` dataclass.
|
|
350
|
+
* [Breaking] Change `delete()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to start returning `databricks.sdk.service.catalog.AccountsDeleteStorageCredentialResponse` dataclass.
|
|
351
|
+
* [Breaking] Change `update()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/catalog/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsUpdateStorageCredentialResponse` dataclass.
|
|
352
|
+
* [Breaking] Change `create()` method for [w.registered_models](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/catalog/registered_models.html) workspace-level service with new required argument order.
|
|
353
|
+
* [Breaking] Change `delete()` method for [a.credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/credentials.html) account-level service to start returning `databricks.sdk.service.provisioning.Credential` dataclass.
|
|
354
|
+
* [Breaking] Change `delete()` method for [a.encryption_keys](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/encryption_keys.html) account-level service to start returning `databricks.sdk.service.provisioning.CustomerManagedKey` dataclass.
|
|
355
|
+
* [Breaking] Change `create()` method for [a.networks](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/networks.html) account-level service with new required argument order.
|
|
356
|
+
* [Breaking] Change `delete()` method for [a.networks](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/networks.html) account-level service to start returning `databricks.sdk.service.provisioning.Network` dataclass.
|
|
357
|
+
* [Breaking] Change `create()` and `replace()` methods for [a.private_access](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/private_access.html) account-level service with new required argument order.
|
|
358
|
+
* [Breaking] Change `delete()` and `replace()` methods for [a.private_access](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/private_access.html) account-level service to start returning `databricks.sdk.service.provisioning.PrivateAccessSettings` dataclass.
|
|
359
|
+
* [Breaking] Change `delete()` method for [a.storage](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/storage.html) account-level service to start returning `databricks.sdk.service.provisioning.StorageConfiguration` dataclass.
|
|
360
|
+
* [Breaking] Change `create()` method for [a.vpc_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/vpc_endpoints.html) account-level service with new required argument order.
|
|
361
|
+
* [Breaking] Change `delete()` method for [a.vpc_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/vpc_endpoints.html) account-level service to start returning `databricks.sdk.service.provisioning.VpcEndpoint` dataclass.
|
|
362
|
+
* [Breaking] Change `create()` and `update()` methods for [a.workspaces](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html) account-level service with new required argument order.
|
|
363
|
+
* [Breaking] Change `delete()` and `update()` methods for [a.workspaces](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html) account-level service to start returning `databricks.sdk.service.provisioning.Workspace` dataclass.
|
|
364
|
+
* [Breaking] Change `execute_statement()` method for [w.statement_execution](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/sql/statement_execution.html) workspace-level service . Method path has changed.
|
|
365
|
+
* [Breaking] Change `metastore_info` field for `databricks.sdk.service.catalog.AccountsCreateMetastore` to type `databricks.sdk.service.catalog.CreateAccountsMetastore` dataclass.
|
|
366
|
+
* [Breaking] Change `credential_info` field for `databricks.sdk.service.catalog.AccountsCreateStorageCredential` to type `databricks.sdk.service.catalog.CreateAccountsStorageCredential` dataclass.
|
|
367
|
+
* [Breaking] Change `metastore_info` field for `databricks.sdk.service.catalog.AccountsUpdateMetastore` to type `databricks.sdk.service.catalog.UpdateAccountsMetastore` dataclass.
|
|
368
|
+
* [Breaking] Change `credential_info` field for `databricks.sdk.service.catalog.AccountsUpdateStorageCredential` to type `databricks.sdk.service.catalog.UpdateAccountsStorageCredential` dataclass.
|
|
369
|
+
* Change `catalog_name`, `name` and `schema_name` fields for `databricks.sdk.service.catalog.CreateRegisteredModelRequest` to no longer be required.
|
|
370
|
+
* [Breaking] Change `name` field for `databricks.sdk.service.database.DatabaseInstanceRole` to be required.
|
|
371
|
+
* Change `name` field for `databricks.sdk.service.database.DatabaseInstanceRole` to be required.
|
|
372
|
+
* Change `network_name` field for `databricks.sdk.service.provisioning.CreateNetworkRequest` to no longer be required.
|
|
373
|
+
* Change `private_access_settings_name` and `region` fields for `databricks.sdk.service.provisioning.CreatePrivateAccessSettingsRequest` to no longer be required.
|
|
374
|
+
* Change `vpc_endpoint_name` field for `databricks.sdk.service.provisioning.CreateVpcEndpointRequest` to no longer be required.
|
|
375
|
+
* Change `workspace_name` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest` to no longer be required.
|
|
376
|
+
* Change `dataplane_relay` and `rest_api` fields for `databricks.sdk.service.provisioning.NetworkVpcEndpoints` to no longer be required.
|
|
377
|
+
* [Breaking] Change `dataplane_relay` and `rest_api` fields for `databricks.sdk.service.provisioning.NetworkVpcEndpoints` to no longer be required.
|
|
378
|
+
* [Breaking] Change waiter for [WorkspacesAPI.update](https://databricks-sdk-py.readthedocs.io/en/latest/account/provisioning/workspaces.html#databricks.sdk.service.provisioning.WorkspacesAPI.update) method.
|
|
379
|
+
* [Breaking] Remove `browse_only` field for `databricks.sdk.service.catalog.ModelVersionInfo`.
|
|
380
|
+
* [Breaking] Remove `jar_dependencies` field for `databricks.sdk.service.compute.Environment`.
|
|
381
|
+
* [Breaking] Remove `is_no_public_ip_enabled` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest`.
|
|
382
|
+
* [Breaking] Remove `allowed_vpc_endpoint_ids`, `private_access_level`, `private_access_settings_name`, `public_access_enabled` and `region` fields for `databricks.sdk.service.provisioning.ReplacePrivateAccessSettingsRequest`.
|
|
383
|
+
* [Breaking] Remove `external_id` field for `databricks.sdk.service.provisioning.StsRole`.
|
|
384
|
+
* [Breaking] Remove `aws_region`, `credentials_id`, `custom_tags`, `managed_services_customer_managed_key_id`, `network_connectivity_config_id`, `network_id`, `private_access_settings_id`, `storage_configuration_id` and `storage_customer_managed_key_id` fields for `databricks.sdk.service.provisioning.UpdateWorkspaceRequest`.
|
|
385
|
+
* [Breaking] Remove `external_customer_info` and `is_no_public_ip_enabled` fields for `databricks.sdk.service.provisioning.Workspace`.
|
|
386
|
+
* [Breaking] Remove `status_unspecified` enum value for `databricks.sdk.service.sql.Status`.
|
|
387
|
+
* Add `compute_mode` field for `databricks.sdk.service.provisioning.CreateWorkspaceRequest`.
|
|
388
|
+
* Add `expected_workspace_status` field for `databricks.sdk.service.provisioning.Workspace`.
|
|
389
|
+
* Add `dependency_storage_locations` field for `databricks.sdk.service.sharing.TableInternalAttributes`.
|
|
390
|
+
* Add `git_email` field for `databricks.sdk.service.workspace.CreateCredentialsRequest`.
|
|
391
|
+
* Add `git_email` field for `databricks.sdk.service.workspace.CreateCredentialsResponse`.
|
|
392
|
+
* Add `git_email` field for `databricks.sdk.service.workspace.CredentialInfo`.
|
|
393
|
+
* Add `git_email` field for `databricks.sdk.service.workspace.GetCredentialsResponse`.
|
|
394
|
+
* Add `git_email` field for `databricks.sdk.service.workspace.UpdateCredentialsRequest`.
|
|
395
|
+
* Add `germany_tisax` enum value for `databricks.sdk.service.settings.ComplianceStandard`.
|
|
396
|
+
* [Breaking] Remove `prediction_probability_column` field for `databricks.sdk.service.dataquality.InferenceLogConfig`.
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
## Release v0.67.0 (2025-09-25)
|
|
400
|
+
|
|
401
|
+
### API Changes
|
|
402
|
+
* Add `update_notifications()` method for [w.serving_endpoints](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/serving/serving_endpoints.html) workspace-level service.
|
|
403
|
+
* Add `parameters` field for `databricks.sdk.service.dashboards.GenieQueryAttachment`.
|
|
404
|
+
* Add `database_instance_name` field for `databricks.sdk.service.database.CreateDatabaseInstanceRoleRequest`.
|
|
405
|
+
* Add `custom_tags`, `effective_custom_tags`, `effective_usage_policy_id` and `usage_policy_id` fields for `databricks.sdk.service.database.DatabaseInstance`.
|
|
406
|
+
* Add `effective_attributes` and `instance_name` fields for `databricks.sdk.service.database.DatabaseInstanceRole`.
|
|
407
|
+
* Add `external_use_schema` enum value for `databricks.sdk.service.catalog.Privilege`.
|
|
408
|
+
* Add `stream_native` enum value for `databricks.sdk.service.catalog.SystemType`.
|
|
409
|
+
* Add `exceeded_max_token_length_exception` enum value for `databricks.sdk.service.dashboards.MessageErrorType`.
|
|
410
|
+
* Change `name` field for `databricks.sdk.service.database.DatabaseInstanceRole` to be required.
|
|
411
|
+
* [Breaking] Change `name` field for `databricks.sdk.service.database.DatabaseInstanceRole` to be required.
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
## Release v0.66.0 (2025-09-22)
|
|
415
|
+
|
|
416
|
+
### New Features and Improvements
|
|
417
|
+
|
|
418
|
+
* Add a public helper function to build a `CredentialsProvider` directly from an `IdTokenSource`.
|
|
419
|
+
|
|
420
|
+
### API Changes
|
|
421
|
+
* Added `databricks.sdk.service.iamv2` package.
|
|
422
|
+
* Added [a.account_groups_v2](https://databricks-sdk-py.readthedocs.io/en/latest/account/iam/account_groups_v2.html) account-level service, [a.account_service_principals_v2](https://databricks-sdk-py.readthedocs.io/en/latest/account/iam/account_service_principals_v2.html) account-level service, [a.account_users_v2](https://databricks-sdk-py.readthedocs.io/en/latest/account/iam/account_users_v2.html) account-level service, [w.groups_v2](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/iam/groups_v2.html) workspace-level service, [w.service_principals_v2](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/iam/service_principals_v2.html) workspace-level service and [w.users_v2](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/iam/users_v2.html) workspace-level service.
|
|
423
|
+
* Added [a.account_iam_v2](https://databricks-sdk-py.readthedocs.io/en/latest/account/iamv2/account_iam_v2.html) account-level service and [w.workspace_iam_v2](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/iamv2/workspace_iam_v2.html) workspace-level service.
|
|
424
|
+
* Added [w.feature_engineering](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/ml/feature_engineering.html) workspace-level service.
|
|
425
|
+
* Added `java_dependencies` field for `databricks.sdk.service.compute.Environment`.
|
|
426
|
+
* Added `followup_questions` field for `databricks.sdk.service.dashboards.GenieAttachment`.
|
|
427
|
+
* Added `feedback` field for `databricks.sdk.service.dashboards.GenieMessage`.
|
|
428
|
+
* Added `effective_capacity` field for `databricks.sdk.service.database.DatabaseInstance`.
|
|
429
|
+
* Added `disabled` field for `databricks.sdk.service.jobs.Task`.
|
|
430
|
+
* Added `netsuite_jar_path` field for `databricks.sdk.service.pipelines.IngestionPipelineDefinition`.
|
|
431
|
+
* Added `workday_report_parameters` field for `databricks.sdk.service.pipelines.TableSpecificConfig`.
|
|
432
|
+
* Added `auxiliary_managed_location` field for `databricks.sdk.service.sharing.TableInternalAttributes`.
|
|
433
|
+
* Added `alerts` field for `databricks.sdk.service.sql.ListAlertsV2Response`.
|
|
434
|
+
* Added `create_time` and `update_time` fields for `databricks.sdk.service.tags.TagPolicy`.
|
|
435
|
+
* Added `table_delta_uniform_iceberg_foreign_deltasharing` enum value for `databricks.sdk.service.catalog.SecurableKind`.
|
|
436
|
+
* Added `no_activated_k8s` and `usage_policy_entitlement_denied` enum values for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
437
|
+
* Added `internal_catalog_path_overlap_exception` and `internal_catalog_missing_uc_path_exception` enum values for `databricks.sdk.service.dashboards.MessageErrorType`.
|
|
438
|
+
* Added `foreign_catalog` enum value for `databricks.sdk.service.pipelines.IngestionSourceType`.
|
|
439
|
+
* Added `foreign_iceberg_table` enum value for `databricks.sdk.service.sharing.TableInternalAttributesSharedTableType`.
|
|
440
|
+
* [Breaking] Removed `disabled` field for `databricks.sdk.service.jobs.RunTask`.
|
|
441
|
+
* [Breaking] Removed `default_data_security_mode` and `effective_default_data_security_mode` fields for `databricks.sdk.service.settingsv2.Setting`.
|
|
442
|
+
* Added `list_shares()` method for [w.shares](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/sharing/shares.html) workspace-level service.
|
|
443
|
+
* Added `suggested_questions` field for `databricks.sdk.service.dashboards.GenieAttachment`.
|
|
444
|
+
* Added `warehouse_id` field for `databricks.sdk.service.dashboards.GenieSpace`.
|
|
445
|
+
* Added `palantir` enum value for `databricks.sdk.service.catalog.ConnectionType`.
|
|
446
|
+
* Added `table_metric_view_deltasharing` and `table_foreign_palantir` enum values for `databricks.sdk.service.catalog.SecurableKind`.
|
|
447
|
+
* Added `no_activated_k8s_testing_tag` enum value for `databricks.sdk.service.compute.TerminationReasonCode`.
|
|
448
|
+
* Added `metric_view` enum value for `databricks.sdk.service.sharing.TableInternalAttributesSharedTableType`.
|
|
449
|
+
* [Breaking] Removed `followup_questions` field for `databricks.sdk.service.dashboards.GenieAttachment`.
|
|
450
|
+
* [Breaking] Removed `comment` field for `databricks.sdk.service.dashboards.GenieFeedback`.
|
|
451
|
+
* [Breaking] Removed `comment` field for `databricks.sdk.service.dashboards.GenieSendMessageFeedbackRequest`.
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
## Release v0.65.0 (2025-09-02)
|
|
4
455
|
|
|
5
456
|
### New Features and Improvements
|
|
6
457
|
|
|
@@ -22,7 +473,7 @@
|
|
|
22
473
|
* [Breaking] Removed `feedback_rating` and `feedback_text` fields for `databricks.sdk.service.dashboards.GenieSendMessageFeedbackRequest`.
|
|
23
474
|
|
|
24
475
|
|
|
25
|
-
## Release v0.64.0
|
|
476
|
+
## Release v0.64.0 (2025-08-20)
|
|
26
477
|
|
|
27
478
|
### API Changes
|
|
28
479
|
* Added `databricks.sdk.service.settingsv2` and `databricks.sdk.service.tags` packages.
|
|
@@ -47,7 +498,7 @@
|
|
|
47
498
|
* [Breaking] Removed `comment`, `display_name` and `tags` fields for `databricks.sdk.service.sharing.Share`.
|
|
48
499
|
|
|
49
500
|
|
|
50
|
-
## Release v0.63.0
|
|
501
|
+
## Release v0.63.0 (2025-08-13)
|
|
51
502
|
|
|
52
503
|
### API Changes
|
|
53
504
|
* Added [w.policies](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/catalog/policies.html) workspace-level service and [w.temporary_path_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/catalog/temporary_path_credentials.html) workspace-level service.
|
|
@@ -63,7 +514,7 @@
|
|
|
63
514
|
* [Breaking] Changed `publish_mode` field for `databricks.sdk.service.ml.PublishSpec` to be required.
|
|
64
515
|
|
|
65
516
|
|
|
66
|
-
## Release v0.62.0
|
|
517
|
+
## Release v0.62.0 (2025-08-06)
|
|
67
518
|
|
|
68
519
|
### Bug Fixes
|
|
69
520
|
|
|
@@ -83,7 +534,7 @@
|
|
|
83
534
|
* [Breaking] Removed `is_featured` field for `databricks.sdk.service.marketplace.ListProvidersRequest`.
|
|
84
535
|
|
|
85
536
|
|
|
86
|
-
## Release v0.61.0
|
|
537
|
+
## Release v0.61.0 (2025-07-31)
|
|
87
538
|
|
|
88
539
|
### API Changes
|
|
89
540
|
* Added [w.clean_room_asset_revisions](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/cleanrooms/clean_room_asset_revisions.html) workspace-level service and [w.clean_room_auto_approval_rules](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/cleanrooms/clean_room_auto_approval_rules.html) workspace-level service.
|
|
@@ -108,7 +559,7 @@
|
|
|
108
559
|
* Changed `output_schema_name` field for `databricks.sdk.service.catalog.MonitorInfo` to be required.
|
|
109
560
|
|
|
110
561
|
|
|
111
|
-
## Release v0.60.0
|
|
562
|
+
## Release v0.60.0 (2025-07-24)
|
|
112
563
|
|
|
113
564
|
### New Features and Improvements
|
|
114
565
|
|
|
@@ -143,7 +594,7 @@
|
|
|
143
594
|
* [Breaking] Removed `databricks.sdk.service.aibuilder` package.
|
|
144
595
|
|
|
145
596
|
|
|
146
|
-
## Release v0.59.0
|
|
597
|
+
## Release v0.59.0 (2025-07-17)
|
|
147
598
|
|
|
148
599
|
### API Changes
|
|
149
600
|
* Added [w.service_principal_secrets_proxy](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/oauth2/service_principal_secrets_proxy.html) workspace-level service.
|
|
@@ -176,7 +627,7 @@
|
|
|
176
627
|
* [Breaking] Removed `range` and `if_unmodified_since` fields for `databricks.sdk.service.files.GetMetadataRequest`.
|
|
177
628
|
|
|
178
629
|
|
|
179
|
-
## Release v0.58.0
|
|
630
|
+
## Release v0.58.0 (2025-07-09)
|
|
180
631
|
|
|
181
632
|
### API Changes
|
|
182
633
|
* Added `remote_disk_throughput` and `total_initial_remote_disk_size` fields for `databricks.sdk.service.compute.ClusterAttributes`.
|
|
@@ -267,7 +718,7 @@
|
|
|
267
718
|
* [Breaking] Removed `archived`, `none`, `production` and `staging` enum values for `databricks.sdk.service.ml.Stage`.
|
|
268
719
|
|
|
269
720
|
|
|
270
|
-
## Release v0.57.0
|
|
721
|
+
## Release v0.57.0 (2025-06-12)
|
|
271
722
|
|
|
272
723
|
### API Changes
|
|
273
724
|
* Added [w.ai_builder](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/aibuilder/ai_builder.html) workspace-level service.
|
|
@@ -294,7 +745,7 @@
|
|
|
294
745
|
* [Breaking] Removed `cancelled`, `error`, `queued`, `running`, `starting` and `success` enum values for `databricks.sdk.service.jobs.DbtCloudRunStatus`.
|
|
295
746
|
|
|
296
747
|
|
|
297
|
-
## Release v0.56.0
|
|
748
|
+
## Release v0.56.0 (2025-06-05)
|
|
298
749
|
|
|
299
750
|
### API Changes
|
|
300
751
|
* Added `databricks.sdk.service.aibuilder`, `databricks.sdk.service.database` and `databricks.sdk.service.qualitymonitorv2` packages.
|
|
@@ -373,7 +824,7 @@
|
|
|
373
824
|
* [Breaking] Removed `internal` and `internal_and_external` enum values for `databricks.sdk.service.catalog.UpdateMetastoreDeltaSharingScope`.
|
|
374
825
|
|
|
375
826
|
|
|
376
|
-
## Release v0.55.0
|
|
827
|
+
## Release v0.55.0 (2025-05-27)
|
|
377
828
|
|
|
378
829
|
### New Features and Improvements
|
|
379
830
|
|
|
@@ -388,7 +839,7 @@
|
|
|
388
839
|
([#979](https://github.com/databricks/databricks-sdk-py/pull/979)).
|
|
389
840
|
|
|
390
841
|
|
|
391
|
-
## Release v0.54.0
|
|
842
|
+
## Release v0.54.0 (2025-05-22)
|
|
392
843
|
|
|
393
844
|
### API Changes
|
|
394
845
|
* Added [a.llm_proxy_partner_powered_account](https://databricks-sdk-py.readthedocs.io/en/latest/account/settings/settings/llm_proxy_partner_powered_account.html) account-level service, [a.llm_proxy_partner_powered_enforce](https://databricks-sdk-py.readthedocs.io/en/latest/account/settings/settings/llm_proxy_partner_powered_enforce.html) account-level service, [w.llm_proxy_partner_powered_workspace](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/settings/settings/llm_proxy_partner_powered_workspace.html) workspace-level service, [a.network_policies](https://databricks-sdk-py.readthedocs.io/en/latest/account/settings/network_policies.html) account-level service and [a.workspace_network_configuration](https://databricks-sdk-py.readthedocs.io/en/latest/account/settings/workspace_network_configuration.html) account-level service.
|
|
@@ -454,13 +905,13 @@
|
|
|
454
905
|
* [Breaking] Removed `catalog`, `credential`, `external_location` and `storage_credential` enum values for `databricks.sdk.service.catalog.UpdateBindingsSecurableType`.
|
|
455
906
|
|
|
456
907
|
|
|
457
|
-
## Release v0.53.0
|
|
908
|
+
## Release v0.53.0 (2025-05-02)
|
|
458
909
|
|
|
459
910
|
### Bug Fixes
|
|
460
911
|
* Fixed the deserialization of responses in VectorSearchAPI's `query_index()` method ([#961](https://github.com/databricks/databricks-sdk-py/pull/961)).
|
|
461
912
|
|
|
462
913
|
|
|
463
|
-
## Release v0.52.0
|
|
914
|
+
## Release v0.52.0 (2025-05-02)
|
|
464
915
|
|
|
465
916
|
### API Changes
|
|
466
917
|
* Added `future_feature_data_path` field for `databricks.sdk.service.ml.CreateForecastingExperimentRequest`.
|
|
@@ -482,7 +933,7 @@
|
|
|
482
933
|
* Fixed waiter for [GenieAPI.create_message](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/dashboards/genie.html#databricks.sdk.service.dashboards.GenieAPI.create_message) method.
|
|
483
934
|
|
|
484
935
|
|
|
485
|
-
## Release v0.51.0
|
|
936
|
+
## Release v0.51.0 (2025-04-30)
|
|
486
937
|
|
|
487
938
|
### New Features and Improvements
|
|
488
939
|
* Enabled asynchronous token refreshes by default. A new `disable_async_token_refresh` configuration option has been added to allow disabling this feature if necessary ([#952](https://github.com/databricks/databricks-sdk-py/pull/952)).
|
|
@@ -533,7 +984,7 @@
|
|
|
533
984
|
* [Breaking] Removed `blob`, `dfs`, `mysql_server` and `sql_server` enum values for `databricks.sdk.service.settings.NccAzurePrivateEndpointRuleGroupId`.
|
|
534
985
|
|
|
535
986
|
|
|
536
|
-
## Release v0.50.0
|
|
987
|
+
## Release v0.50.0 (2025-04-14)
|
|
537
988
|
|
|
538
989
|
### API Changes
|
|
539
990
|
* Added [w.enable_export_notebook](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/settings/settings/enable_export_notebook.html) workspace-level service, [w.enable_notebook_table_clipboard](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/settings/settings/enable_notebook_table_clipboard.html) workspace-level service and [w.enable_results_downloading](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/settings/settings/enable_results_downloading.html) workspace-level service.
|
|
@@ -564,7 +1015,7 @@
|
|
|
564
1015
|
* [Breaking] Removed [PipelinesAPI.wait_get_pipeline_running](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/pipelines/pipelines.html#databricks.sdk.service.pipelines.PipelinesAPI.wait_get_pipeline_running) method.
|
|
565
1016
|
|
|
566
1017
|
|
|
567
|
-
## Release v0.49.0
|
|
1018
|
+
## Release v0.49.0 (2025-03-28)
|
|
568
1019
|
|
|
569
1020
|
### API Changes
|
|
570
1021
|
* Added `generate_download_full_query_result()` method for [w.genie](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/dashboards/genie.html) workspace-level service.
|
|
@@ -600,7 +1051,7 @@
|
|
|
600
1051
|
* [Breaking] Removed `aliases`, `comment`, `data_type`, `dependency_list`, `full_data_type`, `id`, `input_params`, `name`, `properties`, `routine_definition`, `schema`, `securable_kind`, `share`, `share_id`, `storage_location` and `tags` fields for `databricks.sdk.service.sharing.Function`.
|
|
601
1052
|
|
|
602
1053
|
|
|
603
|
-
## Release v0.48.0
|
|
1054
|
+
## Release v0.48.0 (2025-03-27)
|
|
604
1055
|
|
|
605
1056
|
### API Changes
|
|
606
1057
|
* Added `execution_details` and `script` fields for `databricks.sdk.service.compute.InitScriptInfoAndExecutionDetails`.
|
|
@@ -628,7 +1079,7 @@
|
|
|
628
1079
|
* [Breaking] Removed `custom` enum value for `databricks.sdk.service.serving.ExternalModelProvider`.
|
|
629
1080
|
|
|
630
1081
|
|
|
631
|
-
## Release v0.47.0
|
|
1082
|
+
## Release v0.47.0 (2025-03-21)
|
|
632
1083
|
|
|
633
1084
|
### Bug Fixes
|
|
634
1085
|
|
|
@@ -667,7 +1118,7 @@
|
|
|
667
1118
|
* [Breaking] Removed `aliases`, `comment`, `data_type`, `dependency_list`, `full_data_type`, `id`, `input_params`, `name`, `properties`, `routine_definition`, `schema`, `securable_kind`, `share`, `share_id`, `storage_location` and `tags` fields for `databricks.sdk.service.sharing.Function`.
|
|
668
1119
|
|
|
669
1120
|
|
|
670
|
-
## Release v0.46.0
|
|
1121
|
+
## Release v0.46.0 (2025-03-12)
|
|
671
1122
|
|
|
672
1123
|
### New Features and Improvements
|
|
673
1124
|
* [Experimental] Add support for async token refresh ([#916](https://github.com/databricks/databricks-sdk-py/pull/916)).
|
|
@@ -684,7 +1135,7 @@
|
|
|
684
1135
|
* [Breaking] Removed `jwks_uri` field for `databricks.sdk.service.oauth2.OidcFederationPolicy`.
|
|
685
1136
|
|
|
686
1137
|
|
|
687
|
-
## Release v0.45.0
|
|
1138
|
+
## Release v0.45.0 (2025-03-07)
|
|
688
1139
|
|
|
689
1140
|
### New Features and Improvements
|
|
690
1141
|
* Update Jobs service to use API 2.2 ([#913](https://github.com/databricks/databricks-sdk-py/pull/913)).
|
|
@@ -756,7 +1207,7 @@
|
|
|
756
1207
|
* [Breaking] Removed `active_only`, `all` and `deleted_only` enum values for `databricks.sdk.service.ml.SearchRunsRunViewType`.
|
|
757
1208
|
|
|
758
1209
|
|
|
759
|
-
##
|
|
1210
|
+
## Release v0.44.1 (2025-02-13)
|
|
760
1211
|
|
|
761
1212
|
### New Features and Improvements
|
|
762
1213
|
|
|
@@ -769,7 +1220,7 @@
|
|
|
769
1220
|
|
|
770
1221
|
|
|
771
1222
|
|
|
772
|
-
##
|
|
1223
|
+
## Release v0.44.0 (2025-02-11)
|
|
773
1224
|
|
|
774
1225
|
### Internal Changes
|
|
775
1226
|
|
|
@@ -786,7 +1237,7 @@
|
|
|
786
1237
|
|
|
787
1238
|
OpenAPI SHA: 99f644e72261ef5ecf8d74db20f4b7a1e09723cc, Date: 2025-02-11
|
|
788
1239
|
|
|
789
|
-
##
|
|
1240
|
+
## Release v0.43.0 (2025-02-03)
|
|
790
1241
|
|
|
791
1242
|
### API Changes:
|
|
792
1243
|
|
|
@@ -842,7 +1293,7 @@ OpenAPI SHA: c72c58f97b950fcb924a90ef164bcb10cfcd5ece, Date: 2025-02-03
|
|
|
842
1293
|
|
|
843
1294
|
OpenAPI SHA: 840c660106f820a1a5dff931d51fa5f65cd9fdd9, Date: 2025-01-28
|
|
844
1295
|
|
|
845
|
-
##
|
|
1296
|
+
## Release v0.41.0 (2025-01-20)
|
|
846
1297
|
|
|
847
1298
|
### New Features and Improvements
|
|
848
1299
|
|
|
@@ -905,7 +1356,7 @@ OpenAPI SHA: 840c660106f820a1a5dff931d51fa5f65cd9fdd9, Date: 2025-01-28
|
|
|
905
1356
|
|
|
906
1357
|
OpenAPI SHA: 58905570a9928fc9ed31fba14a2edaf9a7c55b08, Date: 2025-01-20
|
|
907
1358
|
|
|
908
|
-
##
|
|
1359
|
+
## Release v0.40.0 (2024-12-19)
|
|
909
1360
|
|
|
910
1361
|
### API Changes:
|
|
911
1362
|
|
|
@@ -924,7 +1375,7 @@ OpenAPI SHA: 58905570a9928fc9ed31fba14a2edaf9a7c55b08, Date: 2025-01-20
|
|
|
924
1375
|
|
|
925
1376
|
OpenAPI SHA: a6a317df8327c9b1e5cb59a03a42ffa2aabeef6d, Date: 2024-12-16
|
|
926
1377
|
|
|
927
|
-
##
|
|
1378
|
+
## Release v0.39.0 (2024-12-11)
|
|
928
1379
|
|
|
929
1380
|
### Bug Fixes
|
|
930
1381
|
|
|
@@ -952,7 +1403,7 @@ OpenAPI SHA: a6a317df8327c9b1e5cb59a03a42ffa2aabeef6d, Date: 2024-12-16
|
|
|
952
1403
|
|
|
953
1404
|
OpenAPI SHA: 7016dcbf2e011459416cf408ce21143bcc4b3a25, Date: 2024-12-05
|
|
954
1405
|
|
|
955
|
-
##
|
|
1406
|
+
## Release v0.38.0 (2024-11-18)
|
|
956
1407
|
|
|
957
1408
|
### New Features and Improvements
|
|
958
1409
|
|
|
@@ -990,7 +1441,7 @@ OpenAPI SHA: 7016dcbf2e011459416cf408ce21143bcc4b3a25, Date: 2024-12-05
|
|
|
990
1441
|
|
|
991
1442
|
OpenAPI SHA: f2385add116e3716c8a90a0b68e204deb40f996c, Date: 2024-11-15
|
|
992
1443
|
|
|
993
|
-
##
|
|
1444
|
+
## Release v0.37.0 (2024-11-05)
|
|
994
1445
|
|
|
995
1446
|
### Bug Fixes
|
|
996
1447
|
|
|
@@ -1047,7 +1498,7 @@ OpenAPI SHA: f2385add116e3716c8a90a0b68e204deb40f996c, Date: 2024-11-15
|
|
|
1047
1498
|
|
|
1048
1499
|
OpenAPI SHA: 5285ce76f81314f342c1702d5c2ad4ef42488781, Date: 2024-11-04
|
|
1049
1500
|
|
|
1050
|
-
##
|
|
1501
|
+
## Release v0.36.0 (2024-10-22)
|
|
1051
1502
|
|
|
1052
1503
|
### Breaking Changes
|
|
1053
1504
|
* `external_browser` now uses the `databricks-cli` app instead of the third-party "6128a518-99a9-425b-8333-4cc94f04cacd" application when performing the U2M login flow for Azure workspaces when a client ID is not otherwise specified. This matches the AWS behavior.
|
|
@@ -1067,7 +1518,7 @@ OpenAPI SHA: 5285ce76f81314f342c1702d5c2ad4ef42488781, Date: 2024-11-04
|
|
|
1067
1518
|
|
|
1068
1519
|
|
|
1069
1520
|
|
|
1070
|
-
##
|
|
1521
|
+
## Release v0.35.0 (2024-10-17)
|
|
1071
1522
|
|
|
1072
1523
|
### New Features and Improvements
|
|
1073
1524
|
|
|
@@ -1098,7 +1549,7 @@ OpenAPI SHA: 5285ce76f81314f342c1702d5c2ad4ef42488781, Date: 2024-11-04
|
|
|
1098
1549
|
|
|
1099
1550
|
OpenAPI SHA: cf9c61453990df0f9453670f2fe68e1b128647a2, Date: 2024-10-14
|
|
1100
1551
|
|
|
1101
|
-
##
|
|
1552
|
+
## Release v0.34.0 (2024-10-07)
|
|
1102
1553
|
|
|
1103
1554
|
### Bug Fixes
|
|
1104
1555
|
|
|
@@ -1122,7 +1573,7 @@ OpenAPI SHA: cf9c61453990df0f9453670f2fe68e1b128647a2, Date: 2024-10-14
|
|
|
1122
1573
|
|
|
1123
1574
|
OpenAPI SHA: bc17b474818138f19b78a7bea0675707dead2b87, Date: 2024-10-07
|
|
1124
1575
|
|
|
1125
|
-
##
|
|
1576
|
+
## Release v0.33.0 (2024-09-26)
|
|
1126
1577
|
|
|
1127
1578
|
### Internal Changes
|
|
1128
1579
|
|
|
@@ -1188,7 +1639,7 @@ OpenAPI SHA: bc17b474818138f19b78a7bea0675707dead2b87, Date: 2024-10-07
|
|
|
1188
1639
|
|
|
1189
1640
|
OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
|
|
1190
1641
|
|
|
1191
|
-
##
|
|
1642
|
+
## Release v0.32.3 (2024-09-19)
|
|
1192
1643
|
|
|
1193
1644
|
### New Features and Improvements
|
|
1194
1645
|
|
|
@@ -1202,7 +1653,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
|
|
|
1202
1653
|
|
|
1203
1654
|
|
|
1204
1655
|
|
|
1205
|
-
##
|
|
1656
|
+
## Release v0.32.2 (2024-09-17)
|
|
1206
1657
|
|
|
1207
1658
|
### New Features and Improvements
|
|
1208
1659
|
|
|
@@ -1217,7 +1668,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
|
|
|
1217
1668
|
|
|
1218
1669
|
|
|
1219
1670
|
|
|
1220
|
-
##
|
|
1671
|
+
## Release v0.32.1 (2024-09-10)
|
|
1221
1672
|
|
|
1222
1673
|
### Bug Fixes
|
|
1223
1674
|
|
|
@@ -1225,7 +1676,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
|
|
|
1225
1676
|
|
|
1226
1677
|
|
|
1227
1678
|
|
|
1228
|
-
##
|
|
1679
|
+
## Release v0.32.0 (2024-09-04)
|
|
1229
1680
|
|
|
1230
1681
|
### Bug Fixes
|
|
1231
1682
|
|
|
@@ -1257,7 +1708,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
|
|
|
1257
1708
|
|
|
1258
1709
|
OpenAPI SHA: d05898328669a3f8ab0c2ecee37db2673d3ea3f7, Date: 2024-09-04
|
|
1259
1710
|
|
|
1260
|
-
##
|
|
1711
|
+
## Release v0.31.1 (2024-08-28)
|
|
1261
1712
|
|
|
1262
1713
|
### Bug Fixes
|
|
1263
1714
|
|
|
@@ -1271,7 +1722,7 @@ OpenAPI SHA: d05898328669a3f8ab0c2ecee37db2673d3ea3f7, Date: 2024-09-04
|
|
|
1271
1722
|
|
|
1272
1723
|
|
|
1273
1724
|
|
|
1274
|
-
##
|
|
1725
|
+
## Release v0.31.0 (2024-08-21)
|
|
1275
1726
|
|
|
1276
1727
|
### Bug Fixes
|
|
1277
1728
|
|
|
@@ -1304,7 +1755,7 @@ OpenAPI SHA: d05898328669a3f8ab0c2ecee37db2673d3ea3f7, Date: 2024-09-04
|
|
|
1304
1755
|
|
|
1305
1756
|
OpenAPI SHA: 3eae49b444cac5a0118a3503e5b7ecef7f96527a, Date: 2024-08-21
|
|
1306
1757
|
|
|
1307
|
-
##
|
|
1758
|
+
## Release v0.30.0 (2024-08-13)
|
|
1308
1759
|
|
|
1309
1760
|
### New Features and Improvements
|
|
1310
1761
|
|
|
@@ -1502,7 +1953,7 @@ OpenAPI SHA: 3eae49b444cac5a0118a3503e5b7ecef7f96527a, Date: 2024-08-21
|
|
|
1502
1953
|
|
|
1503
1954
|
OpenAPI SHA: f98c07f9c71f579de65d2587bb0292f83d10e55d, Date: 2024-08-12
|
|
1504
1955
|
|
|
1505
|
-
##
|
|
1956
|
+
## Release v0.29.0 (2024-06-24)
|
|
1506
1957
|
|
|
1507
1958
|
### Breaking Changes
|
|
1508
1959
|
* Create a method to generate OAuth tokens ([#644](https://github.com/databricks/databricks-sdk-py/pull/644))
|
|
@@ -1573,7 +2024,7 @@ OpenAPI SHA: f98c07f9c71f579de65d2587bb0292f83d10e55d, Date: 2024-08-12
|
|
|
1573
2024
|
* Added `next_page_token` field for `databricks.sdk.service.vectorsearch.QueryVectorIndexResponse`.
|
|
1574
2025
|
|
|
1575
2026
|
OpenAPI SHA: 7437dabb9dadee402c1fc060df4c1ce8cc5369f0, Date: 2024-06-24
|
|
1576
|
-
##
|
|
2027
|
+
## Release v0.28.0 (2024-05-23)
|
|
1577
2028
|
|
|
1578
2029
|
### Improvements and new features
|
|
1579
2030
|
|
|
@@ -1635,13 +2086,13 @@ OpenAPI SHA: 7437dabb9dadee402c1fc060df4c1ce8cc5369f0, Date: 2024-06-24
|
|
|
1635
2086
|
* Changed `list()` method for [w.connections](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/connections.html) workspace-level service to require request of `databricks.sdk.service.catalog.ListConnectionsRequest` dataclass.
|
|
1636
2087
|
|
|
1637
2088
|
OpenAPI SHA: 7eb5ad9a2ed3e3f1055968a2d1014ac92c06fe92, Date: 2024-05-21
|
|
1638
|
-
##
|
|
2089
|
+
## Release v0.27.1 (2024-05-16)
|
|
1639
2090
|
|
|
1640
2091
|
### Bug Fixes
|
|
1641
2092
|
* Fix null body response to empty in ApiClient ([#579](https://github.com/databricks/databricks-sdk-py/pull/579)).
|
|
1642
2093
|
|
|
1643
2094
|
|
|
1644
|
-
##
|
|
2095
|
+
## Release v0.27.0 (2024-05-03)
|
|
1645
2096
|
|
|
1646
2097
|
### New Features
|
|
1647
2098
|
|
|
@@ -1738,7 +2189,7 @@ API Changes:
|
|
|
1738
2189
|
|
|
1739
2190
|
OpenAPI SHA: 9bb7950fa3390afb97abaa552934bc0a2e069de5, Date: 2024-05-02
|
|
1740
2191
|
|
|
1741
|
-
##
|
|
2192
|
+
## Release v0.26.0 (2024-04-24)
|
|
1742
2193
|
|
|
1743
2194
|
* Increase cluster creation test timeout ([#617](https://github.com/databricks/databricks-sdk-py/pull/617)).
|
|
1744
2195
|
* Added code example for adding a user to a group using group patch API ([#625](https://github.com/databricks/databricks-sdk-py/pull/625)).
|
|
@@ -1774,13 +2225,13 @@ API Changes:
|
|
|
1774
2225
|
|
|
1775
2226
|
OpenAPI SHA: 06d330f43d92c1be864d4638c672cd0723e20a51, Date: 2024-04-22
|
|
1776
2227
|
|
|
1777
|
-
##
|
|
2228
|
+
## Release v0.25.1 (2024-04-12)
|
|
1778
2229
|
|
|
1779
2230
|
Bug fixes:
|
|
1780
2231
|
* Fixed `select_node_type` error ([#614](https://github.com/databricks/databricks-sdk-py/pull/614)).
|
|
1781
2232
|
|
|
1782
2233
|
|
|
1783
|
-
##
|
|
2234
|
+
## Release v0.25.0 (2024-04-11)
|
|
1784
2235
|
|
|
1785
2236
|
### Behavior Changes
|
|
1786
2237
|
|
|
@@ -1916,7 +2367,7 @@ API Changes:
|
|
|
1916
2367
|
|
|
1917
2368
|
OpenAPI SHA: 94684175b8bd65f8701f89729351f8069e8309c9, Date: 2024-04-11
|
|
1918
2369
|
|
|
1919
|
-
##
|
|
2370
|
+
## Release v0.24.0 (2024-04-02)
|
|
1920
2371
|
|
|
1921
2372
|
### Improvements and Bug Fixes
|
|
1922
2373
|
* Properly escape multi-segment path parameters ([#596](https://github.com/databricks/databricks-sdk-py/pull/596)).
|
|
@@ -1978,7 +2429,7 @@ OpenAPI SHA: 94684175b8bd65f8701f89729351f8069e8309c9, Date: 2024-04-11
|
|
|
1978
2429
|
|
|
1979
2430
|
OpenAPI SHA: d38528c3e47dd81c9bdbd918272a3e49d36e09ce, Date: 2024-03-27
|
|
1980
2431
|
|
|
1981
|
-
##
|
|
2432
|
+
## Release v0.23.0 (2024-03-20)
|
|
1982
2433
|
|
|
1983
2434
|
* Add CONTRIBUTING.md ([#585](https://github.com/databricks/databricks-sdk-py/pull/585)).
|
|
1984
2435
|
|
|
@@ -1999,7 +2450,7 @@ API Changes:
|
|
|
1999
2450
|
|
|
2000
2451
|
OpenAPI SHA: 93763b0d7ae908520c229c786fff28b8fd623261, Date: 2024-03-20
|
|
2001
2452
|
|
|
2002
|
-
##
|
|
2453
|
+
## Release v0.22.0 (2024-03-15)
|
|
2003
2454
|
|
|
2004
2455
|
* Fix typos in doc string for select_spark_version ([#575](https://github.com/databricks/databricks-sdk-py/pull/575)).
|
|
2005
2456
|
|
|
@@ -2014,7 +2465,7 @@ API Changes:
|
|
|
2014
2465
|
|
|
2015
2466
|
OpenAPI SHA: c84caf9e5ef531cc0b1ddd0a76970d9a8b664e32, Date: 2024-03-15
|
|
2016
2467
|
|
|
2017
|
-
##
|
|
2468
|
+
## Release v0.21.0 (2024-03-07)
|
|
2018
2469
|
|
|
2019
2470
|
### New Features and Improvements
|
|
2020
2471
|
* Fixed get_workspace_client in GCP ([#532](https://github.com/databricks/databricks-sdk-py/pull/532)).
|
|
@@ -2154,7 +2605,7 @@ Dataclasses:
|
|
|
2154
2605
|
OpenAPI SHA: 1026b998b14fba1b8317528f47778240dc4e9a5d, Date: 2024-03-06
|
|
2155
2606
|
|
|
2156
2607
|
|
|
2157
|
-
##
|
|
2608
|
+
## Release v0.20.0 (2024-02-19)
|
|
2158
2609
|
|
|
2159
2610
|
Major Changes:
|
|
2160
2611
|
|
|
@@ -2215,7 +2666,7 @@ API Changes:
|
|
|
2215
2666
|
|
|
2216
2667
|
OpenAPI SHA: cdd76a98a4fca7008572b3a94427566dd286c63b, Date: 2024-02-19
|
|
2217
2668
|
|
|
2218
|
-
##
|
|
2669
|
+
## Release v0.19.1 (2024-02-15)
|
|
2219
2670
|
|
|
2220
2671
|
New features:
|
|
2221
2672
|
|
|
@@ -2224,7 +2675,7 @@ New features:
|
|
|
2224
2675
|
Bugfix:
|
|
2225
2676
|
|
|
2226
2677
|
* Create a deepcopy of config when creating workspace client from account client ([#542](https://github.com/databricks/databricks-sdk-py/pull/542)). This fixes an issue where `AccountClient` instances would stop working after calling `get_workspace_client()`.
|
|
2227
|
-
##
|
|
2678
|
+
## Release v0.19.0 (2024-02-09)
|
|
2228
2679
|
|
|
2229
2680
|
### Improvements and Bug Fixes
|
|
2230
2681
|
* Construct workspace client from account client ([#527](https://github.com/databricks/databricks-sdk-py/pull/527)).
|
|
@@ -2326,7 +2777,7 @@ Changes:
|
|
|
2326
2777
|
|
|
2327
2778
|
OpenAPI SHA: 6b897bc95b23abed8b9f5eff0e6b8ec034046180, Date: 2024-02-08
|
|
2328
2779
|
|
|
2329
|
-
##
|
|
2780
|
+
## Release v0.18.0 (2024-01-23)
|
|
2330
2781
|
|
|
2331
2782
|
Bugfixes:
|
|
2332
2783
|
|
|
@@ -2367,7 +2818,7 @@ API Changes:
|
|
|
2367
2818
|
|
|
2368
2819
|
OpenAPI SHA: e05401ed5dd4974c5333d737ec308a7d451f749f, Date: 2024-01-23
|
|
2369
2820
|
|
|
2370
|
-
##
|
|
2821
|
+
## Release v0.17.0 (2024-01-11)
|
|
2371
2822
|
|
|
2372
2823
|
* Use covariant type for `@retried(on=[...])` ([#486](https://github.com/databricks/databricks-sdk-py/pull/486)).
|
|
2373
2824
|
* Configure request timeout using existing parameter from Config ([#489](https://github.com/databricks/databricks-sdk-py/pull/489)).
|
|
@@ -2397,7 +2848,7 @@ API Changes:
|
|
|
2397
2848
|
|
|
2398
2849
|
OpenAPI SHA: 0e0d4cbe87193e36c73b8b2be3b0dd0f1b013e00, Date: 2024-01-10
|
|
2399
2850
|
|
|
2400
|
-
##
|
|
2851
|
+
## Release v0.16.0 (2023-12-20)
|
|
2401
2852
|
|
|
2402
2853
|
* Sort imports in service template ([#479](https://github.com/databricks/databricks-sdk-py/pull/479)).
|
|
2403
2854
|
* Add `py.typed` to support PEP-561 ([#483](https://github.com/databricks/databricks-sdk-py/pull/483)).
|
|
@@ -2427,7 +2878,7 @@ API Changes:
|
|
|
2427
2878
|
|
|
2428
2879
|
OpenAPI SHA: d3853c8dee5806d04da2ae8910f273ffb35719a5, Date: 2023-12-14
|
|
2429
2880
|
|
|
2430
|
-
##
|
|
2881
|
+
## Release v0.15.0 (2023-12-12)
|
|
2431
2882
|
|
|
2432
2883
|
Bugfixes:
|
|
2433
2884
|
|
|
@@ -2552,7 +3003,7 @@ API Changes:
|
|
|
2552
3003
|
|
|
2553
3004
|
OpenAPI SHA: 63caa3cb0c05045e81d3dcf2451fa990d8670f36, Date: 2023-12-12
|
|
2554
3005
|
|
|
2555
|
-
##
|
|
3006
|
+
## Release v0.14.0 (2023-11-29)
|
|
2556
3007
|
|
|
2557
3008
|
Major changes:
|
|
2558
3009
|
* GCP Auth is now supported in the Python SDK. To use Google credentials-based authentication, specify your Default Application Credentials in the `GOOGLE_CREDENTIALS` environment variable or corresponding `google_credentials` parameter in `Config` or the client constructors. You may provide either the path to the file containing your credentials or the credentials themselves serialized as JSON. To use Google impersonation, specify the service principal to impersonate in the `DATABRICKS_GOOGLE_SERVICE_ACCOUNT` environment variable or the corresponding `google_service_account` parameter in `Config` or the client constructors. See [#444](https://github.com/databricks/databricks-sdk-py/pull/444) for the changes.
|
|
@@ -2585,7 +3036,7 @@ Dependency updates:
|
|
|
2585
3036
|
* Introduced "google-auth" dependency to support Google authentication.
|
|
2586
3037
|
|
|
2587
3038
|
|
|
2588
|
-
##
|
|
3039
|
+
## Release v0.13.0 (2023-11-14)
|
|
2589
3040
|
|
|
2590
3041
|
* Introduce more specific exceptions, like `NotFound`, `AlreadyExists`, `BadRequest`, `PermissionDenied`, `InternalError`, and others ([#376](https://github.com/databricks/databricks-sdk-py/pull/376)). This makes it easier to handle errors thrown by the Databricks API. Instead of catching `DatabricksError` and checking the error_code field, you can catch one of these subtypes of `DatabricksError`, which is more ergonomic and removes the need to rethrow exceptions that you don't want to catch. For example:
|
|
2591
3042
|
```python
|
|
@@ -2649,7 +3100,7 @@ Internal changes:
|
|
|
2649
3100
|
|
|
2650
3101
|
OpenAPI SHA: d136ad0541f036372601bad9a4382db06c3c912d, Date: 2023-11-14
|
|
2651
3102
|
|
|
2652
|
-
##
|
|
3103
|
+
## Release v0.12.0 (2023-10-24)
|
|
2653
3104
|
|
|
2654
3105
|
* Retry on all 429 and 503, even when missing Retry-After header ([#402](https://github.com/databricks/databricks-sdk-py/pull/402)).
|
|
2655
3106
|
* Add support for tokenless authentication for GitHub Actions configured with OpenID Connect with Azure User Managed Identity (or Service Principal) ([#385](https://github.com/databricks/databricks-sdk-py/pull/385)).
|
|
@@ -2666,7 +3117,7 @@ API Changes:
|
|
|
2666
3117
|
|
|
2667
3118
|
OpenAPI SHA: 5903bb39137fd76ac384b2044e425f9c56840e00, Date: 2023-10-23
|
|
2668
3119
|
|
|
2669
|
-
##
|
|
3120
|
+
## Release v0.11.0 (2023-10-12)
|
|
2670
3121
|
|
|
2671
3122
|
* Added Python 3.12 to project classifiers ([#381](https://github.com/databricks/databricks-sdk-py/pull/381)).
|
|
2672
3123
|
* Fix serialization issues for generated resources ([#382](https://github.com/databricks/databricks-sdk-py/pull/382)).
|
|
@@ -2736,7 +3187,7 @@ API Changes:
|
|
|
2736
3187
|
|
|
2737
3188
|
OpenAPI SHA: 493a76554afd3afdd15dc858773d01643f80352a, Date: 2023-10-12
|
|
2738
3189
|
|
|
2739
|
-
##
|
|
3190
|
+
## Release v0.10.0 (2023-10-03)
|
|
2740
3191
|
|
|
2741
3192
|
* Respect `retry_timeout_seconds` config setting and align retry implementation with Go SDK ([#337](https://github.com/databricks/databricks-sdk-py/pull/337)).
|
|
2742
3193
|
|
|
@@ -2772,7 +3223,7 @@ API Changes:
|
|
|
2772
3223
|
|
|
2773
3224
|
OpenAPI SHA: bcbf6e851e3d82fd910940910dd31c10c059746c, Date: 2023-10-02
|
|
2774
3225
|
|
|
2775
|
-
##
|
|
3226
|
+
## Release v0.9.0 (2023-09-20)
|
|
2776
3227
|
|
|
2777
3228
|
* Don't try to import runtime_auth when not in runtime ([#327](https://github.com/databricks/databricks-sdk-py/pull/327)).
|
|
2778
3229
|
* Handled Azure authentication when WorkspaceResourceID is provided ([#328](https://github.com/databricks/databricks-sdk-py/pull/328)).
|
|
@@ -2828,7 +3279,7 @@ API Changes:
|
|
|
2828
3279
|
|
|
2829
3280
|
OpenAPI SHA: b52a3b410976501f08f76ca0b355fb2dca876953, Date: 2023-09-15
|
|
2830
3281
|
|
|
2831
|
-
##
|
|
3282
|
+
## Release v0.8.0 (2023-09-04)
|
|
2832
3283
|
|
|
2833
3284
|
* Fixed redeclared `test_streaming_response_read_partial` test ([#335](https://github.com/databricks/databricks-sdk-py/pull/335)).
|
|
2834
3285
|
* Fixed `Incorrect type` warning ([#336](https://github.com/databricks/databricks-sdk-py/pull/336)).
|
|
@@ -2864,12 +3315,12 @@ API Changes:
|
|
|
2864
3315
|
* Added `databricks.sdk.service.sql.WidgetPosition` dataclass.
|
|
2865
3316
|
|
|
2866
3317
|
OpenAPI SHA: 09a7fa63d9ae243e5407941f200960ca14d48b07, Date: 2023-09-04
|
|
2867
|
-
##
|
|
3318
|
+
## Release v0.7.1 (2023-08-31)
|
|
2868
3319
|
|
|
2869
3320
|
* Improve file download performance ([#319](https://github.com/databricks/databricks-sdk-py/pull/319)).
|
|
2870
3321
|
|
|
2871
3322
|
|
|
2872
|
-
##
|
|
3323
|
+
## Release v0.7.0 (2023-08-29)
|
|
2873
3324
|
|
|
2874
3325
|
* Added support for GZIP'ed streaming responses ([#306](https://github.com/databricks/databricks-sdk-py/pull/306)).
|
|
2875
3326
|
* Added support for per-method request headers to ApiClient ([#302](https://github.com/databricks/databricks-sdk-py/pull/302)).
|
|
@@ -2951,7 +3402,7 @@ SDK Internal Changes:
|
|
|
2951
3402
|
|
|
2952
3403
|
OpenAPI SHA: 5d0ccbb790d341eae8e85321a685a9e9e2d5bf24, Date: 2023-08-29
|
|
2953
3404
|
|
|
2954
|
-
##
|
|
3405
|
+
## Release v0.6.0 (2023-08-17)
|
|
2955
3406
|
|
|
2956
3407
|
* Added collection of Databricks Runtime versions used together with Python SDK ([#287](https://github.com/databricks/databricks-sdk-py/pull/287)).
|
|
2957
3408
|
* Applied attribute transformer when reading in attributes from the environment ([#293](https://github.com/databricks/databricks-sdk-py/pull/293)).
|
|
@@ -3024,7 +3475,7 @@ Service Renames:
|
|
|
3024
3475
|
|
|
3025
3476
|
OpenAPI SHA: beff621d7b3e1d59244e2e34fc53a496f310e130, Date: 2023-08-17
|
|
3026
3477
|
|
|
3027
|
-
##
|
|
3478
|
+
## Release v0.5.0 (2023-08-11)
|
|
3028
3479
|
|
|
3029
3480
|
* Added `connection_pool_size` configuration property (preview) ([#276](https://github.com/databricks/databricks-sdk-py/pull/276)).
|
|
3030
3481
|
* Fixed OAuth M2M corner case in `WorkspaceClient` where `DATABRICKS_ACCOUNT_ID` is present in the environment ([#273](https://github.com/databricks/databricks-sdk-py/pull/273)).
|
|
@@ -3061,7 +3512,7 @@ API Changes:
|
|
|
3061
3512
|
|
|
3062
3513
|
OpenAPI SHA: 1e3533f94335f0e6c5d9262bc1fea95b3ddcb0e1, Date: 2023-08-11
|
|
3063
3514
|
|
|
3064
|
-
##
|
|
3515
|
+
## Release v0.4.0 (2023-08-07)
|
|
3065
3516
|
|
|
3066
3517
|
To simplify documentation and management of object permissions, this release features a major reorganization of how permissions APIs are structured in the SDK. Rather than using a single permissions.get() API for all services, each service supporting permissions has its own permissions APIs. Follow these steps to migrate to the current SDK:
|
|
3067
3518
|
|
|
@@ -3277,14 +3728,14 @@ API Changes:
|
|
|
3277
3728
|
|
|
3278
3729
|
OpenAPI SHA: 386b65ecdc825b9c3ed4aa7ca88e2e5baf9d87df, Date: 2023-08-07
|
|
3279
3730
|
|
|
3280
|
-
##
|
|
3731
|
+
## Release v0.3.1 (2023-08-02)
|
|
3281
3732
|
|
|
3282
3733
|
* Added timeout to `w.clusters.ensure_cluster_running()` ([#227](https://github.com/databricks/databricks-sdk-py/pull/227)).
|
|
3283
3734
|
* Fixed `debug_headers` type hints for `WorkspaceClient` and `AccountClient` ([#258](https://github.com/databricks/databricks-sdk-py/pull/258)).
|
|
3284
3735
|
* Made dbutils typecast use a valid type variable ([#259](https://github.com/databricks/databricks-sdk-py/pull/259)).
|
|
3285
3736
|
|
|
3286
3737
|
|
|
3287
|
-
##
|
|
3738
|
+
## Release v0.3.0 (2023-07-27)
|
|
3288
3739
|
|
|
3289
3740
|
* Fixed serialization of lists of enum values ([#248](https://github.com/databricks/databricks-sdk-py/pull/248)).
|
|
3290
3741
|
* Fixed examples that used incorrect keyword argument names. (https://github.com/databricks/databricks-sdk-go/pull/560)
|
|
@@ -3318,12 +3769,12 @@ API Changes:
|
|
|
3318
3769
|
|
|
3319
3770
|
OpenAPI SHA: a1b6c1ecfaab6635911d3c060a8dd797ac6b2d4d, Date: 2023-07-27
|
|
3320
3771
|
|
|
3321
|
-
##
|
|
3772
|
+
## Release v0.2.1 (2023-07-18)
|
|
3322
3773
|
|
|
3323
3774
|
* Support older versions of `urllib3` and Databricks Runtime with regards to `DEFAULT_METHOD_WHITELIST` change to `DEFAULT_ALLOWED_METHODS` ([#240](https://github.com/databricks/databricks-sdk-py/pull/240)).
|
|
3324
3775
|
|
|
3325
3776
|
|
|
3326
|
-
##
|
|
3777
|
+
## Release v0.2.0 (2023-07-18)
|
|
3327
3778
|
|
|
3328
3779
|
* Add Issue Templates ([#208](https://github.com/databricks/databricks-sdk-py/pull/208)).
|
|
3329
3780
|
* Fixed notebook native auth for jobs ([#209](https://github.com/databricks/databricks-sdk-py/pull/209)).
|
|
@@ -3412,7 +3863,7 @@ API Changes:
|
|
|
3412
3863
|
|
|
3413
3864
|
OpenAPI SHA: 0a1949ba96f71680dad30e06973eaae85b1307bb, Date: 2023-07-18
|
|
3414
3865
|
|
|
3415
|
-
##
|
|
3866
|
+
## Release v0.1.12 (2023-06-28)
|
|
3416
3867
|
|
|
3417
3868
|
* Beta release ([#198](https://github.com/databricks/databricks-sdk-py/pull/198)).
|
|
3418
3869
|
* Documentation improvements ([#197](https://github.com/databricks/databricks-sdk-py/pull/197)).
|
|
@@ -3430,7 +3881,7 @@ API changes:
|
|
|
3430
3881
|
* Renamed `jobs.GitSourceGitProvider` to `jobs.GitProvider`
|
|
3431
3882
|
* Renamed `jobs.FileArrivalTriggerSettings` to `jobs.FileArrivalTriggerConfiguration`
|
|
3432
3883
|
|
|
3433
|
-
##
|
|
3884
|
+
## Release v0.1.11 (2023-06-21)
|
|
3434
3885
|
|
|
3435
3886
|
* Added Sphinx documentation ([#184](https://github.com/databricks/databricks-sdk-py/pull/184), [#191](https://github.com/databricks/databricks-sdk-py/pull/191), [#183](https://github.com/databricks/databricks-sdk-py/pull/183), [#193](https://github.com/databricks/databricks-sdk-py/pull/193)).
|
|
3436
3887
|
* Integrated with ReadTheDocs service ([#188](https://github.com/databricks/databricks-sdk-py/pull/188), [#189](https://github.com/databricks/databricks-sdk-py/pull/189), [#190](https://github.com/databricks/databricks-sdk-py/pull/190)).
|
|
@@ -3440,7 +3891,7 @@ API changes:
|
|
|
3440
3891
|
* Move classes to other repository ([#192](https://github.com/databricks/databricks-sdk-py/pull/192)).
|
|
3441
3892
|
* Relax `requests` version upper bound to <3 ([#138](https://github.com/databricks/databricks-sdk-py/pull/138)).
|
|
3442
3893
|
|
|
3443
|
-
##
|
|
3894
|
+
## Release v0.1.10 (2023-06-15)
|
|
3444
3895
|
|
|
3445
3896
|
* Regenerate from OpenAPI spec ([#176](https://github.com/databricks/databricks-sdk-py/pull/176)).
|
|
3446
3897
|
* Added improved notebook-native authentication ([#152](https://github.com/databricks/databricks-sdk-py/pull/152)).
|
|
@@ -3451,7 +3902,7 @@ API changes:
|
|
|
3451
3902
|
* Mark non-required fields as `Optional` ([#170](https://github.com/databricks/databricks-sdk-py/pull/170)).
|
|
3452
3903
|
* Synchronize auth permutation tests with Go SDK ([#165](https://github.com/databricks/databricks-sdk-py/pull/165)).
|
|
3453
3904
|
|
|
3454
|
-
##
|
|
3905
|
+
## Release v0.1.9 (2023-06-09)
|
|
3455
3906
|
|
|
3456
3907
|
* Added new services from OpenAPI spec ([#145](https://github.com/databricks/databricks-sdk-py/pull/145), [#159](https://github.com/databricks/databricks-sdk-py/pull/159)).
|
|
3457
3908
|
* Added consistent usage of the `upload(path, IO)` and `download(path) -> IO` across file-related operations ([#148](https://github.com/databricks/databricks-sdk-py/pull/148)).
|
|
@@ -3462,14 +3913,14 @@ API changes:
|
|
|
3462
3913
|
* Fixed generation of external entities ([#146](https://github.com/databricks/databricks-sdk-py/pull/146)).
|
|
3463
3914
|
* Make u2m authentication work with new CLI ([#150](https://github.com/databricks/databricks-sdk-py/pull/150)).
|
|
3464
3915
|
|
|
3465
|
-
##
|
|
3916
|
+
## Release v0.1.8 (2023-05-22)
|
|
3466
3917
|
|
|
3467
3918
|
* Regenerated from OpenAPI spec ([#124](https://github.com/databricks/databricks-sdk-py/pull/124)).
|
|
3468
3919
|
* Added `codecov.io` badge ([#126](https://github.com/databricks/databricks-sdk-py/pull/126)).
|
|
3469
3920
|
* Improved readme with links to examples ([#125](https://github.com/databricks/databricks-sdk-py/pull/125)).
|
|
3470
3921
|
* Fixed `AttributeError: 'NoneType' object has no attribute 'debug_truncate_bytes' when instantiating an ApiClient` with empty config ([#123](https://github.com/databricks/databricks-sdk-py/pull/123)).
|
|
3471
3922
|
|
|
3472
|
-
##
|
|
3923
|
+
## Release v0.1.7 (2023-05-17)
|
|
3473
3924
|
|
|
3474
3925
|
* Added an extensive set of examples ([#113](https://github.com/databricks/databricks-sdk-py/pull/113)).
|
|
3475
3926
|
* Fixed broken `dbutils.fs.mount` and `dbutils.fs.updateMount` ([#119](https://github.com/databricks/databricks-sdk-py/pull/119)).
|
|
@@ -3480,35 +3931,35 @@ API changes:
|
|
|
3480
3931
|
* Rename `RefreshableCredentials` to `SessionCredentials` ([#116](https://github.com/databricks/databricks-sdk-py/pull/116)).
|
|
3481
3932
|
* Use shell for opening `az` cli on Windows ([#117](https://github.com/databricks/databricks-sdk-py/pull/117)).
|
|
3482
3933
|
|
|
3483
|
-
##
|
|
3934
|
+
## Release v0.1.6 (2023-05-10)
|
|
3484
3935
|
|
|
3485
3936
|
* Preserve original `databricks.sdk.runtime` for internal purposes ([#96](https://github.com/databricks/databricks-sdk-py/pull/96)).
|
|
3486
3937
|
|
|
3487
|
-
##
|
|
3938
|
+
## Release v0.1.5 (2023-05-08)
|
|
3488
3939
|
|
|
3489
3940
|
* Pin version of `requests` to `>=2.28.1,<2.29.0`, so that we don't get `ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with LibreSSL 2.8.3`. See [this issue](https://github.com/psf/requests/issues/6432) for more information.
|
|
3490
3941
|
|
|
3491
|
-
##
|
|
3942
|
+
## Release v0.1.4 (2023-05-05)
|
|
3492
3943
|
|
|
3493
3944
|
* Removed experimental redacting logger filter for `dbutils.secrets.get('scope', 'key')`, that was causing Jupyter Kernels to hang ([#92](https://github.com/databricks/databricks-sdk-py/pull/92)).
|
|
3494
3945
|
* Fixed error handling for SCIM and CommandExecution APIs ([#94](https://github.com/databricks/databricks-sdk-py/pull/94)).
|
|
3495
3946
|
* Created `dependabot.yml` ([#89](https://github.com/databricks/databricks-sdk-py/pull/89)).
|
|
3496
3947
|
|
|
3497
|
-
##
|
|
3948
|
+
## Release v0.1.3 (2023-05-03)
|
|
3498
3949
|
|
|
3499
3950
|
* Added support for sdist ([#86](https://github.com/databricks/databricks-sdk-py/pull/86)).
|
|
3500
3951
|
* Removed redundant newlines from AAD OAuth responses ([#85](https://github.com/databricks/databricks-sdk-py/pull/85)).
|
|
3501
3952
|
* Update README.md with doc links ([#83](https://github.com/databricks/databricks-sdk-py/pull/83)).
|
|
3502
3953
|
|
|
3503
|
-
##
|
|
3954
|
+
## Release v0.1.2 (2023-05-03)
|
|
3504
3955
|
|
|
3505
3956
|
* Fix `dbutils.fs.put()` utility ([#82](https://github.com/databricks/databricks-sdk-py/pull/82)).
|
|
3506
3957
|
|
|
3507
|
-
##
|
|
3958
|
+
## Release v0.1.1 (2023-04-28)
|
|
3508
3959
|
|
|
3509
3960
|
* Improve Azure AD auth ([#80](https://github.com/databricks/databricks-sdk-py/pull/80)).
|
|
3510
3961
|
|
|
3511
|
-
##
|
|
3962
|
+
## Release v0.1.0 (2023-04-20)
|
|
3512
3963
|
|
|
3513
3964
|
* Make code working with new OpenAPI packaging ([#78](https://github.com/databricks/databricks-sdk-py/pull/78)).
|
|
3514
3965
|
* Added `bricks` CLI authentication ([#66](https://github.com/databricks/databricks-sdk-py/pull/66)).
|