Skip to content

Commit 7901428

Browse files
1 parent 056a3c2 commit 7901428

12 files changed

+640
-10
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-rev20250915-2.0.0</version>
25+
<version>v1-rev20250919-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-rev20250915-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20250919-2.0.0'
3939
}
4040
```
4141

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 output of a DataDocumentation 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 GoogleCloudDataplexV1DataDocumentationResult extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Table result for insights.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDataplexV1DataDocumentationResultTableResult tableResult;
38+
39+
/**
40+
* Output only. Table result for insights.
41+
* @return value or {@code null} for none
42+
*/
43+
public GoogleCloudDataplexV1DataDocumentationResultTableResult getTableResult() {
44+
return tableResult;
45+
}
46+
47+
/**
48+
* Output only. Table result for insights.
49+
* @param tableResult tableResult or {@code null} for none
50+
*/
51+
public GoogleCloudDataplexV1DataDocumentationResult setTableResult(GoogleCloudDataplexV1DataDocumentationResultTableResult tableResult) {
52+
this.tableResult = tableResult;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudDataplexV1DataDocumentationResult set(String fieldName, Object value) {
58+
return (GoogleCloudDataplexV1DataDocumentationResult) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudDataplexV1DataDocumentationResult clone() {
63+
return (GoogleCloudDataplexV1DataDocumentationResult) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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+
* Column of a table with generated metadata and nested fields.
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 GoogleCloudDataplexV1DataDocumentationResultField extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Generated description for columns and fields.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String description;
38+
39+
/**
40+
* Output only. Nested fields.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<GoogleCloudDataplexV1DataDocumentationResultField> fields;
45+
46+
/**
47+
* Output only. The name of the column.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String name;
52+
53+
/**
54+
* Output only. Generated description for columns and fields.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getDescription() {
58+
return description;
59+
}
60+
61+
/**
62+
* Output only. Generated description for columns and fields.
63+
* @param description description or {@code null} for none
64+
*/
65+
public GoogleCloudDataplexV1DataDocumentationResultField setDescription(java.lang.String description) {
66+
this.description = description;
67+
return this;
68+
}
69+
70+
/**
71+
* Output only. Nested fields.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.List<GoogleCloudDataplexV1DataDocumentationResultField> getFields() {
75+
return fields;
76+
}
77+
78+
/**
79+
* Output only. Nested fields.
80+
* @param fields fields or {@code null} for none
81+
*/
82+
public GoogleCloudDataplexV1DataDocumentationResultField setFields(java.util.List<GoogleCloudDataplexV1DataDocumentationResultField> fields) {
83+
this.fields = fields;
84+
return this;
85+
}
86+
87+
/**
88+
* Output only. The name of the column.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getName() {
92+
return name;
93+
}
94+
95+
/**
96+
* Output only. The name of the column.
97+
* @param name name or {@code null} for none
98+
*/
99+
public GoogleCloudDataplexV1DataDocumentationResultField setName(java.lang.String name) {
100+
this.name = name;
101+
return this;
102+
}
103+
104+
@Override
105+
public GoogleCloudDataplexV1DataDocumentationResultField set(String fieldName, Object value) {
106+
return (GoogleCloudDataplexV1DataDocumentationResultField) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public GoogleCloudDataplexV1DataDocumentationResultField clone() {
111+
return (GoogleCloudDataplexV1DataDocumentationResultField) super.clone();
112+
}
113+
114+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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+
* A sample SQL query in data documentation.
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 GoogleCloudDataplexV1DataDocumentationResultQuery extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The description for the query.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String description;
38+
39+
/**
40+
* Output only. The SQL query string which can be executed.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String sql;
45+
46+
/**
47+
* Output only. The description for the query.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getDescription() {
51+
return description;
52+
}
53+
54+
/**
55+
* Output only. The description for the query.
56+
* @param description description or {@code null} for none
57+
*/
58+
public GoogleCloudDataplexV1DataDocumentationResultQuery setDescription(java.lang.String description) {
59+
this.description = description;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. The SQL query string which can be executed.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getSql() {
68+
return sql;
69+
}
70+
71+
/**
72+
* Output only. The SQL query string which can be executed.
73+
* @param sql sql or {@code null} for none
74+
*/
75+
public GoogleCloudDataplexV1DataDocumentationResultQuery setSql(java.lang.String sql) {
76+
this.sql = sql;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudDataplexV1DataDocumentationResultQuery set(String fieldName, Object value) {
82+
return (GoogleCloudDataplexV1DataDocumentationResultQuery) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudDataplexV1DataDocumentationResultQuery clone() {
87+
return (GoogleCloudDataplexV1DataDocumentationResultQuery) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+
* Schema of the table with generated metadata of columns.
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 GoogleCloudDataplexV1DataDocumentationResultSchema extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The list of columns.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<GoogleCloudDataplexV1DataDocumentationResultField> fields;
38+
39+
static {
40+
// hack to force ProGuard to consider GoogleCloudDataplexV1DataDocumentationResultField used, since otherwise it would be stripped out
41+
// see https://github.com/google/google-api-java-client/issues/543
42+
com.google.api.client.util.Data.nullOf(GoogleCloudDataplexV1DataDocumentationResultField.class);
43+
}
44+
45+
/**
46+
* Output only. The list of columns.
47+
* @return value or {@code null} for none
48+
*/
49+
public java.util.List<GoogleCloudDataplexV1DataDocumentationResultField> getFields() {
50+
return fields;
51+
}
52+
53+
/**
54+
* Output only. The list of columns.
55+
* @param fields fields or {@code null} for none
56+
*/
57+
public GoogleCloudDataplexV1DataDocumentationResultSchema setFields(java.util.List<GoogleCloudDataplexV1DataDocumentationResultField> fields) {
58+
this.fields = fields;
59+
return this;
60+
}
61+
62+
@Override
63+
public GoogleCloudDataplexV1DataDocumentationResultSchema set(String fieldName, Object value) {
64+
return (GoogleCloudDataplexV1DataDocumentationResultSchema) super.set(fieldName, value);
65+
}
66+
67+
@Override
68+
public GoogleCloudDataplexV1DataDocumentationResultSchema clone() {
69+
return (GoogleCloudDataplexV1DataDocumentationResultSchema) super.clone();
70+
}
71+
72+
}

0 commit comments

Comments
 (0)