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
4 changes: 2 additions & 2 deletions clients/google-api-services-dataplex/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-dataplex</artifactId>
<version>v1-rev20260804-2.0.0</version>
<version>v1-rev20260823-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<java.lang.String> 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<java.lang.String> 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<java.lang.String> contexts) {
this.contexts = contexts;
return this;
}

/**
* Optional. Specifies the ordering of results. Supported values are: relevance
* last_modified_timestamp last_modified_timestamp asc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ public final class GoogleCloudDataplexV1DataDocumentationSpec extends com.google
@com.google.api.client.util.Key
private java.util.List<java.lang.String> 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
Expand Down Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-dataplex/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-dataplex</artifactId>
<version>v1-rev20260804-2.0.0</version>
<name>Cloud Dataplex API v1-rev20260804-2.0.0</name>
<version>v1-rev20260823-2.0.0</version>
<name>Cloud Dataplex API v1-rev20260823-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-dataplex/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-dataplex</artifactId>
<version>v1-rev20260804-2.0.0</version>
<version>v1-rev20260823-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Loading