This commit is contained in:
Lennart Kats 2024-12-20 17:09:04 +01:00
parent be08585fb7
commit fbd476093f
No known key found for this signature in database
GPG Key ID: 1EB8B57673197023
2 changed files with 14 additions and 0 deletions

View File

@ -97,6 +97,12 @@ github.com/databricks/cli/bundle/config.Lock:
"description": |-
Whether to force this lock if it is enabled.
github.com/databricks/cli/bundle/config.Presets:
"catalog":
"description": |-
The default catalog to use for all resources.
"schema":
"description": |-
The default schema to use for all resources.
"jobs_max_concurrent_runs":
"description": |-
The maximum concurrent runs for a job.

View File

@ -1175,6 +1175,10 @@
{
"type": "object",
"properties": {
"catalog": {
"description": "The default catalog to use for all resources.",
"$ref": "#/$defs/string"
},
"jobs_max_concurrent_runs": {
"description": "The maximum concurrent runs for a job.",
"$ref": "#/$defs/int"
@ -1187,6 +1191,10 @@
"description": "Whether pipeline deployments should be locked in development mode.",
"$ref": "#/$defs/bool"
},
"schema": {
"description": "The default schema to use for all resources.",
"$ref": "#/$defs/string"
},
"source_linked_deployment": {
"description": "Whether to link the deployment to the bundle source.",
"$ref": "#/$defs/bool"