databricks-sdk 0.64.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.
Files changed (101) hide show
  1. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/CHANGELOG.md +559 -86
  2. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/PKG-INFO +8 -5
  3. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/README.md +5 -3
  4. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/__init__.py +127 -46
  5. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/_base_client.py +4 -1
  6. databricks_sdk-0.74.0/databricks/sdk/common/lro.py +17 -0
  7. databricks_sdk-0.74.0/databricks/sdk/common/types/fieldmask.py +39 -0
  8. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/config.py +65 -14
  9. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/credentials_provider.py +112 -19
  10. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/dbutils.py +22 -1
  11. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/parser.py +8 -3
  12. databricks_sdk-0.74.0/databricks/sdk/mixins/files.py +2620 -0
  13. databricks_sdk-0.74.0/databricks/sdk/mixins/files_utils.py +293 -0
  14. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/open_ai_client.py +55 -6
  15. databricks_sdk-0.74.0/databricks/sdk/mixins/sharing.py +44 -0
  16. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/oauth.py +91 -3
  17. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/oidc.py +1 -1
  18. databricks_sdk-0.74.0/databricks/sdk/oidc_token_supplier.py +108 -0
  19. databricks_sdk-0.74.0/databricks/sdk/retries.py +169 -0
  20. databricks_sdk-0.74.0/databricks/sdk/service/__init__.py +0 -0
  21. databricks_sdk-0.74.0/databricks/sdk/service/_internal.py +164 -0
  22. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/agentbricks.py +3 -1
  23. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/apps.py +273 -1
  24. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/billing.py +30 -7
  25. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/catalog.py +1167 -568
  26. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/cleanrooms.py +17 -8
  27. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/compute.py +100 -46
  28. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/dashboards.py +321 -30
  29. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/database.py +168 -43
  30. databricks_sdk-0.74.0/databricks/sdk/service/dataquality.py +1294 -0
  31. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/files.py +9 -73
  32. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/iam.py +2574 -515
  33. databricks_sdk-0.74.0/databricks/sdk/service/iamv2.py +649 -0
  34. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/jobs.py +235 -238
  35. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/marketplace.py +20 -1
  36. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/ml.py +1705 -222
  37. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/oauth2.py +41 -23
  38. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/pipelines.py +694 -27
  39. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/provisioning.py +611 -658
  40. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/qualitymonitorv2.py +3 -1
  41. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/serving.py +75 -22
  42. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/settings.py +121 -76
  43. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/settingsv2.py +57 -67
  44. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/sharing.py +58 -73
  45. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/sql.py +428 -175
  46. databricks_sdk-0.74.0/databricks/sdk/service/tags.py +512 -0
  47. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/vectorsearch.py +323 -6
  48. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/service/workspace.py +100 -112
  49. databricks_sdk-0.74.0/databricks/sdk/version.py +1 -0
  50. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/PKG-INFO +8 -5
  51. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/SOURCES.txt +7 -0
  52. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/requires.txt +2 -1
  53. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/pyproject.toml +4 -1
  54. databricks_sdk-0.64.0/databricks/sdk/mixins/files.py +0 -1519
  55. databricks_sdk-0.64.0/databricks/sdk/oidc_token_supplier.py +0 -28
  56. databricks_sdk-0.64.0/databricks/sdk/retries.py +0 -69
  57. databricks_sdk-0.64.0/databricks/sdk/service/_internal.py +0 -72
  58. databricks_sdk-0.64.0/databricks/sdk/service/tags.py +0 -232
  59. databricks_sdk-0.64.0/databricks/sdk/version.py +0 -1
  60. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/CONTRIBUTING.md +0 -0
  61. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/DCO +0 -0
  62. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/LICENSE +0 -0
  63. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/MANIFEST.in +0 -0
  64. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/Makefile +0 -0
  65. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/NOTICE +0 -0
  66. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/SECURITY.md +0 -0
  67. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/__init__.py +0 -0
  68. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/_property.py +0 -0
  69. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/_widgets/__init__.py +0 -0
  70. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/_widgets/default_widgets_utils.py +0 -0
  71. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/_widgets/ipywidgets_utils.py +0 -0
  72. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/azure.py +0 -0
  73. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/casing.py +0 -0
  74. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/clock.py +0 -0
  75. {databricks_sdk-0.64.0/databricks/sdk/mixins → databricks_sdk-0.74.0/databricks/sdk/common/types}/__init__.py +0 -0
  76. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/core.py +0 -0
  77. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/data_plane.py +0 -0
  78. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/environments.py +0 -0
  79. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/__init__.py +0 -0
  80. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/base.py +0 -0
  81. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/customizer.py +0 -0
  82. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/deserializer.py +0 -0
  83. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/details.py +0 -0
  84. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/mapper.py +0 -0
  85. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/overrides.py +0 -0
  86. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/platform.py +0 -0
  87. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/private_link.py +0 -0
  88. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/errors/sdk.py +0 -0
  89. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/logger/__init__.py +0 -0
  90. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/logger/round_trip_logger.py +0 -0
  91. {databricks_sdk-0.64.0/databricks/sdk/service → databricks_sdk-0.74.0/databricks/sdk/mixins}/__init__.py +0 -0
  92. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/compute.py +0 -0
  93. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/jobs.py +0 -0
  94. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/mixins/workspace.py +0 -0
  95. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/py.typed +0 -0
  96. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/runtime/__init__.py +0 -0
  97. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/runtime/dbutils_stub.py +0 -0
  98. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks/sdk/useragent.py +0 -0
  99. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/dependency_links.txt +0 -0
  100. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/databricks_sdk.egg-info/top_level.txt +0 -0
  101. {databricks_sdk-0.64.0 → databricks_sdk-0.74.0}/setup.cfg +0 -0
@@ -1,6 +1,479 @@
1
1
  # Version changelog
2
2
 
