From 92e4a56b2fac22bd205a3e5e3cb2cd73dfce5312 Mon Sep 17 00:00:00 2001 From: "databricks-ci-ghec-1[bot]" <184311507+databricks-ci-ghec-1[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 10:27:56 +0000 Subject: [PATCH] Update SDK to 2f10a6ab001e2fa2552f6b25f7fbb4a08014a43f --- .codegen/_openapi_sha | 2 +- NEXT_CHANGELOG.md | 9 +++++++++ .../sdk/service/dashboards/GenieAttachment.java | 2 +- .../sdk/service/pipelines/StartUpdate.java | 17 +++++++++++++++++ .../sdk/service/pipelines/UpdateInfo.java | 17 +++++++++++++++++ .../sdk/service/sql/ClientConfig.java | 2 +- .../tags/DeleteTagAssignmentRequest.java | 5 ++++- .../service/tags/GetTagAssignmentRequest.java | 5 ++++- .../service/tags/ListTagAssignmentsRequest.java | 5 ++++- .../sdk/service/tags/TagAssignment.java | 5 ++++- .../tags/UpdateTagAssignmentRequest.java | 5 ++++- 11 files changed, 66 insertions(+), 8 deletions(-) mode change 100644 => 100755 NEXT_CHANGELOG.md diff --git a/.codegen/_openapi_sha b/.codegen/_openapi_sha index 66e4d11c9..4ae64141a 100755 --- a/.codegen/_openapi_sha +++ b/.codegen/_openapi_sha @@ -1 +1 @@ -d91ff2db7c9265e784ceac0de2059f3e5fada8c5 \ No newline at end of file +2f10a6ab001e2fa2552f6b25f7fbb4a08014a43f \ No newline at end of file diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md old mode 100644 new mode 100755 index d06d3709d..802c2d995 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -13,3 +13,12 @@ ### Internal Changes ### API Changes +* Add `parameters` field for `com.databricks.sdk.service.pipelines.StartUpdate`. +* Add `parameters` field for `com.databricks.sdk.service.pipelines.UpdateInfo`. +* [Breaking] Change `getDownloadFullQueryResult()` method for `workspaceClient.genie()` service with new required argument order. +* [Breaking] Change `name` field for `com.databricks.sdk.service.apps.Space` to be required. +* Change `name` field for `com.databricks.sdk.service.apps.Space` to be required. +* [Breaking] Change `id` and `userId` fields for `com.databricks.sdk.service.dashboards.GenieConversation` to no longer be required. +* [Breaking] Change `createdTimestamp` and `title` fields for `com.databricks.sdk.service.dashboards.GenieConversationSummary` to no longer be required. +* [Breaking] Change `downloadIdSignature` field for `com.databricks.sdk.service.dashboards.GenieGetDownloadFullQueryResultRequest` to be required. +* [Breaking] Change `id` field for `com.databricks.sdk.service.dashboards.GenieMessage` to no longer be required. \ No newline at end of file diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/dashboards/GenieAttachment.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/dashboards/GenieAttachment.java index a80394b2a..b20827178 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/dashboards/GenieAttachment.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/dashboards/GenieAttachment.java @@ -23,7 +23,7 @@ public class GenieAttachment { private GenieSuggestedQuestionsAttachment suggestedQuestions; /** - * Text Attachment if Genie responds with text. This also contains the final summary when + * Text Attachment if Genie responds with text This also contains the final summary when * available. */ @JsonProperty("text") diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/StartUpdate.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/StartUpdate.java index 892b190ad..f84740ebb 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/StartUpdate.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/StartUpdate.java @@ -7,6 +7,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Collection; +import java.util.Map; import java.util.Objects; @Generated @@ -27,6 +28,10 @@ public class StartUpdate { @JsonProperty("full_refresh_selection") private Collection fullRefreshSelection; + /** Key/value map of parameters to pass to the pipeline execution */ + @JsonProperty("parameters") + private Map parameters; + /** */ @JsonIgnore private String pipelineId; @@ -86,6 +91,15 @@ public Collection getFullRefreshSelection() { return fullRefreshSelection; } + public StartUpdate setParameters(Map parameters) { + this.parameters = parameters; + return this; + } + + public Map getParameters() { + return parameters; + } + public StartUpdate setPipelineId(String pipelineId) { this.pipelineId = pipelineId; return this; @@ -140,6 +154,7 @@ public boolean equals(Object o) { return Objects.equals(cause, that.cause) && Objects.equals(fullRefresh, that.fullRefresh) && Objects.equals(fullRefreshSelection, that.fullRefreshSelection) + && Objects.equals(parameters, that.parameters) && Objects.equals(pipelineId, that.pipelineId) && Objects.equals(refreshSelection, that.refreshSelection) && Objects.equals(replaceWhereOverrides, that.replaceWhereOverrides) @@ -153,6 +168,7 @@ public int hashCode() { cause, fullRefresh, fullRefreshSelection, + parameters, pipelineId, refreshSelection, replaceWhereOverrides, @@ -166,6 +182,7 @@ public String toString() { .add("cause", cause) .add("fullRefresh", fullRefresh) .add("fullRefreshSelection", fullRefreshSelection) + .add("parameters", parameters) .add("pipelineId", pipelineId) .add("refreshSelection", refreshSelection) .add("replaceWhereOverrides", replaceWhereOverrides) diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/UpdateInfo.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/UpdateInfo.java index 59982f4d8..ffc007fed 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/UpdateInfo.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/pipelines/UpdateInfo.java @@ -6,6 +6,7 @@ import com.databricks.sdk.support.ToStringer; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Collection; +import java.util.Map; import java.util.Objects; @Generated @@ -41,6 +42,10 @@ public class UpdateInfo { @JsonProperty("full_refresh_selection") private Collection fullRefreshSelection; + /** Key/value map of parameters used to initiate the update */ + @JsonProperty("parameters") + private Map parameters; + /** The ID of the pipeline. */ @JsonProperty("pipeline_id") private String pipelineId; @@ -122,6 +127,15 @@ public Collection getFullRefreshSelection() { return fullRefreshSelection; } + public UpdateInfo setParameters(Map parameters) { + this.parameters = parameters; + return this; + } + + public Map getParameters() { + return parameters; + } + public UpdateInfo setPipelineId(String pipelineId) { this.pipelineId = pipelineId; return this; @@ -178,6 +192,7 @@ public boolean equals(Object o) { && Objects.equals(creationTime, that.creationTime) && Objects.equals(fullRefresh, that.fullRefresh) && Objects.equals(fullRefreshSelection, that.fullRefreshSelection) + && Objects.equals(parameters, that.parameters) && Objects.equals(pipelineId, that.pipelineId) && Objects.equals(refreshSelection, that.refreshSelection) && Objects.equals(state, that.state) @@ -194,6 +209,7 @@ public int hashCode() { creationTime, fullRefresh, fullRefreshSelection, + parameters, pipelineId, refreshSelection, state, @@ -210,6 +226,7 @@ public String toString() { .add("creationTime", creationTime) .add("fullRefresh", fullRefresh) .add("fullRefreshSelection", fullRefreshSelection) + .add("parameters", parameters) .add("pipelineId", pipelineId) .add("refreshSelection", refreshSelection) .add("state", state) diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/sql/ClientConfig.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/sql/ClientConfig.java index e84cfa55d..9aa63fa58 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/sql/ClientConfig.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/sql/ClientConfig.java @@ -9,7 +9,7 @@ @Generated public class ClientConfig { - /** */ + /** allow_custom_js_visualizations is not supported/implemneted. */ @JsonProperty("allow_custom_js_visualizations") private Boolean allowCustomJsVisualizations; diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/DeleteTagAssignmentRequest.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/DeleteTagAssignmentRequest.java index f457fd1cd..c6d63c761 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/DeleteTagAssignmentRequest.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/DeleteTagAssignmentRequest.java @@ -9,7 +9,10 @@ @Generated public class DeleteTagAssignmentRequest { - /** The identifier of the entity to which the tag is assigned */ + /** + * The identifier of the entity to which the tag is assigned. For apps, the entity_id is the app + * name + */ @JsonIgnore private String entityId; /** diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/GetTagAssignmentRequest.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/GetTagAssignmentRequest.java index 5c3e98da2..dc1707406 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/GetTagAssignmentRequest.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/GetTagAssignmentRequest.java @@ -9,7 +9,10 @@ @Generated public class GetTagAssignmentRequest { - /** The identifier of the entity to which the tag is assigned */ + /** + * The identifier of the entity to which the tag is assigned. For apps, the entity_id is the app + * name + */ @JsonIgnore private String entityId; /** diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/ListTagAssignmentsRequest.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/ListTagAssignmentsRequest.java index d62e20cc7..103a7b10c 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/ListTagAssignmentsRequest.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/ListTagAssignmentsRequest.java @@ -10,7 +10,10 @@ @Generated public class ListTagAssignmentsRequest { - /** The identifier of the entity to which the tag is assigned */ + /** + * The identifier of the entity to which the tag is assigned. For apps, the entity_id is the app + * name + */ @JsonIgnore private String entityId; /** diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/TagAssignment.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/TagAssignment.java index b6ebf8cc6..10b567652 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/TagAssignment.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/TagAssignment.java @@ -9,7 +9,10 @@ @Generated public class TagAssignment { - /** The identifier of the entity to which the tag is assigned */ + /** + * The identifier of the entity to which the tag is assigned. For apps, the entity_id is the app + * name + */ @JsonProperty("entity_id") private String entityId; diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/UpdateTagAssignmentRequest.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/UpdateTagAssignmentRequest.java index 678ea6cf9..f25f26f9b 100755 --- a/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/UpdateTagAssignmentRequest.java +++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/service/tags/UpdateTagAssignmentRequest.java @@ -11,7 +11,10 @@ @Generated public class UpdateTagAssignmentRequest { - /** The identifier of the entity to which the tag is assigned */ + /** + * The identifier of the entity to which the tag is assigned. For apps, the entity_id is the app + * name + */ @JsonIgnore private String entityId; /**