Skip to content

Commit 5c1a53a

Browse files
1 parent 96bbc5f commit 5c1a53a

File tree

7 files changed

+32
-21
lines changed

7 files changed

+32
-21
lines changed

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-rev20250603-2.0.0</version>
25+
<version>v1-rev20250618-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-rev20250603-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20250618-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: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3062,17 +3062,24 @@ public SearchEntries setScope(java.lang.String scope) {
30623062
return this;
30633063
}
30643064

3065-
/** Optional. Internal only. */
3065+
/**
3066+
* Optional. Specifies whether the search should understand the meaning and intent behind
3067+
* the query, rather than just matching keywords.
3068+
*/
30663069
@com.google.api.client.util.Key
30673070
private java.lang.Boolean semanticSearch;
30683071

3069-
/** Optional. Internal only.
3072+
/** Optional. Specifies whether the search should understand the meaning and intent behind the query,
3073+
rather than just matching keywords.
30703074
*/
30713075
public java.lang.Boolean getSemanticSearch() {
30723076
return semanticSearch;
30733077
}
30743078

3075-
/** Optional. Internal only. */
3079+
/**
3080+
* Optional. Specifies whether the search should understand the meaning and intent behind
3081+
* the query, rather than just matching keywords.
3082+
*/
30763083
public SearchEntries setSemanticSearch(java.lang.Boolean semanticSearch) {
30773084
this.semanticSearch = semanticSearch;
30783085
return this;

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public final class GoogleCloudDataplexV1DataQualityRule extends com.google.api.c
4545

4646
/**
4747
* Required. The dimension a rule belongs to. Results are also aggregated at the dimension level.
48-
* Supported dimensions are "COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
49-
* "FRESHNESS", "VOLUME"
48+
* Custom dimension name is supported with all uppercase letters and maximum length of 30
49+
* characters.
5050
* The value may be {@code null}.
5151
*/
5252
@com.google.api.client.util.Key
@@ -187,8 +187,8 @@ public GoogleCloudDataplexV1DataQualityRule setDescription(java.lang.String desc
187187

188188
/**
189189
* Required. The dimension a rule belongs to. Results are also aggregated at the dimension level.
190-
* Supported dimensions are "COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
191-
* "FRESHNESS", "VOLUME"
190+
* Custom dimension name is supported with all uppercase letters and maximum length of 30
191+
* characters.
192192
* @return value or {@code null} for none
193193
*/
194194
public java.lang.String getDimension() {
@@ -197,8 +197,8 @@ public java.lang.String getDimension() {
197197

198198
/**
199199
* Required. The dimension a rule belongs to. Results are also aggregated at the dimension level.
200-
* Supported dimensions are "COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
201-
* "FRESHNESS", "VOLUME"
200+
* Custom dimension name is supported with all uppercase letters and maximum length of 30
201+
* characters.
202202
* @param dimension dimension or {@code null} for none
203203
*/
204204
public GoogleCloudDataplexV1DataQualityRule setDimension(java.lang.String dimension) {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* (https://cloud.google.com/dataplex/docs/data-profiling-overview). Data discovery: scans data in
2727
* Cloud Storage buckets to extract and then catalog metadata. For more information, see Discover
2828
* and catalog Cloud Storage data (https://cloud.google.com/bigquery/docs/automatic-discovery).
29+
* LINT.IfChange
2930
*
3031
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
3132
* transmitted over HTTP when working with the Cloud Dataplex API. For a detailed explanation see:

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ public final class GoogleCloudDataplexV1DataSource extends com.google.api.client
4040

4141
/**
4242
* Immutable. The service-qualified full resource name of the cloud resource for a DataScan job to
43-
* scan against. The field could be: BigQuery table of type "TABLE" for
44-
* DataProfileScan/DataQualityScan Format:
43+
* scan against. The field could eitherbe: Cloud Storage bucket for DataDiscoveryScan Format:
44+
* //storage.googleapis.com/projects/PROJECT_ID/buckets/BUCKET_ID or BigQuery table of type
45+
* "TABLE" for DataProfileScan/DataQualityScan Format:
4546
* //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
4647
* The value may be {@code null}.
4748
*/
@@ -71,8 +72,9 @@ public GoogleCloudDataplexV1DataSource setEntity(java.lang.String entity) {
7172

7273
/**
7374
* Immutable. The service-qualified full resource name of the cloud resource for a DataScan job to
74-
* scan against. The field could be: BigQuery table of type "TABLE" for
75-
* DataProfileScan/DataQualityScan Format:
75+
* scan against. The field could eitherbe: Cloud Storage bucket for DataDiscoveryScan Format:
76+
* //storage.googleapis.com/projects/PROJECT_ID/buckets/BUCKET_ID or BigQuery table of type
77+
* "TABLE" for DataProfileScan/DataQualityScan Format:
7678
* //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
7779
* @return value or {@code null} for none
7880
*/
@@ -82,8 +84,9 @@ public java.lang.String getResource() {
8284

8385
/**
8486
* Immutable. The service-qualified full resource name of the cloud resource for a DataScan job to
85-
* scan against. The field could be: BigQuery table of type "TABLE" for
86-
* DataProfileScan/DataQualityScan Format:
87+
* scan against. The field could eitherbe: Cloud Storage bucket for DataDiscoveryScan Format:
88+
* //storage.googleapis.com/projects/PROJECT_ID/buckets/BUCKET_ID or BigQuery table of type
89+
* "TABLE" for DataProfileScan/DataQualityScan Format:
8790
* //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
8891
* @param resource resource or {@code null} for none
8992
*/

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-rev20250603-2.0.0</version>
12-
<name>Cloud Dataplex API v1-rev20250603-2.0.0</name>
11+
<version>v1-rev20250618-2.0.0</version>
12+
<name>Cloud Dataplex API v1-rev20250618-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-rev20250603-2.0.0</version>
25+
<version>v1-rev20250618-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-rev20250603-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20250618-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)