Skip to content

Commit 629368b

Browse files
1 parent 4d23a08 commit 629368b

8 files changed

Lines changed: 108 additions & 12 deletions

File tree

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

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

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17761,33 +17761,49 @@ public List setFilter(java.lang.String filter) {
1776117761
return this;
1776217762
}
1776317763

17764-
/** Optional. The standard List page size. */
17764+
/**
17765+
* Optional. The maximum number of clusters to return in each response. The service may
17766+
* return fewer than this value. If unspecified, the default value is 200. The maximum
17767+
* value is 1000.
17768+
*/
1776517769
@com.google.api.client.util.Key
1776617770
private java.lang.Integer pageSize;
1776717771

17768-
/** Optional. The standard List page size.
17772+
/** Optional. The maximum number of clusters to return in each response. The service may return fewer
17773+
than this value. If unspecified, the default value is 200. The maximum value is 1000.
1776917774
*/
1777017775
public java.lang.Integer getPageSize() {
1777117776
return pageSize;
1777217777
}
1777317778

17774-
/** Optional. The standard List page size. */
17779+
/**
17780+
* Optional. The maximum number of clusters to return in each response. The service may
17781+
* return fewer than this value. If unspecified, the default value is 200. The maximum
17782+
* value is 1000.
17783+
*/
1777517784
public List setPageSize(java.lang.Integer pageSize) {
1777617785
this.pageSize = pageSize;
1777717786
return this;
1777817787
}
1777917788

17780-
/** Optional. The standard List page token. */
17789+
/**
17790+
* Optional. A page token received from a previous ListClusters call. Provide this token
17791+
* to retrieve the subsequent page.
17792+
*/
1778117793
@com.google.api.client.util.Key
1778217794
private java.lang.String pageToken;
1778317795

17784-
/** Optional. The standard List page token.
17796+
/** Optional. A page token received from a previous ListClusters call. Provide this token to retrieve
17797+
the subsequent page.
1778517798
*/
1778617799
public java.lang.String getPageToken() {
1778717800
return pageToken;
1778817801
}
1778917802

17790-
/** Optional. The standard List page token. */
17803+
/**
17804+
* Optional. A page token received from a previous ListClusters call. Provide this token
17805+
* to retrieve the subsequent page.
17806+
*/
1779117807
public List setPageToken(java.lang.String pageToken) {
1779217808
this.pageToken = pageToken;
1779317809
return this;

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ public class DataprocScopes {
2626
/** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */
2727
public static final String CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform";
2828

29+
/** See, edit, configure, and delete your Google Cloud Dataproc data and see the email address for your Google Account. */
30+
public static final String DATAPROC = "https://www.googleapis.com/auth/dataproc";
31+
32+
/** See your Google Cloud Dataproc data and the email address of your Google Account. */
33+
public static final String DATAPROC_READ_ONLY = "https://www.googleapis.com/auth/dataproc.read-only";
34+
2935
/**
3036
* Returns an unmodifiable set that contains all scopes declared by this class.
3137
*
@@ -34,6 +40,8 @@ public class DataprocScopes {
3440
public static java.util.Set<String> all() {
3541
java.util.Set<String> set = new java.util.HashSet<String>();
3642
set.add(CLOUD_PLATFORM);
43+
set.add(DATAPROC);
44+
set.add(DATAPROC_READ_ONLY);
3745
return java.util.Collections.unmodifiableSet(set);
3846
}
3947

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
@@ -109,6 +109,13 @@ public final class ClusterConfig extends com.google.api.client.json.GenericJson
109109
@com.google.api.client.util.Key
110110
private EndpointConfig endpointConfig;
111111

112+
/**
113+
* Optional. The cluster engine.
114+
* The value may be {@code null}.
115+
*/
116+
@com.google.api.client.util.Key
117+
private java.lang.String engine;
118+
112119
/**
113120
* Optional. The shared Compute Engine config settings for all instances in a cluster.
114121
* The value may be {@code null}.
@@ -376,6 +383,23 @@ public ClusterConfig setEndpointConfig(EndpointConfig endpointConfig) {
376383
return this;
377384
}
378385

386+
/**
387+
* Optional. The cluster engine.
388+
* @return value or {@code null} for none
389+
*/
390+
public java.lang.String getEngine() {
391+
return engine;
392+
}
393+
394+
/**
395+
* Optional. The cluster engine.
396+
* @param engine engine or {@code null} for none
397+
*/
398+
public ClusterConfig setEngine(java.lang.String engine) {
399+
this.engine = engine;
400+
return this;
401+
}
402+
379403
/**
380404
* Optional. The shared Compute Engine config settings for all instances in a cluster.
381405
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ public final class SparkPlanGraphCluster extends com.google.api.client.json.Gene
3535
@com.google.api.client.util.Key
3636
private java.lang.String desc;
3737

38+
/**
39+
* Optional. Additional metadata for the spark plan graph cluster.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.util.Map<String, java.lang.String> metadata;
44+
3845
/**
3946
* The value may be {@code null}.
4047
*/
@@ -74,6 +81,23 @@ public SparkPlanGraphCluster setDesc(java.lang.String desc) {
7481
return this;
7582
}
7683

84+
/**
85+
* Optional. Additional metadata for the spark plan graph cluster.
86+
* @return value or {@code null} for none
87+
*/
88+
public java.util.Map<String, java.lang.String> getMetadata() {
89+
return metadata;
90+
}
91+
92+
/**
93+
* Optional. Additional metadata for the spark plan graph cluster.
94+
* @param metadata metadata or {@code null} for none
95+
*/
96+
public SparkPlanGraphCluster setMetadata(java.util.Map<String, java.lang.String> metadata) {
97+
this.metadata = metadata;
98+
return this;
99+
}
100+
77101
/**
78102
* @return value or {@code null} for none
79103
*/

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ public final class SparkPlanGraphNode extends com.google.api.client.json.Generic
3535
@com.google.api.client.util.Key
3636
private java.lang.String desc;
3737

38+
/**
39+
* Optional. Additional metadata for the spark plan graph cluster.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.util.Map<String, java.lang.String> metadata;
44+
3845
/**
3946
* The value may be {@code null}.
4047
*/
@@ -68,6 +75,23 @@ public SparkPlanGraphNode setDesc(java.lang.String desc) {
6875
return this;
6976
}
7077

78+
/**
79+
* Optional. Additional metadata for the spark plan graph cluster.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.util.Map<String, java.lang.String> getMetadata() {
83+
return metadata;
84+
}
85+
86+
/**
87+
* Optional. Additional metadata for the spark plan graph cluster.
88+
* @param metadata metadata or {@code null} for none
89+
*/
90+
public SparkPlanGraphNode setMetadata(java.util.Map<String, java.lang.String> metadata) {
91+
this.metadata = metadata;
92+
return this;
93+
}
94+
7195
/**
7296
* @return value or {@code null} for none
7397
*/

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

0 commit comments

Comments
 (0)