Skip to content

Commit 927632d

Browse files
1 parent 6cc164d commit 927632d

File tree

6 files changed

+189
-12
lines changed

6 files changed

+189
-12
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-rev20251012-2.0.0</version>
25+
<version>v1-rev20251027-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-rev20251012-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20251027-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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2519,22 +2519,22 @@ public List setName(java.lang.String name) {
25192519
}
25202520

25212521
/**
2522-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
2523-
* is primarily intended for internal usage.
2522+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
2523+
* documented otherwise. This is primarily for internal usage.
25242524
*/
25252525
@com.google.api.client.util.Key
25262526
private java.util.List<java.lang.String> extraLocationTypes;
25272527

2528-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
2529-
primarily intended for internal usage.
2528+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
2529+
otherwise. This is primarily for internal usage.
25302530
*/
25312531
public java.util.List<java.lang.String> getExtraLocationTypes() {
25322532
return extraLocationTypes;
25332533
}
25342534

25352535
/**
2536-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
2537-
* is primarily intended for internal usage.
2536+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
2537+
* documented otherwise. This is primarily for internal usage.
25382538
*/
25392539
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
25402540
this.extraLocationTypes = extraLocationTypes;

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 generated assets for anomaly detection.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets anomalyDetectionGeneratedAssets;
38+
3239
/**
3340
* Output only. The status of publishing the data scan as Dataplex Universal Catalog metadata.
3441
* The value may be {@code null}.
@@ -109,6 +116,23 @@ public final class GoogleCloudDataplexV1DataQualityResult extends com.google.api
109116
@com.google.api.client.util.Key
110117
private java.lang.Float score;
111118

119+
/**
120+
* Output only. The generated assets for anomaly detection.
121+
* @return value or {@code null} for none
122+
*/
123+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets getAnomalyDetectionGeneratedAssets() {
124+
return anomalyDetectionGeneratedAssets;
125+
}
126+
127+
/**
128+
* Output only. The generated assets for anomaly detection.
129+
* @param anomalyDetectionGeneratedAssets anomalyDetectionGeneratedAssets or {@code null} for none
130+
*/
131+
public GoogleCloudDataplexV1DataQualityResult setAnomalyDetectionGeneratedAssets(GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets anomalyDetectionGeneratedAssets) {
132+
this.anomalyDetectionGeneratedAssets = anomalyDetectionGeneratedAssets;
133+
return this;
134+
}
135+
112136
/**
113137
* Output only. The status of publishing the data scan as Dataplex Universal Catalog metadata.
114138
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
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 assets generated by Anomaly Detection Data Scan.
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 GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The intermediate table for data anomaly detection. Format:
34+
* PROJECT_ID.DATASET_ID.TABLE_ID
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String dataIntermediateTable;
39+
40+
/**
41+
* Output only. The intermediate table for freshness anomaly detection. Format:
42+
* PROJECT_ID.DATASET_ID.TABLE_ID
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String freshnessIntermediateTable;
47+
48+
/**
49+
* Output only. The result table for anomaly detection. Format: PROJECT_ID.DATASET_ID.TABLE_ID If
50+
* the result table is set at AnomalyDetectionAssets, the result table here would be the same as
51+
* the one set in the AnomalyDetectionAssets.result_table.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String resultTable;
56+
57+
/**
58+
* Output only. The intermediate table for volume anomaly detection. Format:
59+
* PROJECT_ID.DATASET_ID.TABLE_ID
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.String volumeIntermediateTable;
64+
65+
/**
66+
* Output only. The intermediate table for data anomaly detection. Format:
67+
* PROJECT_ID.DATASET_ID.TABLE_ID
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getDataIntermediateTable() {
71+
return dataIntermediateTable;
72+
}
73+
74+
/**
75+
* Output only. The intermediate table for data anomaly detection. Format:
76+
* PROJECT_ID.DATASET_ID.TABLE_ID
77+
* @param dataIntermediateTable dataIntermediateTable or {@code null} for none
78+
*/
79+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setDataIntermediateTable(java.lang.String dataIntermediateTable) {
80+
this.dataIntermediateTable = dataIntermediateTable;
81+
return this;
82+
}
83+
84+
/**
85+
* Output only. The intermediate table for freshness anomaly detection. Format:
86+
* PROJECT_ID.DATASET_ID.TABLE_ID
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getFreshnessIntermediateTable() {
90+
return freshnessIntermediateTable;
91+
}
92+
93+
/**
94+
* Output only. The intermediate table for freshness anomaly detection. Format:
95+
* PROJECT_ID.DATASET_ID.TABLE_ID
96+
* @param freshnessIntermediateTable freshnessIntermediateTable or {@code null} for none
97+
*/
98+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setFreshnessIntermediateTable(java.lang.String freshnessIntermediateTable) {
99+
this.freshnessIntermediateTable = freshnessIntermediateTable;
100+
return this;
101+
}
102+
103+
/**
104+
* Output only. The result table for anomaly detection. Format: PROJECT_ID.DATASET_ID.TABLE_ID If
105+
* the result table is set at AnomalyDetectionAssets, the result table here would be the same as
106+
* the one set in the AnomalyDetectionAssets.result_table.
107+
* @return value or {@code null} for none
108+
*/
109+
public java.lang.String getResultTable() {
110+
return resultTable;
111+
}
112+
113+
/**
114+
* Output only. The result table for anomaly detection. Format: PROJECT_ID.DATASET_ID.TABLE_ID If
115+
* the result table is set at AnomalyDetectionAssets, the result table here would be the same as
116+
* the one set in the AnomalyDetectionAssets.result_table.
117+
* @param resultTable resultTable or {@code null} for none
118+
*/
119+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setResultTable(java.lang.String resultTable) {
120+
this.resultTable = resultTable;
121+
return this;
122+
}
123+
124+
/**
125+
* Output only. The intermediate table for volume anomaly detection. Format:
126+
* PROJECT_ID.DATASET_ID.TABLE_ID
127+
* @return value or {@code null} for none
128+
*/
129+
public java.lang.String getVolumeIntermediateTable() {
130+
return volumeIntermediateTable;
131+
}
132+
133+
/**
134+
* Output only. The intermediate table for volume anomaly detection. Format:
135+
* PROJECT_ID.DATASET_ID.TABLE_ID
136+
* @param volumeIntermediateTable volumeIntermediateTable or {@code null} for none
137+
*/
138+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setVolumeIntermediateTable(java.lang.String volumeIntermediateTable) {
139+
this.volumeIntermediateTable = volumeIntermediateTable;
140+
return this;
141+
}
142+
143+
@Override
144+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets set(String fieldName, Object value) {
145+
return (GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets) super.set(fieldName, value);
146+
}
147+
148+
@Override
149+
public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets clone() {
150+
return (GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets) super.clone();
151+
}
152+
153+
}

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

0 commit comments

Comments
 (0)