mirror of https://github.com/databricks/cli.git
Fix test
This commit is contained in:
parent
be08585fb7
commit
fbd476093f
|
@ -97,6 +97,12 @@ github.com/databricks/cli/bundle/config.Lock:
|
||||||
"description": |-
|
"description": |-
|
||||||
Whether to force this lock if it is enabled.
|
Whether to force this lock if it is enabled.
|
||||||
github.com/databricks/cli/bundle/config.Presets:
|
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":
|
"jobs_max_concurrent_runs":
|
||||||
"description": |-
|
"description": |-
|
||||||
The maximum concurrent runs for a job.
|
The maximum concurrent runs for a job.
|
||||||
|
|
|
@ -1175,6 +1175,10 @@
|
||||||
{
|
{
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"catalog": {
|
||||||
|
"description": "The default catalog to use for all resources.",
|
||||||
|
"$ref": "#/$defs/string"
|
||||||
|
},
|
||||||
"jobs_max_concurrent_runs": {
|
"jobs_max_concurrent_runs": {
|
||||||
"description": "The maximum concurrent runs for a job.",
|
"description": "The maximum concurrent runs for a job.",
|
||||||
"$ref": "#/$defs/int"
|
"$ref": "#/$defs/int"
|
||||||
|
@ -1187,6 +1191,10 @@
|
||||||
"description": "Whether pipeline deployments should be locked in development mode.",
|
"description": "Whether pipeline deployments should be locked in development mode.",
|
||||||
"$ref": "#/$defs/bool"
|
"$ref": "#/$defs/bool"
|
||||||
},
|
},
|
||||||
|
"schema": {
|
||||||
|
"description": "The default schema to use for all resources.",
|
||||||
|
"$ref": "#/$defs/string"
|
||||||
|
},
|
||||||
"source_linked_deployment": {
|
"source_linked_deployment": {
|
||||||
"description": "Whether to link the deployment to the bundle source.",
|
"description": "Whether to link the deployment to the bundle source.",
|
||||||
"$ref": "#/$defs/bool"
|
"$ref": "#/$defs/bool"
|
||||||
|
|
Loading…
Reference in New Issue