You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Changes
See https://github.com/databricks/databricks-sdk-go/releases/tag/v0.89.0
This change removes previously added flags to the `jobs create` and
`pipelines create` commands. These flags were not part of these commands
before and were added by accident (in #3769). Because the payload for
these commands is complex, they take a `--json` flag instead.
Copy file name to clipboardExpand all lines: acceptance/help/output.txt
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ Unity Catalog
87
87
Delta Sharing
88
88
providers A data provider is an object representing the organization in the real world who shares the data.
89
89
recipient-activation The Recipient Activation API is only applicable in the open sharing model where the recipient object has the authentication type of TOKEN.
90
+
recipient-federation-policies The Recipient Federation Policies APIs are only applicable in the open sharing model where the recipient object has the authentication type of OIDC_RECIPIENT, enabling data sharing from Databricks to non-Databricks recipients.
90
91
recipients A recipient is an object you create using :method:recipients/create to represent an organization which you want to allow access shares.
91
92
shares A share is a container instantiated with :method:shares/create.
92
93
@@ -154,6 +155,7 @@ Additional Commands:
154
155
auth Authentication related commands
155
156
completion Generate the autocompletion script for the specified shell
156
157
configure Configure authentication
158
+
data-quality Manage the data quality of Unity Catalog objects (currently support schema and table).
157
159
help Help about any command
158
160
labs Manage Databricks Labs installations
159
161
tag-policies The Tag Policy API allows you to manage policies for governed tags in Databricks.
A catalog in Unity Catalog to publish data from this pipeline to. If `target` is specified, tables in this pipeline are published to a `target` schema inside `catalog` (for example, `catalog`.`target`.`table`). If `target` is not specified, no data is published to Unity Catalog.
An array of commands to execute for jobs with the dbt task, for example `"dbt_commands": ["dbt deps", "dbt seed", "dbt deps", "dbt seed", "dbt run"]`
3070
+
3071
+
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
jar_params cannot be specified in conjunction with notebook_params.
3073
3082
The JSON representation of this field (for example `{"jar_params":["john doe","35"]}`) cannot exceed 10,000 bytes.
3074
3083
3075
-
Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs.
3084
+
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
notebook_params cannot be specified in conjunction with jar_params.
3094
3103
3095
-
Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs.
3104
+
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
3096
3105
3097
3106
The JSON representation of this field (for example `{"notebook_params":{"name":"john doe","age":"35"}}`) cannot exceed 10,000 bytes.
the parameters specified in job setting. The JSON representation of this field (for example `{"python_params":["john doe","35"]}`)
3115
3124
cannot exceed 10,000 bytes.
3116
3125
3117
-
Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs.
3126
+
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
parameters specified in job setting. The JSON representation of this field (for example `{"python_params":["john doe","35"]}`)
3132
3141
cannot exceed 10,000 bytes.
3133
3142
3134
-
Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs
3143
+
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
A map from keys to values for jobs with SQL task, for example `"sql_params": {"name": "john doe", "age": "35"}`. The SQL alert task does not support custom parameters.
3156
+
3157
+
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
0 commit comments