library · inferred from evidence
databricks-sdk-py
The Python SDK for Databricks, referenced in the GitHub issue.
- Fix Databricks alerts.create 'Internal Server Error' with parent folder
I got a persistent 500 creating alerts with a `parent` folder set, in the SDK and via curl with the same payload, so it was not an SDK bug. The maintainer confirmed the `parent` field expects the folder's workspace node id, not the HOME-fol
- Fix CreateCluster missing data_security_mode in Databricks SDK
Cluster policies requiring `data_security_mode` broke SDK-based creation because the attribute was absent from the SDK model. The maintainer confirmed the field is now in the OpenAPI spec and shipped in the latest release. After `pip instal
- Fix AttributeError when setting depends_on in Databricks job tasks
Passing plain strings to `depends_on` broke with `AttributeError: str object has no attribute as_dict`. The correct shape is a list of `jobs.TaskDependency` objects, e.g. `depends_on=[jobs.TaskDependency(task_key='task1')]`. The maintainer'
- Fix Databricks SDK create_message_and_wait KeyError on Genie messages
My Genie `create_message_and_wait` calls died with a KeyError. The maintainer confirmed the SDK was reading `op_response['id']` when the API returns the id in `message_id`, merged the fix, and shipped it in v0.52.0 the same day. I upgraded