Skip to content

Commit 5b2ab52

Browse files
1 parent 895755d commit 5b2ab52

File tree

7 files changed

+646
-9
lines changed

7 files changed

+646
-9
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-rev20250919-2.0.0</version>
25+
<version>v1-rev20250924-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-rev20250919-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataplex:v1-rev20250924-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: 583 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class GoogleCloudDataplexV1DataDocumentationResultTableResult exten
3131

3232
/**
3333
* Output only. The service-qualified full resource name of the cloud resource. Ex:
34-
* bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
34+
* //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -66,7 +66,7 @@ public final class GoogleCloudDataplexV1DataDocumentationResultTableResult exten
6666

6767
/**
6868
* Output only. The service-qualified full resource name of the cloud resource. Ex:
69-
* bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
69+
* //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
7070
* @return value or {@code null} for none
7171
*/
7272
public java.lang.String getName() {
@@ -75,7 +75,7 @@ public java.lang.String getName() {
7575

7676
/**
7777
* Output only. The service-qualified full resource name of the cloud resource. Ex:
78-
* bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
78+
* //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
7979
* @param name name or {@code null} for none
8080
*/
8181
public GoogleCloudDataplexV1DataDocumentationResultTableResult setName(java.lang.String name) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class GoogleCloudDataplexV1EncryptionConfig extends com.google.api.
3737
@com.google.api.client.util.Key
3838
private String createTime;
3939

40+
/**
41+
* Optional. Represent the state of CMEK opt-in for metastore.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean enableMetastoreEncryption;
46+
4047
/**
4148
* Output only. The state of encryption of the databases.
4249
* The value may be {@code null}.
@@ -99,6 +106,23 @@ public GoogleCloudDataplexV1EncryptionConfig setCreateTime(String createTime) {
99106
return this;
100107
}
101108

109+
/**
110+
* Optional. Represent the state of CMEK opt-in for metastore.
111+
* @return value or {@code null} for none
112+
*/
113+
public java.lang.Boolean getEnableMetastoreEncryption() {
114+
return enableMetastoreEncryption;
115+
}
116+
117+
/**
118+
* Optional. Represent the state of CMEK opt-in for metastore.
119+
* @param enableMetastoreEncryption enableMetastoreEncryption or {@code null} for none
120+
*/
121+
public GoogleCloudDataplexV1EncryptionConfig setEnableMetastoreEncryption(java.lang.Boolean enableMetastoreEncryption) {
122+
this.enableMetastoreEncryption = enableMetastoreEncryption;
123+
return this;
124+
}
125+
102126
/**
103127
* Output only. The state of encryption of the databases.
104128
* @return value or {@code null} for none

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class GoogleLongrunningListOperationsResponse extends com.google.ap
4343
@com.google.api.client.util.Key
4444
private java.util.List<GoogleLongrunningOperation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* ListOperationsRequest.return_partial_success and reads across collections e.g. when attempting
49+
* to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public GoogleLongrunningListOperationsResponse setOperations(java.util.List<Goog
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* ListOperationsRequest.return_partial_success and reads across collections e.g. when attempting
92+
* to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* ListOperationsRequest.return_partial_success and reads across collections e.g. when attempting
102+
* to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public GoogleLongrunningListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public GoogleLongrunningListOperationsResponse set(String fieldName, Object value) {
82112
return (GoogleLongrunningListOperationsResponse) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)