Skip to content

Commit ef7df3f

Browse files
1 parent b38766b commit ef7df3f

16 files changed

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

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

Lines changed: 2735 additions & 3877 deletions
Large diffs are not rendered by default.

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

Lines changed: 0 additions & 66 deletions
This file was deleted.

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

Lines changed: 0 additions & 66 deletions
This file was deleted.

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

Lines changed: 0 additions & 66 deletions
This file was deleted.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ public final class AutoscalingPolicy extends com.google.api.client.json.GenericJ
3535
@com.google.api.client.util.Key
3636
private BasicAutoscalingAlgorithm basicAlgorithm;
3737

38+
/**
39+
* Optional. The type of the clusters for which this autoscaling policy is to be configured.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String clusterType;
44+
3845
/**
3946
* Required. The policy id.The id must contain only letters (a-z, A-Z), numbers (0-9), underscores
4047
* (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3
@@ -96,6 +103,23 @@ public AutoscalingPolicy setBasicAlgorithm(BasicAutoscalingAlgorithm basicAlgori
96103
return this;
97104
}
98105

106+
/**
107+
* Optional. The type of the clusters for which this autoscaling policy is to be configured.
108+
* @return value or {@code null} for none
109+
*/
110+
public java.lang.String getClusterType() {
111+
return clusterType;
112+
}
113+
114+
/**
115+
* Optional. The type of the clusters for which this autoscaling policy is to be configured.
116+
* @param clusterType clusterType or {@code null} for none
117+
*/
118+
public AutoscalingPolicy setClusterType(java.lang.String clusterType) {
119+
this.clusterType = clusterType;
120+
return this;
121+
}
122+
99123
/**
100124
* Required. The policy id.The id must contain only letters (a-z, A-Z), numbers (0-9), underscores
101125
* (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ClusterConfig extends com.google.api.client.json.GenericJson
5050
com.google.api.client.util.Data.nullOf(AuxiliaryNodeGroup.class);
5151
}
5252

53+
/**
54+
* Optional. The type of the cluster.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String clusterType;
59+
5360
/**
5461
* Optional. A Cloud Storage bucket used to stage job dependencies, config files, and job driver
5562
* console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud
@@ -212,6 +219,23 @@ public ClusterConfig setAuxiliaryNodeGroups(java.util.List<AuxiliaryNodeGroup> a
212219
return this;
213220
}
214221

222+
/**
223+
* Optional. The type of the cluster.
224+
* @return value or {@code null} for none
225+
*/
226+
public java.lang.String getClusterType() {
227+
return clusterType;
228+
}
229+
230+
/**
231+
* Optional. The type of the cluster.
232+
* @param clusterType clusterType or {@code null} for none
233+
*/
234+
public ClusterConfig setClusterType(java.lang.String clusterType) {
235+
this.clusterType = clusterType;
236+
return this;
237+
}
238+
215239
/**
216240
* Optional. A Cloud Storage bucket used to stage job dependencies, config files, and job driver
217241
* console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.dataproc.model;
1818

1919
/**
20-
* Specifies the config of disk options for a group of VM instances.
20+
* Specifies the config of boot disk and attached disk options for a group of VM instances.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Cloud Dataproc API. For a detailed explanation see:

0 commit comments

Comments
 (0)