Skip to content

Commit ede4def

Browse files
chore: regenerate dataplex client
1 parent 61e0c3d commit ede4def

6 files changed

Lines changed: 82 additions & 6 deletions

File tree

‎clients/google-api-services-dataplex/v1/2.0.0/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dataplex</artifactId>
25-
<version>v1-rev20260804-2.0.0</version>
25+
<version>v1-rev20260823-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260804-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260823-2.0.0'
3939
}
4040
```
4141

‎clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/CloudDataplex.java‎

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3544,6 +3544,31 @@ public SearchEntries setName(java.lang.String name) {
35443544
return this;
35453545
}
35463546

3547+
/**
3548+
* Optional. Specifies the scope of the context in which the search will be performed. This
3549+
* scope will also be used to perform IAM checks, which if passing, will return all
3550+
* resources in the scope.
3551+
*/
3552+
@com.google.api.client.util.Key
3553+
private java.util.List<java.lang.String> contexts;
3554+
3555+
/** Optional. Specifies the scope of the context in which the search will be performed. This scope will
3556+
also be used to perform IAM checks, which if passing, will return all resources in the scope.
3557+
*/
3558+
public java.util.List<java.lang.String> getContexts() {
3559+
return contexts;
3560+
}
3561+
3562+
/**
3563+
* Optional. Specifies the scope of the context in which the search will be performed. This
3564+
* scope will also be used to perform IAM checks, which if passing, will return all
3565+
* resources in the scope.
3566+
*/
3567+
public SearchEntries setContexts(java.util.List<java.lang.String> contexts) {
3568+
this.contexts = contexts;
3569+
return this;
3570+
}
3571+
35473572
/**
35483573
* Optional. Specifies the ordering of results. Supported values are: relevance
35493574
* last_modified_timestamp last_modified_timestamp asc

‎clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationResultQuery.java‎

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class GoogleCloudDataplexV1DataDocumentationResultQuery extends com
4343
@com.google.api.client.util.Key
4444
private java.lang.String sql;
4545

46+
/**
47+
* Output only. The SQL dialect of the query.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String sqlDialect;
52+
4653
/**
4754
* Output only. The description for the query.
4855
* @return value or {@code null} for none
@@ -77,6 +84,23 @@ public GoogleCloudDataplexV1DataDocumentationResultQuery setSql(java.lang.String
7784
return this;
7885
}
7986

87+
/**
88+
* Output only. The SQL dialect of the query.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getSqlDialect() {
92+
return sqlDialect;
93+
}
94+
95+
/**
96+
* Output only. The SQL dialect of the query.
97+
* @param sqlDialect sqlDialect or {@code null} for none
98+
*/
99+
public GoogleCloudDataplexV1DataDocumentationResultQuery setSqlDialect(java.lang.String sqlDialect) {
100+
this.sqlDialect = sqlDialect;
101+
return this;
102+
}
103+
80104
@Override
81105
public GoogleCloudDataplexV1DataDocumentationResultQuery set(String fieldName, Object value) {
82106
return (GoogleCloudDataplexV1DataDocumentationResultQuery) super.set(fieldName, value);

‎clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/model/GoogleCloudDataplexV1DataDocumentationSpec.java‎

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ public final class GoogleCloudDataplexV1DataDocumentationSpec extends com.google
4545
@com.google.api.client.util.Key
4646
private java.util.List<java.lang.String> generationScopes;
4747

48+
/**
49+
* Optional. The SQL dialect to use in the generated SQL queries. If not specified, the default
50+
* dialect is Google SQL.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String sqlDialect;
55+
4856
/**
4957
* Optional. Whether to publish result to Dataplex Catalog.
5058
* @return value or {@code null} for none
@@ -83,6 +91,25 @@ public GoogleCloudDataplexV1DataDocumentationSpec setGenerationScopes(java.util.
8391
return this;
8492
}
8593

94+
/**
95+
* Optional. The SQL dialect to use in the generated SQL queries. If not specified, the default
96+
* dialect is Google SQL.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getSqlDialect() {
100+
return sqlDialect;
101+
}
102+
103+
/**
104+
* Optional. The SQL dialect to use in the generated SQL queries. If not specified, the default
105+
* dialect is Google SQL.
106+
* @param sqlDialect sqlDialect or {@code null} for none
107+
*/
108+
public GoogleCloudDataplexV1DataDocumentationSpec setSqlDialect(java.lang.String sqlDialect) {
109+
this.sqlDialect = sqlDialect;
110+
return this;
111+
}
112+
86113
@Override
87114
public GoogleCloudDataplexV1DataDocumentationSpec set(String fieldName, Object value) {
88115
return (GoogleCloudDataplexV1DataDocumentationSpec) super.set(fieldName, value);

‎clients/google-api-services-dataplex/v1/2.0.0/pom.xml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dataplex</artifactId>
11-
<version>v1-rev20260804-2.0.0</version>
12-
<name>Cloud Dataplex API v1-rev20260804-2.0.0</name>
11+
<version>v1-rev20260823-2.0.0</version>
12+
<name>Cloud Dataplex API v1-rev20260823-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

‎clients/google-api-services-dataplex/v1/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dataplex</artifactId>
25-
<version>v1-rev20260804-2.0.0</version>
25+
<version>v1-rev20260823-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260804-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260823-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)