diff --git a/clients/google-api-services-dataplex/v1/2.0.0/README.md b/clients/google-api-services-dataplex/v1/2.0.0/README.md index ada78275305..0599c6bc357 100644 --- a/clients/google-api-services-dataplex/v1/2.0.0/README.md +++ b/clients/google-api-services-dataplex/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-dataplex - v1-rev20260804-2.0.0 + v1-rev20260823-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260804-2.0.0' + implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260823-2.0.0' } ``` diff --git a/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/CloudDataplex.java b/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/CloudDataplex.java index e177ae56707..e6153ce89c9 100644 --- a/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/CloudDataplex.java +++ b/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/CloudDataplex.java @@ -3544,6 +3544,31 @@ public SearchEntries setName(java.lang.String name) { return this; } + /** + * Optional. Specifies the scope of the context in which the search will be performed. This + * scope will also be used to perform IAM checks, which if passing, will return all + * resources in the scope. + */ + @com.google.api.client.util.Key + private java.util.List contexts; + + /** Optional. Specifies the scope of the context in which the search will be performed. This scope will + also be used to perform IAM checks, which if passing, will return all resources in the scope. + */ + public java.util.List getContexts() { + return contexts; + } + + /** + * Optional. Specifies the scope of the context in which the search will be performed. This + * scope will also be used to perform IAM checks, which if passing, will return all + * resources in the scope. + */ + public SearchEntries setContexts(java.util.List contexts) { + this.contexts = contexts; + return this; + } + /** * Optional. Specifies the ordering of results. Supported values are: relevance * last_modified_timestamp last_modified_timestamp asc diff --git a/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationResultQuery.java b/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationResultQuery.java index 59c70d52841..ab81911b6b2 100644 --- a/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationResultQuery.java +++ b/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationResultQuery.java @@ -43,6 +43,13 @@ public final class GoogleCloudDataplexV1DataDocumentationResultQuery extends com @com.google.api.client.util.Key private java.lang.String sql; + /** + * Output only. The SQL dialect of the query. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String sqlDialect; + /** * Output only. The description for the query. * @return value or {@code null} for none @@ -77,6 +84,23 @@ public GoogleCloudDataplexV1DataDocumentationResultQuery setSql(java.lang.String return this; } + /** + * Output only. The SQL dialect of the query. + * @return value or {@code null} for none + */ + public java.lang.String getSqlDialect() { + return sqlDialect; + } + + /** + * Output only. The SQL dialect of the query. + * @param sqlDialect sqlDialect or {@code null} for none + */ + public GoogleCloudDataplexV1DataDocumentationResultQuery setSqlDialect(java.lang.String sqlDialect) { + this.sqlDialect = sqlDialect; + return this; + } + @Override public GoogleCloudDataplexV1DataDocumentationResultQuery set(String fieldName, Object value) { return (GoogleCloudDataplexV1DataDocumentationResultQuery) super.set(fieldName, value); diff --git a/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationSpec.java b/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationSpec.java index 371b9cfe0f2..84e7c53a616 100644 --- a/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationSpec.java +++ b/clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationSpec.java @@ -45,6 +45,14 @@ public final class GoogleCloudDataplexV1DataDocumentationSpec extends com.google @com.google.api.client.util.Key private java.util.List generationScopes; + /** + * Optional. The SQL dialect to use in the generated SQL queries. If not specified, the default + * dialect is Google SQL. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String sqlDialect; + /** * Optional. Whether to publish result to Dataplex Catalog. * @return value or {@code null} for none @@ -83,6 +91,25 @@ public GoogleCloudDataplexV1DataDocumentationSpec setGenerationScopes(java.util. return this; } + /** + * Optional. The SQL dialect to use in the generated SQL queries. If not specified, the default + * dialect is Google SQL. + * @return value or {@code null} for none + */ + public java.lang.String getSqlDialect() { + return sqlDialect; + } + + /** + * Optional. The SQL dialect to use in the generated SQL queries. If not specified, the default + * dialect is Google SQL. + * @param sqlDialect sqlDialect or {@code null} for none + */ + public GoogleCloudDataplexV1DataDocumentationSpec setSqlDialect(java.lang.String sqlDialect) { + this.sqlDialect = sqlDialect; + return this; + } + @Override public GoogleCloudDataplexV1DataDocumentationSpec set(String fieldName, Object value) { return (GoogleCloudDataplexV1DataDocumentationSpec) super.set(fieldName, value); diff --git a/clients/google-api-services-dataplex/v1/2.0.0/pom.xml b/clients/google-api-services-dataplex/v1/2.0.0/pom.xml index 759680310e0..3bb37d3cb4a 100644 --- a/clients/google-api-services-dataplex/v1/2.0.0/pom.xml +++ b/clients/google-api-services-dataplex/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-dataplex - v1-rev20260804-2.0.0 - Cloud Dataplex API v1-rev20260804-2.0.0 + v1-rev20260823-2.0.0 + Cloud Dataplex API v1-rev20260823-2.0.0 jar 2011 diff --git a/clients/google-api-services-dataplex/v1/README.md b/clients/google-api-services-dataplex/v1/README.md index ada78275305..0599c6bc357 100644 --- a/clients/google-api-services-dataplex/v1/README.md +++ b/clients/google-api-services-dataplex/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-dataplex - v1-rev20260804-2.0.0 + v1-rev20260823-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260804-2.0.0' + implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260823-2.0.0' } ```