Skip to content

Commit 782cd06

Browse files
1 parent 0a7f432 commit 782cd06

File tree

4 files changed

+42
-6
lines changed

4 files changed

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

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ public final class ClusterConfig extends com.google.api.client.json.GenericJson
8484
@com.google.api.client.util.Key
8585
private DataprocMetricConfig dataprocMetricConfig;
8686

87+
/**
88+
* Optional. A Cloud Storage bucket used to collect checkpoint diagnostic data
89+
* (https://cloud.google.com/dataproc/docs/support/diagnose-clusters#checkpoint_diagnostic_data).
90+
* If you do not specify a diagnostic bucket, Cloud Dataproc will use the Dataproc temp bucket to
91+
* collect the checkpoint diagnostic data. This field requires a Cloud Storage bucket name, not a
92+
* gs://... URI to a Cloud Storage bucket.
93+
* The value may be {@code null}.
94+
*/
95+
@com.google.api.client.util.Key
96+
private java.lang.String diagnosticBucket;
97+
8798
/**
8899
* Optional. Encryption settings for the cluster.
89100
* The value may be {@code null}.
@@ -306,6 +317,31 @@ public ClusterConfig setDataprocMetricConfig(DataprocMetricConfig dataprocMetric
306317
return this;
307318
}
308319

320+
/**
321+
* Optional. A Cloud Storage bucket used to collect checkpoint diagnostic data
322+
* (https://cloud.google.com/dataproc/docs/support/diagnose-clusters#checkpoint_diagnostic_data).
323+
* If you do not specify a diagnostic bucket, Cloud Dataproc will use the Dataproc temp bucket to
324+
* collect the checkpoint diagnostic data. This field requires a Cloud Storage bucket name, not a
325+
* gs://... URI to a Cloud Storage bucket.
326+
* @return value or {@code null} for none
327+
*/
328+
public java.lang.String getDiagnosticBucket() {
329+
return diagnosticBucket;
330+
}
331+
332+
/**
333+
* Optional. A Cloud Storage bucket used to collect checkpoint diagnostic data
334+
* (https://cloud.google.com/dataproc/docs/support/diagnose-clusters#checkpoint_diagnostic_data).
335+
* If you do not specify a diagnostic bucket, Cloud Dataproc will use the Dataproc temp bucket to
336+
* collect the checkpoint diagnostic data. This field requires a Cloud Storage bucket name, not a
337+
* gs://... URI to a Cloud Storage bucket.
338+
* @param diagnosticBucket diagnosticBucket or {@code null} for none
339+
*/
340+
public ClusterConfig setDiagnosticBucket(java.lang.String diagnosticBucket) {
341+
this.diagnosticBucket = diagnosticBucket;
342+
return this;
343+
}
344+
309345
/**
310346
* Optional. Encryption settings for the cluster.
311347
* @return value or {@code null} for none

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

0 commit comments

Comments
 (0)