Skip to content

Commit b4bb586

Browse files
1 parent 7081118 commit b4bb586

12 files changed

+977
-30
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-rev20260310-2.0.0</version>
25+
<version>v1-rev20260324-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-rev20260310-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20260324-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: 531 additions & 8 deletions
Large diffs are not rendered by default.

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

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,46 @@
3030
public final class GoogleCloudDataplexV1DataDocumentationResult extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Output only. Table result for insights.
33+
* Output only. Insights for a Dataset resource.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDataplexV1DataDocumentationResultDatasetResult datasetResult;
38+
39+
/**
40+
* Output only. Insights for a Table resource.
3441
* The value may be {@code null}.
3542
*/
3643
@com.google.api.client.util.Key
3744
private GoogleCloudDataplexV1DataDocumentationResultTableResult tableResult;
3845

3946
/**
40-
* Output only. Table result for insights.
47+
* Output only. Insights for a Dataset resource.
48+
* @return value or {@code null} for none
49+
*/
50+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult getDatasetResult() {
51+
return datasetResult;
52+
}
53+
54+
/**
55+
* Output only. Insights for a Dataset resource.
56+
* @param datasetResult datasetResult or {@code null} for none
57+
*/
58+
public GoogleCloudDataplexV1DataDocumentationResult setDatasetResult(GoogleCloudDataplexV1DataDocumentationResultDatasetResult datasetResult) {
59+
this.datasetResult = datasetResult;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. Insights for a Table resource.
4165
* @return value or {@code null} for none
4266
*/
4367
public GoogleCloudDataplexV1DataDocumentationResultTableResult getTableResult() {
4468
return tableResult;
4569
}
4670

4771
/**
48-
* Output only. Table result for insights.
72+
* Output only. Insights for a Table resource.
4973
* @param tableResult tableResult or {@code null} for none
5074
*/
5175
public GoogleCloudDataplexV1DataDocumentationResult setTableResult(GoogleCloudDataplexV1DataDocumentationResultTableResult tableResult) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
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+
* Insights for a dataset resource.
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 GoogleCloudDataplexV1DataDocumentationResultDatasetResult extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Generated Dataset description.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String overview;
38+
39+
/**
40+
* Output only. Sample SQL queries for the dataset.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<GoogleCloudDataplexV1DataDocumentationResultQuery> queries;
45+
46+
/**
47+
* Output only. Relationships suggesting how tables in the dataset are related to each other,
48+
* based on their schema.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship> schemaRelationships;
53+
54+
/**
55+
* Output only. Generated table and column descriptions for each table in the dataset.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.util.List<GoogleCloudDataplexV1DataDocumentationResultTableResult> tableResults;
60+
61+
/**
62+
* Output only. Generated Dataset description.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.String getOverview() {
66+
return overview;
67+
}
68+
69+
/**
70+
* Output only. Generated Dataset description.
71+
* @param overview overview or {@code null} for none
72+
*/
73+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult setOverview(java.lang.String overview) {
74+
this.overview = overview;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. Sample SQL queries for the dataset.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.util.List<GoogleCloudDataplexV1DataDocumentationResultQuery> getQueries() {
83+
return queries;
84+
}
85+
86+
/**
87+
* Output only. Sample SQL queries for the dataset.
88+
* @param queries queries or {@code null} for none
89+
*/
90+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult setQueries(java.util.List<GoogleCloudDataplexV1DataDocumentationResultQuery> queries) {
91+
this.queries = queries;
92+
return this;
93+
}
94+
95+
/**
96+
* Output only. Relationships suggesting how tables in the dataset are related to each other,
97+
* based on their schema.
98+
* @return value or {@code null} for none
99+
*/
100+
public java.util.List<GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship> getSchemaRelationships() {
101+
return schemaRelationships;
102+
}
103+
104+
/**
105+
* Output only. Relationships suggesting how tables in the dataset are related to each other,
106+
* based on their schema.
107+
* @param schemaRelationships schemaRelationships or {@code null} for none
108+
*/
109+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult setSchemaRelationships(java.util.List<GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship> schemaRelationships) {
110+
this.schemaRelationships = schemaRelationships;
111+
return this;
112+
}
113+
114+
/**
115+
* Output only. Generated table and column descriptions for each table in the dataset.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.util.List<GoogleCloudDataplexV1DataDocumentationResultTableResult> getTableResults() {
119+
return tableResults;
120+
}
121+
122+
/**
123+
* Output only. Generated table and column descriptions for each table in the dataset.
124+
* @param tableResults tableResults or {@code null} for none
125+
*/
126+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult setTableResults(java.util.List<GoogleCloudDataplexV1DataDocumentationResultTableResult> tableResults) {
127+
this.tableResults = tableResults;
128+
return this;
129+
}
130+
131+
@Override
132+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult set(String fieldName, Object value) {
133+
return (GoogleCloudDataplexV1DataDocumentationResultDatasetResult) super.set(fieldName, value);
134+
}
135+
136+
@Override
137+
public GoogleCloudDataplexV1DataDocumentationResultDatasetResult clone() {
138+
return (GoogleCloudDataplexV1DataDocumentationResultDatasetResult) super.clone();
139+
}
140+
141+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
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+
* Details of the relationship between the schema of two resources.
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 GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. An ordered list of fields for the join from the first table. The size of this list
34+
* must be the same as right_schema_paths. Each field at index i in this list must correspond to a
35+
* field at the same index in the right_schema_paths list.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths leftSchemaPaths;
40+
41+
/**
42+
* Output only. An ordered list of fields for the join from the second table. The size of this
43+
* list must be the same as left_schema_paths. Each field at index i in this list must correspond
44+
* to a field at the same index in the left_schema_paths list.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths rightSchemaPaths;
49+
50+
/**
51+
* Output only. Sources which generated the schema relation edge.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.util.List<java.lang.String> sources;
56+
57+
/**
58+
* Output only. The type of relationship between the schema paths.
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.String type;
63+
64+
/**
65+
* Output only. An ordered list of fields for the join from the first table. The size of this list
66+
* must be the same as right_schema_paths. Each field at index i in this list must correspond to a
67+
* field at the same index in the right_schema_paths list.
68+
* @return value or {@code null} for none
69+
*/
70+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths getLeftSchemaPaths() {
71+
return leftSchemaPaths;
72+
}
73+
74+
/**
75+
* Output only. An ordered list of fields for the join from the first table. The size of this list
76+
* must be the same as right_schema_paths. Each field at index i in this list must correspond to a
77+
* field at the same index in the right_schema_paths list.
78+
* @param leftSchemaPaths leftSchemaPaths or {@code null} for none
79+
*/
80+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship setLeftSchemaPaths(GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths leftSchemaPaths) {
81+
this.leftSchemaPaths = leftSchemaPaths;
82+
return this;
83+
}
84+
85+
/**
86+
* Output only. An ordered list of fields for the join from the second table. The size of this
87+
* list must be the same as left_schema_paths. Each field at index i in this list must correspond
88+
* to a field at the same index in the left_schema_paths list.
89+
* @return value or {@code null} for none
90+
*/
91+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths getRightSchemaPaths() {
92+
return rightSchemaPaths;
93+
}
94+
95+
/**
96+
* Output only. An ordered list of fields for the join from the second table. The size of this
97+
* list must be the same as left_schema_paths. Each field at index i in this list must correspond
98+
* to a field at the same index in the left_schema_paths list.
99+
* @param rightSchemaPaths rightSchemaPaths or {@code null} for none
100+
*/
101+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship setRightSchemaPaths(GoogleCloudDataplexV1DataDocumentationResultSchemaRelationshipSchemaPaths rightSchemaPaths) {
102+
this.rightSchemaPaths = rightSchemaPaths;
103+
return this;
104+
}
105+
106+
/**
107+
* Output only. Sources which generated the schema relation edge.
108+
* @return value or {@code null} for none
109+
*/
110+
public java.util.List<java.lang.String> getSources() {
111+
return sources;
112+
}
113+
114+
/**
115+
* Output only. Sources which generated the schema relation edge.
116+
* @param sources sources or {@code null} for none
117+
*/
118+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship setSources(java.util.List<java.lang.String> sources) {
119+
this.sources = sources;
120+
return this;
121+
}
122+
123+
/**
124+
* Output only. The type of relationship between the schema paths.
125+
* @return value or {@code null} for none
126+
*/
127+
public java.lang.String getType() {
128+
return type;
129+
}
130+
131+
/**
132+
* Output only. The type of relationship between the schema paths.
133+
* @param type type or {@code null} for none
134+
*/
135+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship setType(java.lang.String type) {
136+
this.type = type;
137+
return this;
138+
}
139+
140+
@Override
141+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship set(String fieldName, Object value) {
142+
return (GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship) super.set(fieldName, value);
143+
}
144+
145+
@Override
146+
public GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship clone() {
147+
return (GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship) super.clone();
148+
}
149+
150+
}

0 commit comments

Comments
 (0)