Skip to content
Merged
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 @@
8b2cd47cbac64b32e120601110a5fc70b8189ba4
e1ea3f5ba0bc5b53be94f56535a67ba701a52a52
1 change: 1 addition & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
* Pass SYSTEM_ACCESSTOKEN from env to the Terraform provider ([#4135](https://github.com/databricks/cli/pull/4135)

### Dependency updates
* Upgrade Go SDK to 0.94.0 ([#4148](https://github.com/databricks/cli/pull/4148))

### API Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
"method": "GET",
"path": "/oidc/.well-known/oauth-authorization-server"
}
{
"headers": {
"Authorization": [
"Basic [ENCODED_AUTH]"
]
},
"method": "POST",
"path": "/oidc/v1/token",
"raw_body": "grant_type=client_credentials\u0026scope=all-apis"
}
{
"method": "GET",
"path": "/oidc/.well-known/oauth-authorization-server"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
"method": "GET",
"path": "/oidc/.well-known/oauth-authorization-server"
}
{
"headers": {
"Authorization": [
"Basic [ENCODED_AUTH]"
]
},
"method": "POST",
"path": "/oidc/v1/token",
"raw_body": "grant_type=client_credentials\u0026scope=all-apis"
}
{
"method": "GET",
"path": "/oidc/.well-known/oauth-authorization-server"
Expand Down
1 change: 1 addition & 0 deletions bundle/internal/schema/annotations_openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ github.com/databricks/cli/bundle/config/resources.Job:
"performance_target":
"description": |-
The performance mode on a serverless job. This field determines the level of compute performance or cost-efficiency for the run.
The performance target does not apply to tasks that run on Serverless GPU compute.

* `STANDARD`: Enables cost-efficient execution of serverless workloads.
* `PERFORMANCE_OPTIMIZED`: Prioritizes fast startup and execution times through rapid scaling and optimized cluster performance.
Expand Down
2 changes: 1 addition & 1 deletion bundle/schema/jsonschema.json

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

24 changes: 12 additions & 12 deletions cmd/workspace/alerts-legacy/alerts-legacy.go

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

8 changes: 4 additions & 4 deletions cmd/workspace/data-sources/data-sources.go

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

36 changes: 12 additions & 24 deletions cmd/workspace/feature-engineering/feature-engineering.go

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

76 changes: 76 additions & 0 deletions cmd/workspace/pipelines/pipelines.go

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

Loading