Skip to content

Commit 933eb95

Browse files
1 parent 1673730 commit 933eb95

20 files changed

+974
-84
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-rev20250222-2.0.0</version>
25+
<version>v1-rev20250330-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-rev20250222-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20250330-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1629,6 +1629,29 @@ public List setName(java.lang.String name) {
16291629
return this;
16301630
}
16311631

1632+
/**
1633+
* Optional. A list of extra location types that should be used as conditions for
1634+
* controlling the visibility of the locations.
1635+
*/
1636+
@com.google.api.client.util.Key
1637+
private java.util.List<java.lang.String> extraLocationTypes;
1638+
1639+
/** Optional. A list of extra location types that should be used as conditions for controlling the
1640+
visibility of the locations.
1641+
*/
1642+
public java.util.List<java.lang.String> getExtraLocationTypes() {
1643+
return extraLocationTypes;
1644+
}
1645+
1646+
/**
1647+
* Optional. A list of extra location types that should be used as conditions for
1648+
* controlling the visibility of the locations.
1649+
*/
1650+
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
1651+
this.extraLocationTypes = extraLocationTypes;
1652+
return this;
1653+
}
1654+
16321655
/**
16331656
* A filter to narrow down results to a preferred subset. The filtering language accepts
16341657
* strings like "displayName=tokyo", and is documented in more detail in AIP-160

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public final class GoogleCloudDataplexV1AssetDiscoverySpec extends com.google.ap
7272
/**
7373
* Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery
7474
* periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The
75-
* default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron
75+
* default value is to run discovery every 60 minutes.To explicitly set a timezone to the cron
7676
* tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The
7777
* ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example,
7878
* CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
@@ -179,7 +179,7 @@ public GoogleCloudDataplexV1AssetDiscoverySpec setJsonOptions(GoogleCloudDataple
179179
/**
180180
* Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery
181181
* periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The
182-
* default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron
182+
* default value is to run discovery every 60 minutes.To explicitly set a timezone to the cron
183183
* tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The
184184
* ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example,
185185
* CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
@@ -192,7 +192,7 @@ public java.lang.String getSchedule() {
192192
/**
193193
* Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery
194194
* periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The
195-
* default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron
195+
* default value is to run discovery every 60 minutes.To explicitly set a timezone to the cron
196196
* tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The
197197
* ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example,
198198
* CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudDataplexV1DataDiscoveryResult extends com.google.a
3636
@com.google.api.client.util.Key
3737
private GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing bigqueryPublishing;
3838

39+
/**
40+
* Output only. Statistics of the DataDiscoveryScan.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudDataplexV1DataDiscoveryResultScanStatistics scanStatistics;
45+
3946
/**
4047
* Output only. Configuration for metadata publishing.
4148
* @return value or {@code null} for none
@@ -53,6 +60,23 @@ public GoogleCloudDataplexV1DataDiscoveryResult setBigqueryPublishing(GoogleClou
5360
return this;
5461
}
5562

63+
/**
64+
* Output only. Statistics of the DataDiscoveryScan.
65+
* @return value or {@code null} for none
66+
*/
67+
public GoogleCloudDataplexV1DataDiscoveryResultScanStatistics getScanStatistics() {
68+
return scanStatistics;
69+
}
70+
71+
/**
72+
* Output only. Statistics of the DataDiscoveryScan.
73+
* @param scanStatistics scanStatistics or {@code null} for none
74+
*/
75+
public GoogleCloudDataplexV1DataDiscoveryResult setScanStatistics(GoogleCloudDataplexV1DataDiscoveryResultScanStatistics scanStatistics) {
76+
this.scanStatistics = scanStatistics;
77+
return this;
78+
}
79+
5680
@Override
5781
public GoogleCloudDataplexV1DataDiscoveryResult set(String fieldName, Object value) {
5882
return (GoogleCloudDataplexV1DataDiscoveryResult) super.set(fieldName, value);

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

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,35 +30,53 @@
3030
public final class GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing extends com.google.api.client.json.GenericJson {
3131

3232
/**
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.
33+
* Output only. The BigQuery dataset the discovered tables are published to.
3634
* The value may be {@code null}.
3735
*/
3836
@com.google.api.client.util.Key
3937
private java.lang.String dataset;
4038

4139
/**
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.
40+
* Output only. The location of the BigQuery publishing dataset.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String location;
45+
46+
/**
47+
* Output only. The BigQuery dataset the discovered tables are published to.
4548
* @return value or {@code null} for none
4649
*/
4750
public java.lang.String getDataset() {
4851
return dataset;
4952
}
5053

5154
/**
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+
* Output only. The BigQuery dataset the discovered tables are published to.
5556
* @param dataset dataset or {@code null} for none
5657
*/
5758
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing setDataset(java.lang.String dataset) {
5859
this.dataset = dataset;
5960
return this;
6061
}
6162

63+
/**
64+
* Output only. The location of the BigQuery publishing dataset.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getLocation() {
68+
return location;
69+
}
70+
71+
/**
72+
* Output only. The location of the BigQuery publishing dataset.
73+
* @param location location or {@code null} for none
74+
*/
75+
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing setLocation(java.lang.String location) {
76+
this.location = location;
77+
return this;
78+
}
79+
6280
@Override
6381
public GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing set(String fieldName, Object value) {
6482
return (GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing) super.set(fieldName, value);

0 commit comments

Comments
 (0)