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 @@
d4c86c045ee9d0410a41ef07e8ae708673b95fa1
6b2dbf5489ec706709fed80ee65caed7d10a2f38
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ cmd/account/esm-enablement-account/esm-enablement-account.go linguist-generated=
cmd/account/federation-policy/federation-policy.go linguist-generated=true
cmd/account/groups/groups.go linguist-generated=true
cmd/account/ip-access-lists/ip-access-lists.go linguist-generated=true
cmd/account/llm-proxy-partner-powered-account/llm-proxy-partner-powered-account.go linguist-generated=true
cmd/account/llm-proxy-partner-powered-enforce/llm-proxy-partner-powered-enforce.go linguist-generated=true
cmd/account/log-delivery/log-delivery.go linguist-generated=true
cmd/account/metastore-assignments/metastore-assignments.go linguist-generated=true
cmd/account/metastores/metastores.go linguist-generated=true
Expand Down Expand Up @@ -62,6 +64,7 @@ cmd/workspace/current-user/current-user.go linguist-generated=true
cmd/workspace/dashboard-widgets/dashboard-widgets.go linguist-generated=true
cmd/workspace/dashboards/dashboards.go linguist-generated=true
cmd/workspace/data-sources/data-sources.go linguist-generated=true
cmd/workspace/database-instances/database-instances.go linguist-generated=true
cmd/workspace/default-namespace/default-namespace.go linguist-generated=true
cmd/workspace/disable-legacy-access/disable-legacy-access.go linguist-generated=true
cmd/workspace/disable-legacy-dbfs/disable-legacy-dbfs.go linguist-generated=true
Expand All @@ -85,6 +88,7 @@ cmd/workspace/jobs/jobs.go linguist-generated=true
cmd/workspace/lakeview-embedded/lakeview-embedded.go linguist-generated=true
cmd/workspace/lakeview/lakeview.go linguist-generated=true
cmd/workspace/libraries/libraries.go linguist-generated=true
cmd/workspace/llm-proxy-partner-powered-workspace/llm-proxy-partner-powered-workspace.go linguist-generated=true
cmd/workspace/metastores/metastores.go linguist-generated=true
cmd/workspace/model-registry/model-registry.go linguist-generated=true
cmd/workspace/model-versions/model-versions.go linguist-generated=true
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ integration-short:
generate:
genkit update-sdk
[ ! -f tagging.py ] || mv tagging.py internal/genkit/tagging.py
# tagging.yml is automatically synced by update-sdk command and contains a reference to tagging.py in root
# since we move tagging.py to different folder, we need to update this reference here as well
[ ! -f .github/workflows/tagging.yml ] || sed -i '' 's/python tagging.py/python internal\/genkit\/tagging.py/g' .github/workflows/tagging.yml
[ ! -f .github/workflows/next-changelog.yml ] || rm .github/workflows/next-changelog.yml
pushd experimental/python && make codegen

Expand Down
1 change: 1 addition & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Notable Changes

### Dependency updates
* Upgraded Go SDK to 0.69.0 ([#2867](https://github.com/databricks/cli/pull/2867))
* Upgraded to TF provider 1.79.0 ([#2869](https://github.com/databricks/cli/pull/2869))

### CLI
Expand Down
76 changes: 60 additions & 16 deletions bundle/internal/schema/annotations_openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -408,28 +408,15 @@ github.com/databricks/cli/bundle/config/resources.MlflowExperiment:
"description": |-
Tags: Additional metadata key-value pairs.
github.com/databricks/cli/bundle/config/resources.MlflowModel:
"creation_timestamp":
"description": |-
Timestamp recorded when this `registered_model` was created.
"description":
"description": |-
Description of this `registered_model`.
"last_updated_timestamp":
"description": |-
Timestamp recorded when metadata for this `registered_model` was last updated.
"latest_versions":
"description": |-
Collection of latest model versions for each stage.
Only contains models with current `READY` status.
Optional description for registered model.
"name":
"description": |-
Unique name for the model.
Register models under this name
"tags":
"description": |-
Tags: Additional metadata key-value pairs for this `registered_model`.
"user_id":
"description": |-
User that created this `registered_model`
Additional metadata for registered model.
github.com/databricks/cli/bundle/config/resources.ModelServingEndpoint:
"ai_gateway":
"description": |-
Expand Down Expand Up @@ -1423,6 +1410,14 @@ github.com/databricks/databricks-sdk-go/service/compute.Environment:
Each dependency is a pip requirement file line https://pip.pypa.io/en/stable/reference/requirements-file-format/
Allowed dependency could be <requirement specifier>, <archive url/path>, <local project path>(WSFS or Volumes in Databricks), <vcs project url>
E.g. dependencies: ["foo==0.0.1", "-r /Workspace/test/requirements.txt"]
"environment_version":
"description": |-
We renamed `client` to `environment_version` in notebook exports. This field is meant solely so that imported notebooks with `environment_version` can be deserialized
correctly, in a backwards-compatible way (i.e. if `client` is specified instead of `environment_version`, it will be deserialized correctly). Do NOT use this field
for any other purpose, e.g. notebook storage.
This field is not yet exposed to customers (e.g. in the jobs API).
"x-databricks-preview": |-
PRIVATE
"jar_dependencies":
"description": |-
List of jar dependencies, should be string representing volume paths. For example: `/Volumes/path/to/test.jar`.
Expand Down Expand Up @@ -2828,9 +2823,41 @@ github.com/databricks/databricks-sdk-go/service/pipelines.IngestionPipelineDefin
"objects":
"description": |-
Required. Settings specifying tables to replicate and the destination for the replicated tables.
"source_type":
"description": |-
The type of the foreign source.
The source type will be inferred from the source connection or ingestion gateway.
This field is output only and will be ignored if provided.
"table_configuration":
"description": |-
Configuration settings to control the ingestion of tables. These settings are applied to all tables in the pipeline.
github.com/databricks/databricks-sdk-go/service/pipelines.IngestionSourceType:
"_":
"enum":
- |-
MYSQL
- |-
POSTGRESQL
- |-
SQLSERVER
- |-
SALESFORCE
- |-
NETSUITE
- |-
WORKDAY_RAAS
- |-
GA4_RAW_DATA
- |-
SERVICENOW
- |-
MANAGED_POSTGRESQL
- |-
ORACLE
- |-
SHAREPOINT
- |-
DYNAMICS365
github.com/databricks/databricks-sdk-go/service/pipelines.ManualTrigger: {}
github.com/databricks/databricks-sdk-go/service/pipelines.NotebookLibrary:
"path":
Expand All @@ -2849,6 +2876,10 @@ github.com/databricks/databricks-sdk-go/service/pipelines.Notifications:
"email_recipients":
"description": |-
A list of email addresses notified when a configured alert is triggered.
github.com/databricks/databricks-sdk-go/service/pipelines.PathPattern:
"include":
"description": |-
The source code to include for pipelines
github.com/databricks/databricks-sdk-go/service/pipelines.PipelineCluster:
"apply_policy_default_values":
"description": |-
Expand Down Expand Up @@ -2986,6 +3017,13 @@ github.com/databricks/databricks-sdk-go/service/pipelines.PipelineLibrary:
"file":
"description": |-
The path to a file that defines a pipeline and is stored in the Databricks Repos.
"glob":
"description": |-
The unified field to include source codes.
Each entry can be a notebook path, a file path, or a folder path that ends `/**`.
This field cannot be used together with `notebook` or `file`.
"x-databricks-preview": |-
PRIVATE
"jar":
"description": |-
URI of the jar to be installed. Currently only DBFS is supported.
Expand Down Expand Up @@ -3639,6 +3677,9 @@ github.com/databricks/databricks-sdk-go/service/serving.ServedEntityInput:
"name":
"description": |-
The name of a served entity. It must be unique across an endpoint. A served entity name can consist of alphanumeric characters, dashes, and underscores. If not specified for an external model, this field defaults to external_model.name, with '.' and ':' replaced with '-', and if not specified for other entities, it defaults to entity_name-entity_version.
"provisioned_model_units":
"description": |-
The number of model units provisioned.
"scale_to_zero_enabled":
"description": |-
Whether the compute resources for the served entity should scale down to zero.
Expand Down Expand Up @@ -3666,6 +3707,9 @@ github.com/databricks/databricks-sdk-go/service/serving.ServedModelInput:
"name":
"description": |-
The name of a served entity. It must be unique across an endpoint. A served entity name can consist of alphanumeric characters, dashes, and underscores. If not specified for an external model, this field defaults to external_model.name, with '.' and ':' replaced with '-', and if not specified for other entities, it defaults to entity_name-entity_version.
"provisioned_model_units":
"description": |-
The number of model units provisioned.
"scale_to_zero_enabled":
"description": |-
Whether the compute resources for the served entity should scale down to zero.
Expand Down
74 changes: 70 additions & 4 deletions bundle/schema/jsonschema.json

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

Loading
Loading