Skip to content

Commit bf42991

Browse files
1 parent a33ee6a commit bf42991

12 files changed

+846
-6
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-rev20241001-2.0.0</version>
25+
<version>v1-rev20241019-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-rev20241001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20241019-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 data discovery 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 GoogleCloudDataplexV1DataDiscoveryResult extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Configuration for metadata publishing.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing bigqueryPublishing;
38+
39+
/**
40+
* Output only. Configuration for metadata publishing.
41+
* @return value or {@code null} for none
42+
*/
43+
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing getBigqueryPublishing() {
44+
return bigqueryPublishing;
45+
}
46+
47+
/**
48+
* Output only. Configuration for metadata publishing.
49+
* @param bigqueryPublishing bigqueryPublishing or {@code null} for none
50+
*/
51+
public GoogleCloudDataplexV1DataDiscoveryResult setBigqueryPublishing(GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing bigqueryPublishing) {
52+
this.bigqueryPublishing = bigqueryPublishing;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudDataplexV1DataDiscoveryResult set(String fieldName, Object value) {
58+
return (GoogleCloudDataplexV1DataDiscoveryResult) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudDataplexV1DataDiscoveryResult clone() {
63+
return (GoogleCloudDataplexV1DataDiscoveryResult) super.clone();
64+
}
65+
66+
}
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+
* Describes BigQuery publishing configurations.
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 GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The BigQuery dataset to publish to. It takes the form
34+
* projects/{project_id}/datasets/{dataset_id}. If not set, the service creates a default
35+
* publishing dataset.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String dataset;
40+
41+
/**
42+
* Output only. The BigQuery dataset to publish to. It takes the form
43+
* projects/{project_id}/datasets/{dataset_id}. If not set, the service creates a default
44+
* publishing dataset.
45+
* @return value or {@code null} for none
46+
*/
47+
public java.lang.String getDataset() {
48+
return dataset;
49+
}
50+
51+
/**
52+
* Output only. The BigQuery dataset to publish to. It takes the form
53+
* projects/{project_id}/datasets/{dataset_id}. If not set, the service creates a default
54+
* publishing dataset.
55+
* @param dataset dataset or {@code null} for none
56+
*/
57+
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing setDataset(java.lang.String dataset) {
58+
this.dataset = dataset;
59+
return this;
60+
}
61+
62+
@Override
63+
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing set(String fieldName, Object value) {
64+
return (GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing) super.set(fieldName, value);
65+
}
66+
67+
@Override
68+
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing clone() {
69+
return (GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing) super.clone();
70+
}
71+
72+
}
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+
* Spec for a data discovery 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 GoogleCloudDataplexV1DataDiscoverySpec extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Configuration for metadata publishing.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig bigqueryPublishingConfig;
38+
39+
/**
40+
* Cloud Storage related configurations.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudDataplexV1DataDiscoverySpecStorageConfig storageConfig;
45+
46+
/**
47+
* Optional. Configuration for metadata publishing.
48+
* @return value or {@code null} for none
49+
*/
50+
public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig getBigqueryPublishingConfig() {
51+
return bigqueryPublishingConfig;
52+
}
53+
54+
/**
55+
* Optional. Configuration for metadata publishing.
56+
* @param bigqueryPublishingConfig bigqueryPublishingConfig or {@code null} for none
57+
*/
58+
public GoogleCloudDataplexV1DataDiscoverySpec setBigqueryPublishingConfig(GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig bigqueryPublishingConfig) {
59+
this.bigqueryPublishingConfig = bigqueryPublishingConfig;
60+
return this;
61+
}
62+
63+
/**
64+
* Cloud Storage related configurations.
65+
* @return value or {@code null} for none
66+
*/
67+
public GoogleCloudDataplexV1DataDiscoverySpecStorageConfig getStorageConfig() {
68+
return storageConfig;
69+
}
70+
71+
/**
72+
* Cloud Storage related configurations.
73+
* @param storageConfig storageConfig or {@code null} for none
74+
*/
75+
public GoogleCloudDataplexV1DataDiscoverySpec setStorageConfig(GoogleCloudDataplexV1DataDiscoverySpecStorageConfig storageConfig) {
76+
this.storageConfig = storageConfig;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudDataplexV1DataDiscoverySpec set(String fieldName, Object value) {
82+
return (GoogleCloudDataplexV1DataDiscoverySpec) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudDataplexV1DataDiscoverySpec clone() {
87+
return (GoogleCloudDataplexV1DataDiscoverySpec) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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+
* Describes BigQuery publishing configurations.
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 GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The BigQuery connection used to create BigLake tables. Must be in the form
34+
* projects/{project_id}/locations/{location_id}/connections/{connection_id}
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String connection;
39+
40+
/**
41+
* Optional. Determines whether to publish discovered tables as BigLake external tables or non-
42+
* BigLake external tables.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String tableType;
47+
48+
/**
49+
* Optional. The BigQuery connection used to create BigLake tables. Must be in the form
50+
* projects/{project_id}/locations/{location_id}/connections/{connection_id}
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getConnection() {
54+
return connection;
55+
}
56+
57+
/**
58+
* Optional. The BigQuery connection used to create BigLake tables. Must be in the form
59+
* projects/{project_id}/locations/{location_id}/connections/{connection_id}
60+
* @param connection connection or {@code null} for none
61+
*/
62+
public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig setConnection(java.lang.String connection) {
63+
this.connection = connection;
64+
return this;
65+
}
66+
67+
/**
68+
* Optional. Determines whether to publish discovered tables as BigLake external tables or non-
69+
* BigLake external tables.
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.String getTableType() {
73+
return tableType;
74+
}
75+
76+
/**
77+
* Optional. Determines whether to publish discovered tables as BigLake external tables or non-
78+
* BigLake external tables.
79+
* @param tableType tableType or {@code null} for none
80+
*/
81+
public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig setTableType(java.lang.String tableType) {
82+
this.tableType = tableType;
83+
return this;
84+
}
85+
86+
@Override
87+
public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig set(String fieldName, Object value) {
88+
return (GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig) super.set(fieldName, value);
89+
}
90+
91+
@Override
92+
public GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig clone() {
93+
return (GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig) super.clone();
94+
}
95+
96+
}

0 commit comments

Comments
 (0)