Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen/_openapi_sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c4784cea599325a13472b1455e7434d639362d8b
59c4c0f3d5f0ef00cd5350b5674e941a7606d91a
2 changes: 2 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@
* Fix a permissions bug adding second IS\_OWNER and causing "The job must have exactly one owner." error. Introduced in 0.274.0. ([#3850](https://github.com/databricks/cli/pull/3850))

### API Changes
* Add `databricks feature-engineering create-materialized-feature` command.
* Remove `databricks recipient-federation-policies update` command.
50 changes: 35 additions & 15 deletions bundle/internal/schema/annotations_openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -589,8 +589,6 @@ github.com/databricks/cli/bundle/config/resources.Pipeline:
"budget_policy_id":
"description": |-
Budget policy of this pipeline.
"x-databricks-preview": |-
PRIVATE
"catalog":
"description": |-
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.
Expand Down Expand Up @@ -687,6 +685,11 @@ github.com/databricks/cli/bundle/config/resources.Pipeline:
Which pipeline trigger to use. Deprecated: Use `continuous` instead.
"deprecation_message": |-
This field is deprecated
"usage_policy_id":
"description": |-
Usage policy of this pipeline.
"x-databricks-preview": |-
PRIVATE
github.com/databricks/cli/bundle/config/resources.QualityMonitor:
"assets_dir":
"description": |-
Expand Down Expand Up @@ -2462,6 +2465,10 @@ github.com/databricks/databricks-sdk-go/service/jobs.AuthenticationMethod:
- |-
PAT
github.com/databricks/databricks-sdk-go/service/jobs.CleanRoomsNotebookTask:
"_":
"description": |-
Clean Rooms notebook task for V1 Clean Room service (GA).
Replaces the deprecated CleanRoomNotebookTask (defined above) which was for V0 service.
"clean_room_name":
"description": |-
The clean room that the notebook belongs to.
Expand Down Expand Up @@ -3060,6 +3067,8 @@ github.com/databricks/databricks-sdk-go/service/jobs.RunJobTask:
"dbt_commands":
"description": |-
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"]`

⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
"deprecation_message": |-
This field is deprecated
"x-databricks-preview": |-
Expand All @@ -3072,7 +3081,7 @@ github.com/databricks/databricks-sdk-go/service/jobs.RunJobTask:
jar_params cannot be specified in conjunction with notebook_params.
The JSON representation of this field (for example `{"jar_params":["john doe","35"]}`) cannot exceed 10,000 bytes.

Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs.
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
"deprecation_message": |-
This field is deprecated
"x-databricks-preview": |-
Expand All @@ -3092,7 +3101,7 @@ github.com/databricks/databricks-sdk-go/service/jobs.RunJobTask:

notebook_params cannot be specified in conjunction with jar_params.

Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs.
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.

The JSON representation of this field (for example `{"notebook_params":{"name":"john doe","age":"35"}}`) cannot exceed 10,000 bytes.
"deprecation_message": |-
Expand All @@ -3114,7 +3123,7 @@ github.com/databricks/databricks-sdk-go/service/jobs.RunJobTask:
the parameters specified in job setting. The JSON representation of this field (for example `{"python_params":["john doe","35"]}`)
cannot exceed 10,000 bytes.

Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs.
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.

Important

Expand All @@ -3131,7 +3140,7 @@ github.com/databricks/databricks-sdk-go/service/jobs.RunJobTask:
parameters specified in job setting. The JSON representation of this field (for example `{"python_params":["john doe","35"]}`)
cannot exceed 10,000 bytes.

Use [Task parameter variables](https://docs.databricks.com/jobs.html#parameter-variables) to set parameters containing information about job runs
⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.

Important

Expand All @@ -3144,6 +3153,8 @@ github.com/databricks/databricks-sdk-go/service/jobs.RunJobTask:
"sql_params":
"description": |-
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.

⚠ **Deprecation note** Use [job parameters](https://docs.databricks.com/jobs/job-parameters.html#job-parameter-pushdown) to pass information down to tasks.
"deprecation_message": |-
This field is deprecated
"x-databricks-preview": |-
Expand All @@ -3165,7 +3176,9 @@ github.com/databricks/databricks-sdk-go/service/jobs.Source:
github.com/databricks/databricks-sdk-go/service/jobs.SparkJarTask:
"jar_uri":
"description": |-
Deprecated since 04/2016. Provide a `jar` through the `libraries` field instead. For an example, see :method:jobs/create.
Deprecated since 04/2016. For classic compute, provide a `jar` through the `libraries` field instead. For serverless compute, provide a `jar` though the `java_dependencies` field inside the `environments` list.

See the examples of classic and serverless compute usage at the top of the page.
"deprecation_message": |-
This field is deprecated
"main_class_name":
Expand Down Expand Up @@ -3511,13 +3524,6 @@ github.com/databricks/databricks-sdk-go/service/jobs.TriggerSettings:
"periodic":
"description": |-
Periodic trigger settings.
"table":
"description": |-
Old table trigger settings name. Deprecated in favor of `table_update`.
"deprecation_message": |-
This field is deprecated
"x-databricks-preview": |-
PRIVATE
"table_update": {}
github.com/databricks/databricks-sdk-go/service/jobs.Webhook:
"id": {}
Expand Down Expand Up @@ -3566,7 +3572,7 @@ github.com/databricks/databricks-sdk-go/service/pipelines.CronTrigger:
github.com/databricks/databricks-sdk-go/service/pipelines.DayOfWeek:
"_":
"description": |-
Days of week in which the restart is allowed to happen (within a five-hour window starting at start_hour).
Days of week in which the window is allowed to happen.
If not specified all days of the week will be used.
"enum":
- |-
Expand Down Expand Up @@ -3787,6 +3793,20 @@ github.com/databricks/databricks-sdk-go/service/pipelines.IngestionSourceType:
CONFLUENCE
- |-
META_MARKETING
- |-
GOOGLE_ADS
- |-
TIKTOK_ADS
- |-
SALESFORCE_MARKETING_CLOUD
- |-
HUBSPOT
- |-
WORKDAY_HCM
- |-
GUIDEWIRE
- |-
ZENDESK
- |-
FOREIGN_CATALOG
github.com/databricks/databricks-sdk-go/service/pipelines.ManualTrigger: {}
Expand Down
4 changes: 4 additions & 0 deletions bundle/internal/schema/annotations_openapi_overrides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,10 @@ github.com/databricks/cli/bundle/config/resources.SqlWarehousePermissionLevel:
CAN_MONITOR
- |-
CAN_VIEW
github.com/databricks/cli/bundle/config/resources.SyncedDatabaseTable:
"lifecycle":
"description": |-
PLACEHOLDER
github.com/databricks/cli/bundle/config/resources.Volume:
"_":
"markdown_description": |-
Expand Down
3 changes: 1 addition & 2 deletions bundle/internal/validation/generated/enum_fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading