Skip to content

Commit 8e9dfa3

Browse files
authored
Upgraded Go SDK to 0.69.0 (#2867)
## Changes Upgraded Go SDK to 0.69.0
1 parent 1180ef8 commit 8e9dfa3

File tree

31 files changed

+2018
-134
lines changed

31 files changed

+2018
-134
lines changed

.codegen/_openapi_sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d4c86c045ee9d0410a41ef07e8ae708673b95fa1
1+
6b2dbf5489ec706709fed80ee65caed7d10a2f38

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ cmd/account/esm-enablement-account/esm-enablement-account.go linguist-generated=
1313
cmd/account/federation-policy/federation-policy.go linguist-generated=true
1414
cmd/account/groups/groups.go linguist-generated=true
1515
cmd/account/ip-access-lists/ip-access-lists.go linguist-generated=true
16+
cmd/account/llm-proxy-partner-powered-account/llm-proxy-partner-powered-account.go linguist-generated=true
17+
cmd/account/llm-proxy-partner-powered-enforce/llm-proxy-partner-powered-enforce.go linguist-generated=true
1618
cmd/account/log-delivery/log-delivery.go linguist-generated=true
1719
cmd/account/metastore-assignments/metastore-assignments.go linguist-generated=true
1820
cmd/account/metastores/metastores.go linguist-generated=true
@@ -62,6 +64,7 @@ cmd/workspace/current-user/current-user.go linguist-generated=true
6264
cmd/workspace/dashboard-widgets/dashboard-widgets.go linguist-generated=true
6365
cmd/workspace/dashboards/dashboards.go linguist-generated=true
6466
cmd/workspace/data-sources/data-sources.go linguist-generated=true
67+
cmd/workspace/database-instances/database-instances.go linguist-generated=true
6568
cmd/workspace/default-namespace/default-namespace.go linguist-generated=true
6669
cmd/workspace/disable-legacy-access/disable-legacy-access.go linguist-generated=true
6770
cmd/workspace/disable-legacy-dbfs/disable-legacy-dbfs.go linguist-generated=true
@@ -85,6 +88,7 @@ cmd/workspace/jobs/jobs.go linguist-generated=true
8588
cmd/workspace/lakeview-embedded/lakeview-embedded.go linguist-generated=true
8689
cmd/workspace/lakeview/lakeview.go linguist-generated=true
8790
cmd/workspace/libraries/libraries.go linguist-generated=true
91+
cmd/workspace/llm-proxy-partner-powered-workspace/llm-proxy-partner-powered-workspace.go linguist-generated=true
8892
cmd/workspace/metastores/metastores.go linguist-generated=true
8993
cmd/workspace/model-registry/model-registry.go linguist-generated=true
9094
cmd/workspace/model-versions/model-versions.go linguist-generated=true

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ integration-short:
6666
generate:
6767
genkit update-sdk
6868
[ ! -f tagging.py ] || mv tagging.py internal/genkit/tagging.py
69+
# tagging.yml is automatically synced by update-sdk command and contains a reference to tagging.py in root
70+
# since we move tagging.py to different folder, we need to update this reference here as well
71+
[ ! -f .github/workflows/tagging.yml ] || sed -i '' 's/python tagging.py/python internal\/genkit\/tagging.py/g' .github/workflows/tagging.yml
6972
[ ! -f .github/workflows/next-changelog.yml ] || rm .github/workflows/next-changelog.yml
7073
pushd experimental/python && make codegen
7174

NEXT_CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Notable Changes
66

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

1011
### CLI

bundle/internal/schema/annotations_openapi.yml

Lines changed: 60 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -408,28 +408,15 @@ github.com/databricks/cli/bundle/config/resources.MlflowExperiment:
408408
"description": |-
409409
Tags: Additional metadata key-value pairs.
410410
github.com/databricks/cli/bundle/config/resources.MlflowModel:
411-
"creation_timestamp":
412-
"description": |-
413-
Timestamp recorded when this `registered_model` was created.
414411
"description":
415412
"description": |-
416-
Description of this `registered_model`.
417-
"last_updated_timestamp":
418-
"description": |-
419-
Timestamp recorded when metadata for this `registered_model` was last updated.
420-
"latest_versions":
421-
"description": |-
422-
Collection of latest model versions for each stage.
423-
Only contains models with current `READY` status.
413+
Optional description for registered model.
424414
"name":
425415
"description": |-
426-
Unique name for the model.
416+
Register models under this name
427417
"tags":
428418
"description": |-
429-
Tags: Additional metadata key-value pairs for this `registered_model`.
430-
"user_id":
431-
"description": |-
432-
User that created this `registered_model`
419+
Additional metadata for registered model.
433420
github.com/databricks/cli/bundle/config/resources.ModelServingEndpoint:
434421
"ai_gateway":
435422
"description": |-
@@ -1423,6 +1410,14 @@ github.com/databricks/databricks-sdk-go/service/compute.Environment:
14231410
Each dependency is a pip requirement file line https://pip.pypa.io/en/stable/reference/requirements-file-format/
14241411
Allowed dependency could be <requirement specifier>, <archive url/path>, <local project path>(WSFS or Volumes in Databricks), <vcs project url>
14251412
E.g. dependencies: ["foo==0.0.1", "-r /Workspace/test/requirements.txt"]
1413+
"environment_version":
1414+
"description": |-
1415+
We renamed `client` to `environment_version` in notebook exports. This field is meant solely so that imported notebooks with `environment_version` can be deserialized
1416+
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
1417+
for any other purpose, e.g. notebook storage.
1418+
This field is not yet exposed to customers (e.g. in the jobs API).
1419+
"x-databricks-preview": |-
1420+
PRIVATE
14261421
"jar_dependencies":
14271422
"description": |-
14281423
List of jar dependencies, should be string representing volume paths. For example: `/Volumes/path/to/test.jar`.
@@ -2828,9 +2823,41 @@ github.com/databricks/databricks-sdk-go/service/pipelines.IngestionPipelineDefin
28282823
"objects":
28292824
"description": |-
28302825
Required. Settings specifying tables to replicate and the destination for the replicated tables.
2826+
"source_type":
2827+
"description": |-
2828+
The type of the foreign source.
2829+
The source type will be inferred from the source connection or ingestion gateway.
2830+
This field is output only and will be ignored if provided.
28312831
"table_configuration":
28322832
"description": |-
28332833
Configuration settings to control the ingestion of tables. These settings are applied to all tables in the pipeline.
2834+
github.com/databricks/databricks-sdk-go/service/pipelines.IngestionSourceType:
2835+
"_":
2836+
"enum":
2837+
- |-
2838+
MYSQL
2839+
- |-
2840+
POSTGRESQL
2841+
- |-
2842+
SQLSERVER
2843+
- |-
2844+
SALESFORCE
2845+
- |-
2846+
NETSUITE
2847+
- |-
2848+
WORKDAY_RAAS
2849+
- |-
2850+
GA4_RAW_DATA
2851+
- |-
2852+
SERVICENOW
2853+
- |-
2854+
MANAGED_POSTGRESQL
2855+
- |-
2856+
ORACLE
2857+
- |-
2858+
SHAREPOINT
2859+
- |-
2860+
DYNAMICS365
28342861
github.com/databricks/databricks-sdk-go/service/pipelines.ManualTrigger: {}
28352862
github.com/databricks/databricks-sdk-go/service/pipelines.NotebookLibrary:
28362863
"path":
@@ -2849,6 +2876,10 @@ github.com/databricks/databricks-sdk-go/service/pipelines.Notifications:
28492876
"email_recipients":
28502877
"description": |-
28512878
A list of email addresses notified when a configured alert is triggered.
2879+
github.com/databricks/databricks-sdk-go/service/pipelines.PathPattern:
2880+
"include":
2881+
"description": |-
2882+
The source code to include for pipelines
28522883
github.com/databricks/databricks-sdk-go/service/pipelines.PipelineCluster:
28532884
"apply_policy_default_values":
28542885
"description": |-
@@ -2986,6 +3017,13 @@ github.com/databricks/databricks-sdk-go/service/pipelines.PipelineLibrary:
29863017
"file":
29873018
"description": |-
29883019
The path to a file that defines a pipeline and is stored in the Databricks Repos.
3020+
"glob":
3021+
"description": |-
3022+
The unified field to include source codes.
3023+
Each entry can be a notebook path, a file path, or a folder path that ends `/**`.
3024+
This field cannot be used together with `notebook` or `file`.
3025+
"x-databricks-preview": |-
3026+
PRIVATE
29893027
"jar":
29903028
"description": |-
29913029
URI of the jar to be installed. Currently only DBFS is supported.
@@ -3639,6 +3677,9 @@ github.com/databricks/databricks-sdk-go/service/serving.ServedEntityInput:
36393677
"name":
36403678
"description": |-
36413679
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.
3680+
"provisioned_model_units":
3681+
"description": |-
3682+
The number of model units provisioned.
36423683
"scale_to_zero_enabled":
36433684
"description": |-
36443685
Whether the compute resources for the served entity should scale down to zero.
@@ -3666,6 +3707,9 @@ github.com/databricks/databricks-sdk-go/service/serving.ServedModelInput:
36663707
"name":
36673708
"description": |-
36683709
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.
3710+
"provisioned_model_units":
3711+
"description": |-
3712+
The number of model units provisioned.
36693713
"scale_to_zero_enabled":
36703714
"description": |-
36713715
Whether the compute resources for the served entity should scale down to zero.

bundle/schema/jsonschema.json

Lines changed: 70 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)