3
- ## Release v0.64.0
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)
455
+
456
+ ### New Features and Improvements
457
+
458
+ * Added support for passing additional kwargs to `WorkspaceClient().serving_endpoints.get_open_ai_client()` ([#1025](https://github.com/databricks/databricks-sdk-py/pull/1025)). Users can now pass standard OpenAI client parameters like `timeout` and `max_retries` when creating an OpenAI client for Databricks Model Serving.
459
+
460
+ ### API Changes
461
+ * Added `comment` field for `databricks.sdk.service.dashboards.GenieSendMessageFeedbackRequest`.
462
+ * [Breaking] Added `rating` field for `databricks.sdk.service.dashboards.GenieSendMessageFeedbackRequest`.
463
+ * Added `effective_enable_pg_native_login` and `enable_pg_native_login` fields for `databricks.sdk.service.database.DatabaseInstance`.
464
+ * Added `task_retry_mode` field for `databricks.sdk.service.jobs.Continuous`.
465
+ * Added `source_configurations` field for `databricks.sdk.service.pipelines.IngestionPipelineDefinition`.
466
+ * Added `app_id`, `app_id_set`, `auth_secret`, `auth_secret_set`, `channel_url`, `channel_url_set`, `tenant_id` and `tenant_id_set` fields for `databricks.sdk.service.settings.MicrosoftTeamsConfig`.
467
+ * Added `ensure_reranker_compatible` field for `databricks.sdk.service.vectorsearch.GetIndexRequest`.
468
+ * Added `reranker` field for `databricks.sdk.service.vectorsearch.QueryVectorIndexRequest`.
469
+ * [Breaking] Changed `create_clean_room_asset_review()` method for [w.clean_room_assets](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/cleanrooms/clean_room_assets.html) workspace-level service with new required argument order.
470
+ * [Breaking] Changed `send_message_feedback()` method for [w.genie](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/dashboards/genie.html) workspace-level service with new required argument order.
471
+ * Changed `notebook_review` field for `databricks.sdk.service.cleanrooms.CreateCleanRoomAssetReviewRequest` to no longer be required.
472
+ * [Breaking] Changed `features` field for `databricks.sdk.service.ml.FeatureList` to type list[`databricks.sdk.service.ml.LinkedFeature`] dataclass.
473
+ * [Breaking] Removed `feedback_rating` and `feedback_text` fields for `databricks.sdk.service.dashboards.GenieSendMessageFeedbackRequest`.
474
+
475
+
476
+ ## Release v0.64.0 (2025-08-20)
4
477
 
5
478
  ### API Changes
6
479
  * Added `databricks.sdk.service.settingsv2` and `databricks.sdk.service.tags` packages.
@@ -25,7 +498,7 @@
25
498
  * [Breaking] Removed `comment`, `display_name` and `tags` fields for `databricks.sdk.service.sharing.Share`.
26
499
 
27
500
 
28
- ## Release v0.63.0
501
+ ## Release v0.63.0 (2025-08-13)
29
502
 
30
503
  ### API Changes
31
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.
@@ -41,7 +514,7 @@
41
514
  * [Breaking] Changed `publish_mode` field for `databricks.sdk.service.ml.PublishSpec` to be required.
42
515
 
43
516
 
44
- ## Release v0.62.0
517
+ ## Release v0.62.0 (2025-08-06)
45
518
 
46
519
  ### Bug Fixes
47
520
 
@@ -61,7 +534,7 @@
61
534
  * [Breaking] Removed `is_featured` field for `databricks.sdk.service.marketplace.ListProvidersRequest`.
62
535
 
63
536
 
64
- ## Release v0.61.0
537
+ ## Release v0.61.0 (2025-07-31)
65
538
 
66
539
  ### API Changes
67
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.
@@ -86,7 +559,7 @@
86
559
  * Changed `output_schema_name` field for `databricks.sdk.service.catalog.MonitorInfo` to be required.
87
560
 
88
561
 
89
- ## Release v0.60.0
562
+ ## Release v0.60.0 (2025-07-24)
90
563
 
91
564
  ### New Features and Improvements
92
565
 
@@ -121,7 +594,7 @@
121
594
  * [Breaking] Removed `databricks.sdk.service.aibuilder` package.
122
595
 
123
596
 
124
- ## Release v0.59.0
597
+ ## Release v0.59.0 (2025-07-17)
125
598
 
126
599
  ### API Changes
127
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.
@@ -154,7 +627,7 @@
154
627
  * [Breaking] Removed `range` and `if_unmodified_since` fields for `databricks.sdk.service.files.GetMetadataRequest`.
155
628
 
156
629
 
157
- ## Release v0.58.0
630
+ ## Release v0.58.0 (2025-07-09)
158
631
 
159
632
  ### API Changes
160
633
  * Added `remote_disk_throughput` and `total_initial_remote_disk_size` fields for `databricks.sdk.service.compute.ClusterAttributes`.
@@ -245,7 +718,7 @@
245
718
  * [Breaking] Removed `archived`, `none`, `production` and `staging` enum values for `databricks.sdk.service.ml.Stage`.
246
719
 
247
720
 
248
- ## Release v0.57.0
721
+ ## Release v0.57.0 (2025-06-12)
249
722
 
250
723
  ### API Changes
251
724
  * Added [w.ai_builder](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/aibuilder/ai_builder.html) workspace-level service.
@@ -272,7 +745,7 @@
272
745
  * [Breaking] Removed `cancelled`, `error`, `queued`, `running`, `starting` and `success` enum values for `databricks.sdk.service.jobs.DbtCloudRunStatus`.
273
746
 
274
747
 
275
- ## Release v0.56.0
748
+ ## Release v0.56.0 (2025-06-05)
276
749
 
277
750
  ### API Changes
278
751
  * Added `databricks.sdk.service.aibuilder`, `databricks.sdk.service.database` and `databricks.sdk.service.qualitymonitorv2` packages.
@@ -351,7 +824,7 @@
351
824
  * [Breaking] Removed `internal` and `internal_and_external` enum values for `databricks.sdk.service.catalog.UpdateMetastoreDeltaSharingScope`.
352
825
 
353
826
 
354
- ## Release v0.55.0
827
+ ## Release v0.55.0 (2025-05-27)
355
828
 
356
829
  ### New Features and Improvements
357
830
 
@@ -366,7 +839,7 @@
366
839
  ([#979](https://github.com/databricks/databricks-sdk-py/pull/979)).
367
840
 
368
841
 
369
- ## Release v0.54.0
842
+ ## Release v0.54.0 (2025-05-22)
370
843
 
371
844
  ### API Changes
372
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.
@@ -432,13 +905,13 @@
432
905
  * [Breaking] Removed `catalog`, `credential`, `external_location` and `storage_credential` enum values for `databricks.sdk.service.catalog.UpdateBindingsSecurableType`.
433
906
 
434
907
 
435
- ## Release v0.53.0
908
+ ## Release v0.53.0 (2025-05-02)
436
909
 
437
910
  ### Bug Fixes
438
911
  * Fixed the deserialization of responses in VectorSearchAPI's `query_index()` method ([#961](https://github.com/databricks/databricks-sdk-py/pull/961)).
439
912
 
440
913
 
441
- ## Release v0.52.0
914
+ ## Release v0.52.0 (2025-05-02)
442
915
 
443
916
  ### API Changes
444
917
  * Added `future_feature_data_path` field for `databricks.sdk.service.ml.CreateForecastingExperimentRequest`.
@@ -460,7 +933,7 @@
460
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.
461
934
 
462
935
 
463
- ## Release v0.51.0
936
+ ## Release v0.51.0 (2025-04-30)
464
937
 
465
938
  ### New Features and Improvements
466
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)).
@@ -511,7 +984,7 @@
511
984
  * [Breaking] Removed `blob`, `dfs`, `mysql_server` and `sql_server` enum values for `databricks.sdk.service.settings.NccAzurePrivateEndpointRuleGroupId`.
512
985
 
513
986
 
514
- ## Release v0.50.0
987
+ ## Release v0.50.0 (2025-04-14)
515
988
 
516
989
  ### API Changes
517
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.
@@ -542,7 +1015,7 @@
542
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.
543
1016
 
544
1017
 
545
- ## Release v0.49.0
1018
+ ## Release v0.49.0 (2025-03-28)
546
1019
 
547
1020
  ### API Changes
548
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.
@@ -578,7 +1051,7 @@
578
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`.
579
1052
 
580
1053
 
581
- ## Release v0.48.0
1054
+ ## Release v0.48.0 (2025-03-27)
582
1055
 
583
1056
  ### API Changes
584
1057
  * Added `execution_details` and `script` fields for `databricks.sdk.service.compute.InitScriptInfoAndExecutionDetails`.
@@ -606,7 +1079,7 @@
606
1079
  * [Breaking] Removed `custom` enum value for `databricks.sdk.service.serving.ExternalModelProvider`.
607
1080
 
608
1081
 
609
- ## Release v0.47.0
1082
+ ## Release v0.47.0 (2025-03-21)
610
1083
 
611
1084
  ### Bug Fixes
612
1085
 
@@ -645,7 +1118,7 @@
645
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`.
646
1119
 
647
1120
 
648
- ## Release v0.46.0
1121
+ ## Release v0.46.0 (2025-03-12)
649
1122
 
650
1123
  ### New Features and Improvements
651
1124
  * [Experimental] Add support for async token refresh ([#916](https://github.com/databricks/databricks-sdk-py/pull/916)).
@@ -662,7 +1135,7 @@
662
1135
  * [Breaking] Removed `jwks_uri` field for `databricks.sdk.service.oauth2.OidcFederationPolicy`.
663
1136
 
664
1137
 
665
- ## Release v0.45.0
1138
+ ## Release v0.45.0 (2025-03-07)
666
1139
 
667
1140
  ### New Features and Improvements
668
1141
  * Update Jobs service to use API 2.2 ([#913](https://github.com/databricks/databricks-sdk-py/pull/913)).
@@ -734,7 +1207,7 @@
734
1207
  * [Breaking] Removed `active_only`, `all` and `deleted_only` enum values for `databricks.sdk.service.ml.SearchRunsRunViewType`.
735
1208
 
736
1209
 
737
- ## [Release] Release v0.44.1
1210
+ ## Release v0.44.1 (2025-02-13)
738
1211
 
739
1212
  ### New Features and Improvements
740
1213
 
@@ -747,7 +1220,7 @@
747
1220
 
748
1221
 
749
1222
 
750
- ## [Release] Release v0.44.0
1223
+ ## Release v0.44.0 (2025-02-11)
751
1224
 
752
1225
  ### Internal Changes
753
1226
 
@@ -764,7 +1237,7 @@
764
1237
 
765
1238
  OpenAPI SHA: 99f644e72261ef5ecf8d74db20f4b7a1e09723cc, Date: 2025-02-11
766
1239
 
767
- ## [Release] Release v0.43.0
1240
+ ## Release v0.43.0 (2025-02-03)
768
1241
 
769
1242
  ### API Changes:
770
1243
 
@@ -820,7 +1293,7 @@ OpenAPI SHA: c72c58f97b950fcb924a90ef164bcb10cfcd5ece, Date: 2025-02-03
820
1293
 
821
1294
  OpenAPI SHA: 840c660106f820a1a5dff931d51fa5f65cd9fdd9, Date: 2025-01-28
822
1295
 
823
- ## [Release] Release v0.41.0
1296
+ ## Release v0.41.0 (2025-01-20)
824
1297
 
825
1298
  ### New Features and Improvements
826
1299
 
@@ -883,7 +1356,7 @@ OpenAPI SHA: 840c660106f820a1a5dff931d51fa5f65cd9fdd9, Date: 2025-01-28
883
1356
 
884
1357
  OpenAPI SHA: 58905570a9928fc9ed31fba14a2edaf9a7c55b08, Date: 2025-01-20
885
1358
 
886
- ## [Release] Release v0.40.0
1359
+ ## Release v0.40.0 (2024-12-19)
887
1360
 
888
1361
  ### API Changes:
889
1362
 
@@ -902,7 +1375,7 @@ OpenAPI SHA: 58905570a9928fc9ed31fba14a2edaf9a7c55b08, Date: 2025-01-20
902
1375
 
903
1376
  OpenAPI SHA: a6a317df8327c9b1e5cb59a03a42ffa2aabeef6d, Date: 2024-12-16
904
1377
 
905
- ## [Release] Release v0.39.0
1378
+ ## Release v0.39.0 (2024-12-11)
906
1379
 
907
1380
  ### Bug Fixes
908
1381
 
@@ -930,7 +1403,7 @@ OpenAPI SHA: a6a317df8327c9b1e5cb59a03a42ffa2aabeef6d, Date: 2024-12-16
930
1403
 
931
1404
  OpenAPI SHA: 7016dcbf2e011459416cf408ce21143bcc4b3a25, Date: 2024-12-05
932
1405
 
933
- ## [Release] Release v0.38.0
1406
+ ## Release v0.38.0 (2024-11-18)
934
1407
 
935
1408
  ### New Features and Improvements
936
1409
 
@@ -968,7 +1441,7 @@ OpenAPI SHA: 7016dcbf2e011459416cf408ce21143bcc4b3a25, Date: 2024-12-05
968
1441
 
969
1442
  OpenAPI SHA: f2385add116e3716c8a90a0b68e204deb40f996c, Date: 2024-11-15
970
1443
 
971
- ## [Release] Release v0.37.0
1444
+ ## Release v0.37.0 (2024-11-05)
972
1445
 
973
1446
  ### Bug Fixes
974
1447
 
@@ -1025,7 +1498,7 @@ OpenAPI SHA: f2385add116e3716c8a90a0b68e204deb40f996c, Date: 2024-11-15
1025
1498
 
1026
1499
  OpenAPI SHA: 5285ce76f81314f342c1702d5c2ad4ef42488781, Date: 2024-11-04
1027
1500
 
1028
- ## [Release] Release v0.36.0
1501
+ ## Release v0.36.0 (2024-10-22)
1029
1502
 
1030
1503
  ### Breaking Changes
1031
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.
@@ -1045,7 +1518,7 @@ OpenAPI SHA: 5285ce76f81314f342c1702d5c2ad4ef42488781, Date: 2024-11-04
1045
1518
 
1046
1519
 
1047
1520
 
1048
- ## [Release] Release v0.35.0
1521
+ ## Release v0.35.0 (2024-10-17)
1049
1522
 
1050
1523
  ### New Features and Improvements
1051
1524
 
@@ -1076,7 +1549,7 @@ OpenAPI SHA: 5285ce76f81314f342c1702d5c2ad4ef42488781, Date: 2024-11-04
1076
1549
 
1077
1550
  OpenAPI SHA: cf9c61453990df0f9453670f2fe68e1b128647a2, Date: 2024-10-14
1078
1551
 
1079
- ## [Release] Release v0.34.0
1552
+ ## Release v0.34.0 (2024-10-07)
1080
1553
 
1081
1554
  ### Bug Fixes
1082
1555
 
@@ -1100,7 +1573,7 @@ OpenAPI SHA: cf9c61453990df0f9453670f2fe68e1b128647a2, Date: 2024-10-14
1100
1573
 
1101
1574
  OpenAPI SHA: bc17b474818138f19b78a7bea0675707dead2b87, Date: 2024-10-07
1102
1575
 
1103
- ## [Release] Release v0.33.0
1576
+ ## Release v0.33.0 (2024-09-26)
1104
1577
 
1105
1578
  ### Internal Changes
1106
1579
 
@@ -1166,7 +1639,7 @@ OpenAPI SHA: bc17b474818138f19b78a7bea0675707dead2b87, Date: 2024-10-07
1166
1639
 
1167
1640
  OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
1168
1641
 
1169
- ## [Release] Release v0.32.3
1642
+ ## Release v0.32.3 (2024-09-19)
1170
1643
 
1171
1644
  ### New Features and Improvements
1172
1645
 
@@ -1180,7 +1653,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
1180
1653
 
1181
1654
 
1182
1655
 
1183
- ## [Release] Release v0.32.2
1656
+ ## Release v0.32.2 (2024-09-17)
1184
1657
 
1185
1658
  ### New Features and Improvements
1186
1659
 
@@ -1195,7 +1668,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
1195
1668
 
1196
1669
 
1197
1670
 
1198
- ## [Release] Release v0.32.1
1671
+ ## Release v0.32.1 (2024-09-10)
1199
1672
 
1200
1673
  ### Bug Fixes
1201
1674
 
@@ -1203,7 +1676,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
1203
1676
 
1204
1677
 
1205
1678
 
1206
- ## [Release] Release v0.32.0
1679
+ ## Release v0.32.0 (2024-09-04)
1207
1680
 
1208
1681
  ### Bug Fixes
1209
1682
 
@@ -1235,7 +1708,7 @@ OpenAPI SHA: 248f4ad9668661da9d0bf4a7b0119a2d44fd1e75, Date: 2024-09-25
1235
1708
 
1236
1709
  OpenAPI SHA: d05898328669a3f8ab0c2ecee37db2673d3ea3f7, Date: 2024-09-04
1237
1710
 
1238
- ## [Release] Release v0.31.1
1711
+ ## Release v0.31.1 (2024-08-28)
1239
1712
 
1240
1713
  ### Bug Fixes
1241
1714
 
@@ -1249,7 +1722,7 @@ OpenAPI SHA: d05898328669a3f8ab0c2ecee37db2673d3ea3f7, Date: 2024-09-04
1249
1722
 
1250
1723
 
1251
1724
 
1252
- ## [Release] Release v0.31.0
1725
+ ## Release v0.31.0 (2024-08-21)
1253
1726
 
1254
1727
  ### Bug Fixes
1255
1728
 
@@ -1282,7 +1755,7 @@ OpenAPI SHA: d05898328669a3f8ab0c2ecee37db2673d3ea3f7, Date: 2024-09-04
1282
1755
 
1283
1756
  OpenAPI SHA: 3eae49b444cac5a0118a3503e5b7ecef7f96527a, Date: 2024-08-21
1284
1757
 
1285
- ## [Release] Release v0.30.0
1758
+ ## Release v0.30.0 (2024-08-13)
1286
1759
 
1287
1760
  ### New Features and Improvements
1288
1761
 
@@ -1480,7 +1953,7 @@ OpenAPI SHA: 3eae49b444cac5a0118a3503e5b7ecef7f96527a, Date: 2024-08-21
1480
1953
 
1481
1954
  OpenAPI SHA: f98c07f9c71f579de65d2587bb0292f83d10e55d, Date: 2024-08-12
1482
1955
 
1483
- ## 0.29.0
1956
+ ## Release v0.29.0 (2024-06-24)
1484
1957
 
1485
1958
  ### Breaking Changes
1486
1959
  * Create a method to generate OAuth tokens ([#644](https://github.com/databricks/databricks-sdk-py/pull/644))
@@ -1551,7 +2024,7 @@ OpenAPI SHA: f98c07f9c71f579de65d2587bb0292f83d10e55d, Date: 2024-08-12
1551
2024
  * Added `next_page_token` field for `databricks.sdk.service.vectorsearch.QueryVectorIndexResponse`.
1552
2025
 
1553
2026
  OpenAPI SHA: 7437dabb9dadee402c1fc060df4c1ce8cc5369f0, Date: 2024-06-24
1554
- ## 0.28.0
2027
+ ## Release v0.28.0 (2024-05-23)
1555
2028
 
1556
2029
  ### Improvements and new features
1557
2030
 
@@ -1613,13 +2086,13 @@ OpenAPI SHA: 7437dabb9dadee402c1fc060df4c1ce8cc5369f0, Date: 2024-06-24
1613
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.
1614
2087
 
1615
2088
  OpenAPI SHA: 7eb5ad9a2ed3e3f1055968a2d1014ac92c06fe92, Date: 2024-05-21
1616
- ## 0.27.1
2089
+ ## Release v0.27.1 (2024-05-16)
1617
2090
 
1618
2091
  ### Bug Fixes
1619
2092
  * Fix null body response to empty in ApiClient ([#579](https://github.com/databricks/databricks-sdk-py/pull/579)).
1620
2093
 
1621
2094
 
1622
- ## 0.27.0
2095
+ ## Release v0.27.0 (2024-05-03)
1623
2096
 
1624
2097
  ### New Features
1625
2098
 
@@ -1716,7 +2189,7 @@ API Changes:
1716
2189
 
1717
2190
  OpenAPI SHA: 9bb7950fa3390afb97abaa552934bc0a2e069de5, Date: 2024-05-02
1718
2191
 
1719
- ## 0.26.0
2192
+ ## Release v0.26.0 (2024-04-24)
1720
2193
 
1721
2194
  * Increase cluster creation test timeout ([#617](https://github.com/databricks/databricks-sdk-py/pull/617)).
1722
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)).
@@ -1752,13 +2225,13 @@ API Changes:
1752
2225
 
1753
2226
  OpenAPI SHA: 06d330f43d92c1be864d4638c672cd0723e20a51, Date: 2024-04-22
1754
2227
 
1755
- ## 0.25.1
2228
+ ## Release v0.25.1 (2024-04-12)
1756
2229
 
1757
2230
  Bug fixes:
1758
2231
  * Fixed `select_node_type` error ([#614](https://github.com/databricks/databricks-sdk-py/pull/614)).
1759
2232
 
1760
2233
 
1761
- ## 0.25.0
2234
+ ## Release v0.25.0 (2024-04-11)
1762
2235
 
1763
2236
  ### Behavior Changes
1764
2237
 
@@ -1894,7 +2367,7 @@ API Changes:
1894
2367
 
1895
2368
  OpenAPI SHA: 94684175b8bd65f8701f89729351f8069e8309c9, Date: 2024-04-11
1896
2369
 
1897
- ## 0.24.0
2370
+ ## Release v0.24.0 (2024-04-02)
1898
2371
 
1899
2372
  ### Improvements and Bug Fixes
1900
2373
  * Properly escape multi-segment path parameters ([#596](https://github.com/databricks/databricks-sdk-py/pull/596)).
@@ -1956,7 +2429,7 @@ OpenAPI SHA: 94684175b8bd65f8701f89729351f8069e8309c9, Date: 2024-04-11
1956
2429
 
1957
2430
  OpenAPI SHA: d38528c3e47dd81c9bdbd918272a3e49d36e09ce, Date: 2024-03-27
1958
2431
 
1959
- ## 0.23.0
2432
+ ## Release v0.23.0 (2024-03-20)
1960
2433
 
1961
2434
  * Add CONTRIBUTING.md ([#585](https://github.com/databricks/databricks-sdk-py/pull/585)).
1962
2435
 
@@ -1977,7 +2450,7 @@ API Changes:
1977
2450
 
1978
2451
  OpenAPI SHA: 93763b0d7ae908520c229c786fff28b8fd623261, Date: 2024-03-20
1979
2452
 
1980
- ## 0.22.0
2453
+ ## Release v0.22.0 (2024-03-15)
1981
2454
 
1982
2455
  * Fix typos in doc string for select_spark_version ([#575](https://github.com/databricks/databricks-sdk-py/pull/575)).
1983
2456
 
@@ -1992,7 +2465,7 @@ API Changes:
1992
2465
 
1993
2466
  OpenAPI SHA: c84caf9e5ef531cc0b1ddd0a76970d9a8b664e32, Date: 2024-03-15
1994
2467
 
1995
- ## 0.21.0
2468
+ ## Release v0.21.0 (2024-03-07)
1996
2469
 
1997
2470
  ### New Features and Improvements
1998
2471
  * Fixed get_workspace_client in GCP ([#532](https://github.com/databricks/databricks-sdk-py/pull/532)).
@@ -2132,7 +2605,7 @@ Dataclasses:
2132
2605
  OpenAPI SHA: 1026b998b14fba1b8317528f47778240dc4e9a5d, Date: 2024-03-06
2133
2606
 
2134
2607
 
2135
- ## 0.20.0
2608
+ ## Release v0.20.0 (2024-02-19)
2136
2609
 
2137
2610
  Major Changes:
2138
2611
 
@@ -2193,7 +2666,7 @@ API Changes:
2193
2666
 
2194
2667
  OpenAPI SHA: cdd76a98a4fca7008572b3a94427566dd286c63b, Date: 2024-02-19
2195
2668
 
2196
- ## 0.19.1
2669
+ ## Release v0.19.1 (2024-02-15)
2197
2670
 
2198
2671
  New features:
2199
2672
 
@@ -2202,7 +2675,7 @@ New features:
2202
2675
  Bugfix:
2203
2676
 
2204
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()`.
2205
- ## 0.19.0
2678
+ ## Release v0.19.0 (2024-02-09)
2206
2679
 
2207
2680
  ### Improvements and Bug Fixes
2208
2681
  * Construct workspace client from account client ([#527](https://github.com/databricks/databricks-sdk-py/pull/527)).
@@ -2304,7 +2777,7 @@ Changes:
2304
2777
 
2305
2778
  OpenAPI SHA: 6b897bc95b23abed8b9f5eff0e6b8ec034046180, Date: 2024-02-08
2306
2779
 
2307
- ## 0.18.0
2780
+ ## Release v0.18.0 (2024-01-23)
2308
2781
 
2309
2782
  Bugfixes:
2310
2783
 
@@ -2345,7 +2818,7 @@ API Changes:
2345
2818
 
2346
2819
  OpenAPI SHA: e05401ed5dd4974c5333d737ec308a7d451f749f, Date: 2024-01-23
2347
2820
 
2348
- ## 0.17.0
2821
+ ## Release v0.17.0 (2024-01-11)
2349
2822
 
2350
2823
  * Use covariant type for `@retried(on=[...])` ([#486](https://github.com/databricks/databricks-sdk-py/pull/486)).
2351
2824
  * Configure request timeout using existing parameter from Config ([#489](https://github.com/databricks/databricks-sdk-py/pull/489)).
@@ -2375,7 +2848,7 @@ API Changes:
2375
2848
 
2376
2849
  OpenAPI SHA: 0e0d4cbe87193e36c73b8b2be3b0dd0f1b013e00, Date: 2024-01-10
2377
2850
 
2378
- ## 0.16.0
2851
+ ## Release v0.16.0 (2023-12-20)
2379
2852
 
2380
2853
  * Sort imports in service template ([#479](https://github.com/databricks/databricks-sdk-py/pull/479)).
2381
2854
  * Add `py.typed` to support PEP-561 ([#483](https://github.com/databricks/databricks-sdk-py/pull/483)).
@@ -2405,7 +2878,7 @@ API Changes:
2405
2878
 
2406
2879
  OpenAPI SHA: d3853c8dee5806d04da2ae8910f273ffb35719a5, Date: 2023-12-14
2407
2880
 
2408
- ## 0.15.0
2881
+ ## Release v0.15.0 (2023-12-12)
2409
2882
 
2410
2883
  Bugfixes:
2411
2884
 
@@ -2530,7 +3003,7 @@ API Changes:
2530
3003
 
2531
3004
  OpenAPI SHA: 63caa3cb0c05045e81d3dcf2451fa990d8670f36, Date: 2023-12-12
2532
3005
 
2533
- ## 0.14.0
3006
+ ## Release v0.14.0 (2023-11-29)
2534
3007
 
2535
3008
  Major changes:
2536
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.
@@ -2563,7 +3036,7 @@ Dependency updates:
2563
3036
  * Introduced "google-auth" dependency to support Google authentication.
2564
3037
 
2565
3038
 
2566
- ## 0.13.0
3039
+ ## Release v0.13.0 (2023-11-14)
2567
3040
 
2568
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:
2569
3042
  ```python
@@ -2627,7 +3100,7 @@ Internal changes:
2627
3100
 
2628
3101
  OpenAPI SHA: d136ad0541f036372601bad9a4382db06c3c912d, Date: 2023-11-14
2629
3102
 
2630
- ## 0.12.0
3103
+ ## Release v0.12.0 (2023-10-24)
2631
3104
 
2632
3105
  * Retry on all 429 and 503, even when missing Retry-After header ([#402](https://github.com/databricks/databricks-sdk-py/pull/402)).
2633
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)).
@@ -2644,7 +3117,7 @@ API Changes:
2644
3117
 
2645
3118
  OpenAPI SHA: 5903bb39137fd76ac384b2044e425f9c56840e00, Date: 2023-10-23
2646
3119
 
2647
- ## 0.11.0
3120
+ ## Release v0.11.0 (2023-10-12)
2648
3121
 
2649
3122
  * Added Python 3.12 to project classifiers ([#381](https://github.com/databricks/databricks-sdk-py/pull/381)).
2650
3123
  * Fix serialization issues for generated resources ([#382](https://github.com/databricks/databricks-sdk-py/pull/382)).
@@ -2714,7 +3187,7 @@ API Changes:
2714
3187
 
2715
3188
  OpenAPI SHA: 493a76554afd3afdd15dc858773d01643f80352a, Date: 2023-10-12
2716
3189
 
2717
- ## 0.10.0
3190
+ ## Release v0.10.0 (2023-10-03)
2718
3191
 
2719
3192
  * Respect `retry_timeout_seconds` config setting and align retry implementation with Go SDK ([#337](https://github.com/databricks/databricks-sdk-py/pull/337)).
2720
3193
 
@@ -2750,7 +3223,7 @@ API Changes:
2750
3223
 
2751
3224
  OpenAPI SHA: bcbf6e851e3d82fd910940910dd31c10c059746c, Date: 2023-10-02
2752
3225
 
2753
- ## 0.9.0
3226
+ ## Release v0.9.0 (2023-09-20)
2754
3227
 
2755
3228
  * Don't try to import runtime_auth when not in runtime ([#327](https://github.com/databricks/databricks-sdk-py/pull/327)).
2756
3229
  * Handled Azure authentication when WorkspaceResourceID is provided ([#328](https://github.com/databricks/databricks-sdk-py/pull/328)).
@@ -2806,7 +3279,7 @@ API Changes:
2806
3279
 
2807
3280
  OpenAPI SHA: b52a3b410976501f08f76ca0b355fb2dca876953, Date: 2023-09-15
2808
3281
 
2809
- ## 0.8.0
3282
+ ## Release v0.8.0 (2023-09-04)
2810
3283
 
2811
3284
  * Fixed redeclared `test_streaming_response_read_partial` test ([#335](https://github.com/databricks/databricks-sdk-py/pull/335)).
2812
3285
  * Fixed `Incorrect type` warning ([#336](https://github.com/databricks/databricks-sdk-py/pull/336)).
@@ -2842,12 +3315,12 @@ API Changes:
2842
3315
  * Added `databricks.sdk.service.sql.WidgetPosition` dataclass.
2843
3316
 
2844
3317
  OpenAPI SHA: 09a7fa63d9ae243e5407941f200960ca14d48b07, Date: 2023-09-04
2845
- ## 0.7.1
3318
+ ## Release v0.7.1 (2023-08-31)
2846
3319
 
2847
3320
  * Improve file download performance ([#319](https://github.com/databricks/databricks-sdk-py/pull/319)).
2848
3321
 
2849
3322
 
2850
- ## 0.7.0
3323
+ ## Release v0.7.0 (2023-08-29)
2851
3324
 
2852
3325
  * Added support for GZIP'ed streaming responses ([#306](https://github.com/databricks/databricks-sdk-py/pull/306)).
2853
3326
  * Added support for per-method request headers to ApiClient ([#302](https://github.com/databricks/databricks-sdk-py/pull/302)).
@@ -2929,7 +3402,7 @@ SDK Internal Changes:
2929
3402
 
2930
3403
  OpenAPI SHA: 5d0ccbb790d341eae8e85321a685a9e9e2d5bf24, Date: 2023-08-29
2931
3404
 
2932
- ## 0.6.0
3405
+ ## Release v0.6.0 (2023-08-17)
2933
3406
 
2934
3407
  * Added collection of Databricks Runtime versions used together with Python SDK ([#287](https://github.com/databricks/databricks-sdk-py/pull/287)).
2935
3408
  * Applied attribute transformer when reading in attributes from the environment ([#293](https://github.com/databricks/databricks-sdk-py/pull/293)).
@@ -3002,7 +3475,7 @@ Service Renames:
3002
3475
 
3003
3476
  OpenAPI SHA: beff621d7b3e1d59244e2e34fc53a496f310e130, Date: 2023-08-17
3004
3477
 
3005
- ## 0.5.0
3478
+ ## Release v0.5.0 (2023-08-11)
3006
3479
 
3007
3480
  * Added `connection_pool_size` configuration property (preview) ([#276](https://github.com/databricks/databricks-sdk-py/pull/276)).
3008
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)).
@@ -3039,7 +3512,7 @@ API Changes:
3039
3512
 
3040
3513
  OpenAPI SHA: 1e3533f94335f0e6c5d9262bc1fea95b3ddcb0e1, Date: 2023-08-11
3041
3514
 
3042
- ## 0.4.0
3515
+ ## Release v0.4.0 (2023-08-07)
3043
3516
 
3044
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:
3045
3518
 
@@ -3255,14 +3728,14 @@ API Changes:
3255
3728
 
3256
3729
  OpenAPI SHA: 386b65ecdc825b9c3ed4aa7ca88e2e5baf9d87df, Date: 2023-08-07
3257
3730
 
3258
- ## 0.3.1
3731
+ ## Release v0.3.1 (2023-08-02)
3259
3732
 
3260
3733
  * Added timeout to `w.clusters.ensure_cluster_running()` ([#227](https://github.com/databricks/databricks-sdk-py/pull/227)).
3261
3734
  * Fixed `debug_headers` type hints for `WorkspaceClient` and `AccountClient` ([#258](https://github.com/databricks/databricks-sdk-py/pull/258)).
3262
3735
  * Made dbutils typecast use a valid type variable ([#259](https://github.com/databricks/databricks-sdk-py/pull/259)).
3263
3736
 
3264
3737
 
3265
- ## 0.3.0
3738
+ ## Release v0.3.0 (2023-07-27)
3266
3739
 
3267
3740
  * Fixed serialization of lists of enum values ([#248](https://github.com/databricks/databricks-sdk-py/pull/248)).
3268
3741
  * Fixed examples that used incorrect keyword argument names. (https://github.com/databricks/databricks-sdk-go/pull/560)
@@ -3296,12 +3769,12 @@ API Changes:
3296
3769
 
3297
3770
  OpenAPI SHA: a1b6c1ecfaab6635911d3c060a8dd797ac6b2d4d, Date: 2023-07-27
3298
3771
 
3299
- ## 0.2.1
3772
+ ## Release v0.2.1 (2023-07-18)
3300
3773
 
3301
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)).
3302
3775
 
3303
3776
 
3304
- ## 0.2.0
3777
+ ## Release v0.2.0 (2023-07-18)
3305
3778
 
3306
3779
  * Add Issue Templates ([#208](https://github.com/databricks/databricks-sdk-py/pull/208)).
3307
3780
  * Fixed notebook native auth for jobs ([#209](https://github.com/databricks/databricks-sdk-py/pull/209)).
@@ -3390,7 +3863,7 @@ API Changes:
3390
3863
 
3391
3864
  OpenAPI SHA: 0a1949ba96f71680dad30e06973eaae85b1307bb, Date: 2023-07-18
3392
3865
 
3393
- ## 0.1.12
3866
+ ## Release v0.1.12 (2023-06-28)
3394
3867
 
3395
3868
  * Beta release ([#198](https://github.com/databricks/databricks-sdk-py/pull/198)).
3396
3869
  * Documentation improvements ([#197](https://github.com/databricks/databricks-sdk-py/pull/197)).
@@ -3408,7 +3881,7 @@ API changes:
3408
3881
  * Renamed `jobs.GitSourceGitProvider` to `jobs.GitProvider`
3409
3882
  * Renamed `jobs.FileArrivalTriggerSettings` to `jobs.FileArrivalTriggerConfiguration`
3410
3883
 
3411
- ## 0.1.11
3884
+ ## Release v0.1.11 (2023-06-21)
3412
3885
 
3413
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)).
3414
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)).
@@ -3418,7 +3891,7 @@ API changes:
3418
3891
  * Move classes to other repository ([#192](https://github.com/databricks/databricks-sdk-py/pull/192)).
3419
3892
  * Relax `requests` version upper bound to <3 ([#138](https://github.com/databricks/databricks-sdk-py/pull/138)).
3420
3893
 
3421
- ## 0.1.10
3894
+ ## Release v0.1.10 (2023-06-15)
3422
3895
 
3423
3896
  * Regenerate from OpenAPI spec ([#176](https://github.com/databricks/databricks-sdk-py/pull/176)).
3424
3897
  * Added improved notebook-native authentication ([#152](https://github.com/databricks/databricks-sdk-py/pull/152)).
@@ -3429,7 +3902,7 @@ API changes:
3429
3902
  * Mark non-required fields as `Optional` ([#170](https://github.com/databricks/databricks-sdk-py/pull/170)).
3430
3903
  * Synchronize auth permutation tests with Go SDK ([#165](https://github.com/databricks/databricks-sdk-py/pull/165)).
3431
3904
 
3432
- ## 0.1.9
3905
+ ## Release v0.1.9 (2023-06-09)
3433
3906
 
3434
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)).
3435
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)).
@@ -3440,14 +3913,14 @@ API changes:
3440
3913
  * Fixed generation of external entities ([#146](https://github.com/databricks/databricks-sdk-py/pull/146)).
3441
3914
  * Make u2m authentication work with new CLI ([#150](https://github.com/databricks/databricks-sdk-py/pull/150)).
3442
3915
 
3443
- ## 0.1.8
3916
+ ## Release v0.1.8 (2023-05-22)
3444
3917
 
3445
3918
  * Regenerated from OpenAPI spec ([#124](https://github.com/databricks/databricks-sdk-py/pull/124)).
3446
3919
  * Added `codecov.io` badge ([#126](https://github.com/databricks/databricks-sdk-py/pull/126)).
3447
3920
  * Improved readme with links to examples ([#125](https://github.com/databricks/databricks-sdk-py/pull/125)).
3448
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)).
3449
3922
 
3450
- ## 0.1.7
3923
+ ## Release v0.1.7 (2023-05-17)
3451
3924
 
3452
3925
  * Added an extensive set of examples ([#113](https://github.com/databricks/databricks-sdk-py/pull/113)).
3453
3926
  * Fixed broken `dbutils.fs.mount` and `dbutils.fs.updateMount` ([#119](https://github.com/databricks/databricks-sdk-py/pull/119)).
@@ -3458,35 +3931,35 @@ API changes:
3458
3931
  * Rename `RefreshableCredentials` to `SessionCredentials` ([#116](https://github.com/databricks/databricks-sdk-py/pull/116)).
3459
3932
  * Use shell for opening `az` cli on Windows ([#117](https://github.com/databricks/databricks-sdk-py/pull/117)).
3460
3933
 
3461
- ## 0.1.6
3934
+ ## Release v0.1.6 (2023-05-10)
3462
3935
 
3463
3936
  * Preserve original `databricks.sdk.runtime` for internal purposes ([#96](https://github.com/databricks/databricks-sdk-py/pull/96)).
3464
3937
 
3465
- ## 0.1.5
3938
+ ## Release v0.1.5 (2023-05-08)
3466
3939
 
3467
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.
3468
3941
 
3469
- ## 0.1.4
3942
+ ## Release v0.1.4 (2023-05-05)
3470
3943
 
3471
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)).
3472
3945
  * Fixed error handling for SCIM and CommandExecution APIs ([#94](https://github.com/databricks/databricks-sdk-py/pull/94)).
3473
3946
  * Created `dependabot.yml` ([#89](https://github.com/databricks/databricks-sdk-py/pull/89)).
3474
3947
 
3475
- ## 0.1.3
3948
+ ## Release v0.1.3 (2023-05-03)
3476
3949
 
3477
3950
  * Added support for sdist ([#86](https://github.com/databricks/databricks-sdk-py/pull/86)).
3478
3951
  * Removed redundant newlines from AAD OAuth responses ([#85](https://github.com/databricks/databricks-sdk-py/pull/85)).
3479
3952
  * Update README.md with doc links ([#83](https://github.com/databricks/databricks-sdk-py/pull/83)).
3480
3953
 
3481
- ## 0.1.2
3954
+ ## Release v0.1.2 (2023-05-03)
3482
3955
 
3483
3956
  * Fix `dbutils.fs.put()` utility ([#82](https://github.com/databricks/databricks-sdk-py/pull/82)).
3484
3957
 
3485
- ## 0.1.1
3958
+ ## Release v0.1.1 (2023-04-28)
3486
3959
 
3487
3960
  * Improve Azure AD auth ([#80](https://github.com/databricks/databricks-sdk-py/pull/80)).
3488
3961
 
3489
- ## 0.1.0
3962
+ ## Release v0.1.0 (2023-04-20)
3490
3963
 
3491
3964
  * Make code working with new OpenAPI packaging ([#78](https://github.com/databricks/databricks-sdk-py/pull/78)).
3492
3965
  * Added `bricks` CLI authentication ([#66](https://github.com/databricks/databricks-sdk-py/pull/66)).