Skip to content

Commit 5a9090d

Browse files
1 parent 64720d8 commit 5a9090d

16 files changed

+569
-317
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-rev20250513-2.0.0</version>
25+
<version>v1-rev20250520-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-rev20250513-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20250520-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: 271 additions & 236 deletions
Large diffs are not rendered by default.

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ public final class GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfi
5656
@com.google.api.client.util.Key
5757
private java.lang.String location;
5858

59+
/**
60+
* Optional. The project of the BigQuery dataset to publish BigLake external or non-BigLake
61+
* external tables to. If not specified, the project of the Cloud Storage bucket will be used. The
62+
* format is "projects/{project_id_or_number}".
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String project;
67+
5968
/**
6069
* Optional. Determines whether to publish discovered tables as BigLake external tables or non-
6170
* BigLake external tables.
@@ -124,6 +133,27 @@ public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig setLocatio
124133
return this;
125134
}
126135

136+
/**
137+
* Optional. The project of the BigQuery dataset to publish BigLake external or non-BigLake
138+
* external tables to. If not specified, the project of the Cloud Storage bucket will be used. The
139+
* format is "projects/{project_id_or_number}".
140+
* @return value or {@code null} for none
141+
*/
142+
public java.lang.String getProject() {
143+
return project;
144+
}
145+
146+
/**
147+
* Optional. The project of the BigQuery dataset to publish BigLake external or non-BigLake
148+
* external tables to. If not specified, the project of the Cloud Storage bucket will be used. The
149+
* format is "projects/{project_id_or_number}".
150+
* @param project project or {@code null} for none
151+
*/
152+
public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig setProject(java.lang.String project) {
153+
this.project = project;
154+
return this;
155+
}
156+
127157
/**
128158
* Optional. Determines whether to publish discovered tables as BigLake external tables or non-
129159
* BigLake external tables.

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,20 @@ public final class GoogleCloudDataplexV1DataQualityColumnResult extends com.goog
3636
@com.google.api.client.util.Key
3737
private java.lang.String column;
3838

39+
/**
40+
* Output only. The dimension-level results for this column.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<GoogleCloudDataplexV1DataQualityDimensionResult> dimensions;
45+
46+
/**
47+
* Output only. Whether the column passed or failed.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.Boolean passed;
52+
3953
/**
4054
* Output only. The column-level data quality score for this data scan job if and only if the
4155
* 'column' field is set.The score ranges between between 0, 100 (up to two decimal points).
@@ -61,6 +75,40 @@ public GoogleCloudDataplexV1DataQualityColumnResult setColumn(java.lang.String c
6175
return this;
6276
}
6377

78+
/**
79+
* Output only. The dimension-level results for this column.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.util.List<GoogleCloudDataplexV1DataQualityDimensionResult> getDimensions() {
83+
return dimensions;
84+
}
85+
86+
/**
87+
* Output only. The dimension-level results for this column.
88+
* @param dimensions dimensions or {@code null} for none
89+
*/
90+
public GoogleCloudDataplexV1DataQualityColumnResult setDimensions(java.util.List<GoogleCloudDataplexV1DataQualityDimensionResult> dimensions) {
91+
this.dimensions = dimensions;
92+
return this;
93+
}
94+
95+
/**
96+
* Output only. Whether the column passed or failed.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.Boolean getPassed() {
100+
return passed;
101+
}
102+
103+
/**
104+
* Output only. Whether the column passed or failed.
105+
* @param passed passed or {@code null} for none
106+
*/
107+
public GoogleCloudDataplexV1DataQualityColumnResult setPassed(java.lang.Boolean passed) {
108+
this.passed = passed;
109+
return this;
110+
}
111+
64112
/**
65113
* Output only. The column-level data quality score for this data scan job if and only if the
66114
* 'column' field is set.The score ranges between between 0, 100 (up to two decimal points).

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudDataplexV1DataQualityResult extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. The status of publishing the data scan to Catalog.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDataplexV1DataScanCatalogPublishingStatus catalogPublishingStatus;
38+
3239
/**
3340
* Output only. A list of results at the column level.A column will have a corresponding
3441
* DataQualityColumnResult if and only if there is at least one rule with the 'column' field set
@@ -102,6 +109,23 @@ public final class GoogleCloudDataplexV1DataQualityResult extends com.google.api
102109
@com.google.api.client.util.Key
103110
private java.lang.Float score;
104111

112+
/**
113+
* Output only. The status of publishing the data scan to Catalog.
114+
* @return value or {@code null} for none
115+
*/
116+
public GoogleCloudDataplexV1DataScanCatalogPublishingStatus getCatalogPublishingStatus() {
117+
return catalogPublishingStatus;
118+
}
119+
120+
/**
121+
* Output only. The status of publishing the data scan to Catalog.
122+
* @param catalogPublishingStatus catalogPublishingStatus or {@code null} for none
123+
*/
124+
public GoogleCloudDataplexV1DataQualityResult setCatalogPublishingStatus(GoogleCloudDataplexV1DataScanCatalogPublishingStatus catalogPublishingStatus) {
125+
this.catalogPublishingStatus = catalogPublishingStatus;
126+
return this;
127+
}
128+
105129
/**
106130
* Output only. A list of results at the column level.A column will have a corresponding
107131
* DataQualityColumnResult if and only if there is at least one rule with the 'column' field set

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudDataplexV1DataQualitySpec extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. If set, the latest DataScan job result will be published to Dataplex Catalog.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean catalogPublishingEnabled;
38+
3239
/**
3340
* Optional. Actions to take upon job completion.
3441
* The value may be {@code null}.
@@ -68,6 +75,23 @@ public final class GoogleCloudDataplexV1DataQualitySpec extends com.google.api.c
6875
@com.google.api.client.util.Key
6976
private java.lang.Float samplingPercent;
7077

78+
/**
79+
* Optional. If set, the latest DataScan job result will be published to Dataplex Catalog.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.Boolean getCatalogPublishingEnabled() {
83+
return catalogPublishingEnabled;
84+
}
85+
86+
/**
87+
* Optional. If set, the latest DataScan job result will be published to Dataplex Catalog.
88+
* @param catalogPublishingEnabled catalogPublishingEnabled or {@code null} for none
89+
*/
90+
public GoogleCloudDataplexV1DataQualitySpec setCatalogPublishingEnabled(java.lang.Boolean catalogPublishingEnabled) {
91+
this.catalogPublishingEnabled = catalogPublishingEnabled;
92+
return this;
93+
}
94+
7195
/**
7296
* Optional. Actions to take upon job completion.
7397
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.dataplex.v1.model;
18+
19+
/**
20+
* The status of publishing the data scan result to Catalog.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Dataplex API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudDataplexV1DataScanCatalogPublishingStatus extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Execution state for catalog publishing.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String state;
38+
39+
/**
40+
* Output only. Execution state for catalog publishing.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getState() {
44+
return state;
45+
}
46+
47+
/**
48+
* Output only. Execution state for catalog publishing.
49+
* @param state state or {@code null} for none
50+
*/
51+
public GoogleCloudDataplexV1DataScanCatalogPublishingStatus setState(java.lang.String state) {
52+
this.state = state;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudDataplexV1DataScanCatalogPublishingStatus set(String fieldName, Object value) {
58+
return (GoogleCloudDataplexV1DataScanCatalogPublishingStatus) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudDataplexV1DataScanCatalogPublishingStatus clone() {
63+
return (GoogleCloudDataplexV1DataScanCatalogPublishingStatus) super.clone();
64+
}
65+
66+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleCloudDataplexV1DataScanEvent extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* The status of publishing the data scan to Catalog.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleCloudDataplexV1DataScanCatalogPublishingStatus catalogPublishingStatus;
39+
3340
/**
3441
* The time when the data scan job was created.
3542
* The value may be {@code null}.
@@ -142,6 +149,23 @@ public final class GoogleCloudDataplexV1DataScanEvent extends com.google.api.cli
142149
@com.google.api.client.util.Key
143150
private java.lang.String type;
144151

152+
/**
153+
* The status of publishing the data scan to Catalog.
154+
* @return value or {@code null} for none
155+
*/
156+
public GoogleCloudDataplexV1DataScanCatalogPublishingStatus getCatalogPublishingStatus() {
157+
return catalogPublishingStatus;
158+
}
159+
160+
/**
161+
* The status of publishing the data scan to Catalog.
162+
* @param catalogPublishingStatus catalogPublishingStatus or {@code null} for none
163+
*/
164+
public GoogleCloudDataplexV1DataScanEvent setCatalogPublishingStatus(GoogleCloudDataplexV1DataScanCatalogPublishingStatus catalogPublishingStatus) {
165+
this.catalogPublishingStatus = catalogPublishingStatus;
166+
return this;
167+
}
168+
145169
/**
146170
* The time when the data scan job was created.
147171
* @return value or {@code null} for none

0 commit comments

Comments
 (0)