Skip to content

Commit a81d3c1

Browse files
1 parent 7fdbbdb commit a81d3c1

File tree

4 files changed

+51
-6
lines changed

4 files changed

+51
-6
lines changed

clients/google-api-services-dataproc/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-dataproc</artifactId>
25-
<version>v1-rev20251104-2.0.0</version>
25+
<version>v1-rev20251203-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-dataproc:v1-rev20251104-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20251203-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataproc/v1/2.0.0/com/google/api/services/dataproc/model/GceClusterConfig.java

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GceClusterConfig extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. An optional list of Compute Engine zones where the Dataproc cluster will not be
35+
* located when Auto Zone is enabled. Only one of zone_uri or auto_zone_exclude_zone_uris can be
36+
* set. If both are omitted, the service will pick a zone in the cluster Compute Engine region. If
37+
* auto_zone_exclude_zone_uris is set and there is more than one non-excluded zone, the service
38+
* will pick one of the non-excluded zones. Otherwise, cluster creation will fail with
39+
* INVALID_ARGUMENT error.A full URL, partial URI, or short name are valid. Examples:
40+
* https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone]
41+
* projects/[project_id]/zones/[zone] [zone]
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<java.lang.String> autoZoneExcludeZoneUris;
46+
3347
/**
3448
* Optional. Confidential Instance Config for clusters using Confidential VMs
3549
* (https://cloud.google.com/compute/confidential-vm/docs).
@@ -169,6 +183,37 @@ public final class GceClusterConfig extends com.google.api.client.json.GenericJs
169183
@com.google.api.client.util.Key
170184
private java.lang.String zoneUri;
171185

186+
/**
187+
* Optional. An optional list of Compute Engine zones where the Dataproc cluster will not be
188+
* located when Auto Zone is enabled. Only one of zone_uri or auto_zone_exclude_zone_uris can be
189+
* set. If both are omitted, the service will pick a zone in the cluster Compute Engine region. If
190+
* auto_zone_exclude_zone_uris is set and there is more than one non-excluded zone, the service
191+
* will pick one of the non-excluded zones. Otherwise, cluster creation will fail with
192+
* INVALID_ARGUMENT error.A full URL, partial URI, or short name are valid. Examples:
193+
* https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone]
194+
* projects/[project_id]/zones/[zone] [zone]
195+
* @return value or {@code null} for none
196+
*/
197+
public java.util.List<java.lang.String> getAutoZoneExcludeZoneUris() {
198+
return autoZoneExcludeZoneUris;
199+
}
200+
201+
/**
202+
* Optional. An optional list of Compute Engine zones where the Dataproc cluster will not be
203+
* located when Auto Zone is enabled. Only one of zone_uri or auto_zone_exclude_zone_uris can be
204+
* set. If both are omitted, the service will pick a zone in the cluster Compute Engine region. If
205+
* auto_zone_exclude_zone_uris is set and there is more than one non-excluded zone, the service
206+
* will pick one of the non-excluded zones. Otherwise, cluster creation will fail with
207+
* INVALID_ARGUMENT error.A full URL, partial URI, or short name are valid. Examples:
208+
* https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone]
209+
* projects/[project_id]/zones/[zone] [zone]
210+
* @param autoZoneExcludeZoneUris autoZoneExcludeZoneUris or {@code null} for none
211+
*/
212+
public GceClusterConfig setAutoZoneExcludeZoneUris(java.util.List<java.lang.String> autoZoneExcludeZoneUris) {
213+
this.autoZoneExcludeZoneUris = autoZoneExcludeZoneUris;
214+
return this;
215+
}
216+
172217
/**
173218
* Optional. Confidential Instance Config for clusters using Confidential VMs
174219
* (https://cloud.google.com/compute/confidential-vm/docs).

clients/google-api-services-dataproc/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-dataproc</artifactId>
11-
<version>v1-rev20251104-2.0.0</version>
12-
<name>Cloud Dataproc API v1-rev20251104-2.0.0</name>
11+
<version>v1-rev20251203-2.0.0</version>
12+
<name>Cloud Dataproc API v1-rev20251203-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dataproc/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-dataproc</artifactId>
25-
<version>v1-rev20251104-2.0.0</version>
25+
<version>v1-rev20251203-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-dataproc:v1-rev20251104-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20251203-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)