Skip to content

Commit 99410cf

Browse files
1 parent ea15885 commit 99410cf

File tree

5 files changed

+131
-6
lines changed

5 files changed

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

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

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12699,6 +12699,22 @@ public SummarizeJobs setName(java.lang.String name) {
1269912699
return this;
1270012700
}
1270112701

12702+
/** Optional. List of Job IDs to filter by if provided. */
12703+
@com.google.api.client.util.Key
12704+
private java.util.List<java.lang.Long> jobIds;
12705+
12706+
/** Optional. List of Job IDs to filter by if provided.
12707+
*/
12708+
public java.util.List<java.lang.Long> getJobIds() {
12709+
return jobIds;
12710+
}
12711+
12712+
/** Optional. List of Job IDs to filter by if provided. */
12713+
public SummarizeJobs setJobIds(java.util.List<java.lang.Long> jobIds) {
12714+
this.jobIds = jobIds;
12715+
return this;
12716+
}
12717+
1270212718
/** Required. Parent (Session) resource reference. */
1270312719
@com.google.api.client.util.Key
1270412720
private java.lang.String parent;
@@ -13084,6 +13100,22 @@ public SummarizeStages setParent(java.lang.String parent) {
1308413100
return this;
1308513101
}
1308613102

13103+
/** Optional. List of Stage IDs to filter by if provided. */
13104+
@com.google.api.client.util.Key
13105+
private java.util.List<java.lang.Long> stageIds;
13106+
13107+
/** Optional. List of Stage IDs to filter by if provided.
13108+
*/
13109+
public java.util.List<java.lang.Long> getStageIds() {
13110+
return stageIds;
13111+
}
13112+
13113+
/** Optional. List of Stage IDs to filter by if provided. */
13114+
public SummarizeStages setStageIds(java.util.List<java.lang.Long> stageIds) {
13115+
this.stageIds = stageIds;
13116+
return this;
13117+
}
13118+
1308713119
@Override
1308813120
public SummarizeStages set(String parameterName, Object value) {
1308913121
return (SummarizeStages) super.set(parameterName, value);

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

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,24 @@ public final class LifecycleConfig extends com.google.api.client.json.GenericJso
4646
@com.google.api.client.util.Key
4747
private String autoDeleteTtl;
4848

49+
/**
50+
* Optional. The time when cluster will be auto-stopped (see JSON representation of Timestamp
51+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private String autoStopTime;
56+
57+
/**
58+
* Optional. The lifetime duration of the cluster. The cluster will be auto-stopped at the end of
59+
* this period, calculated from the time of submission of the create or update cluster request.
60+
* Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration
61+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private String autoStopTtl;
66+
4967
/**
5068
* Optional. The duration to keep the cluster alive while idling (when no jobs are running).
5169
* Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes;
@@ -65,6 +83,16 @@ public final class LifecycleConfig extends com.google.api.client.json.GenericJso
6583
@com.google.api.client.util.Key
6684
private String idleStartTime;
6785

86+
/**
87+
* Optional. The duration to keep the cluster started while idling (when no jobs are running).
88+
* Passing this threshold will cause the cluster to be stopped. Minimum value is 5 minutes;
89+
* maximum value is 14 days (see JSON representation of Duration
90+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
91+
* The value may be {@code null}.
92+
*/
93+
@com.google.api.client.util.Key
94+
private String idleStopTtl;
95+
6896
/**
6997
* Optional. The time when cluster will be auto-deleted (see JSON representation of Timestamp
7098
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
@@ -105,6 +133,48 @@ public LifecycleConfig setAutoDeleteTtl(String autoDeleteTtl) {
105133
return this;
106134
}
107135

136+
/**
137+
* Optional. The time when cluster will be auto-stopped (see JSON representation of Timestamp
138+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
139+
* @return value or {@code null} for none
140+
*/
141+
public String getAutoStopTime() {
142+
return autoStopTime;
143+
}
144+
145+
/**
146+
* Optional. The time when cluster will be auto-stopped (see JSON representation of Timestamp
147+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
148+
* @param autoStopTime autoStopTime or {@code null} for none
149+
*/
150+
public LifecycleConfig setAutoStopTime(String autoStopTime) {
151+
this.autoStopTime = autoStopTime;
152+
return this;
153+
}
154+
155+
/**
156+
* Optional. The lifetime duration of the cluster. The cluster will be auto-stopped at the end of
157+
* this period, calculated from the time of submission of the create or update cluster request.
158+
* Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration
159+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
160+
* @return value or {@code null} for none
161+
*/
162+
public String getAutoStopTtl() {
163+
return autoStopTtl;
164+
}
165+
166+
/**
167+
* Optional. The lifetime duration of the cluster. The cluster will be auto-stopped at the end of
168+
* this period, calculated from the time of submission of the create or update cluster request.
169+
* Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration
170+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
171+
* @param autoStopTtl autoStopTtl or {@code null} for none
172+
*/
173+
public LifecycleConfig setAutoStopTtl(String autoStopTtl) {
174+
this.autoStopTtl = autoStopTtl;
175+
return this;
176+
}
177+
108178
/**
109179
* Optional. The duration to keep the cluster alive while idling (when no jobs are running).
110180
* Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes;
@@ -149,6 +219,29 @@ public LifecycleConfig setIdleStartTime(String idleStartTime) {
149219
return this;
150220
}
151221

222+
/**
223+
* Optional. The duration to keep the cluster started while idling (when no jobs are running).
224+
* Passing this threshold will cause the cluster to be stopped. Minimum value is 5 minutes;
225+
* maximum value is 14 days (see JSON representation of Duration
226+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
227+
* @return value or {@code null} for none
228+
*/
229+
public String getIdleStopTtl() {
230+
return idleStopTtl;
231+
}
232+
233+
/**
234+
* Optional. The duration to keep the cluster started while idling (when no jobs are running).
235+
* Passing this threshold will cause the cluster to be stopped. Minimum value is 5 minutes;
236+
* maximum value is 14 days (see JSON representation of Duration
237+
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
238+
* @param idleStopTtl idleStopTtl or {@code null} for none
239+
*/
240+
public LifecycleConfig setIdleStopTtl(String idleStopTtl) {
241+
this.idleStopTtl = idleStopTtl;
242+
return this;
243+
}
244+
152245
@Override
153246
public LifecycleConfig set(String fieldName, Object value) {
154247
return (LifecycleConfig) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)