Skip to content

Commit 2e58c6b

Browse files
1 parent 21edd3d commit 2e58c6b

File tree

5 files changed

+54
-99
lines changed

5 files changed

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

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11195,6 +11195,22 @@ public SearchJobs setName(java.lang.String name) {
1119511195
return this;
1119611196
}
1119711197

11198+
/** Optional. List of Job IDs to filter by if provided. */
11199+
@com.google.api.client.util.Key
11200+
private java.util.List<java.lang.Long> jobIds;
11201+
11202+
/** Optional. List of Job IDs to filter by if provided.
11203+
*/
11204+
public java.util.List<java.lang.Long> getJobIds() {
11205+
return jobIds;
11206+
}
11207+
11208+
/** Optional. List of Job IDs to filter by if provided. */
11209+
public SearchJobs setJobIds(java.util.List<java.lang.Long> jobIds) {
11210+
this.jobIds = jobIds;
11211+
return this;
11212+
}
11213+
1119811214
/** Optional. List only jobs in the specific state. */
1119911215
@com.google.api.client.util.Key
1120011216
private java.lang.String jobStatus;
@@ -11447,6 +11463,22 @@ public SearchSqlQueries setDetails(java.lang.Boolean details) {
1144711463
return this;
1144811464
}
1144911465

11466+
/** Optional. List of Spark Connect operation IDs to filter by if provided. */
11467+
@com.google.api.client.util.Key
11468+
private java.util.List<java.lang.String> operationIds;
11469+
11470+
/** Optional. List of Spark Connect operation IDs to filter by if provided.
11471+
*/
11472+
public java.util.List<java.lang.String> getOperationIds() {
11473+
return operationIds;
11474+
}
11475+
11476+
/** Optional. List of Spark Connect operation IDs to filter by if provided. */
11477+
public SearchSqlQueries setOperationIds(java.util.List<java.lang.String> operationIds) {
11478+
this.operationIds = operationIds;
11479+
return this;
11480+
}
11481+
1145011482
/**
1145111483
* Optional. Maximum number of queries to return in each response. The service may
1145211484
* return fewer than this. The default page size is 10; the maximum page size is 100.
@@ -12287,6 +12319,22 @@ public SearchStages setParent(java.lang.String parent) {
1228712319
return this;
1228812320
}
1228912321

12322+
/** Optional. List of Stage IDs to filter by if provided. */
12323+
@com.google.api.client.util.Key
12324+
private java.util.List<java.lang.Long> stageIds;
12325+
12326+
/** Optional. List of Stage IDs to filter by if provided.
12327+
*/
12328+
public java.util.List<java.lang.Long> getStageIds() {
12329+
return stageIds;
12330+
}
12331+
12332+
/** Optional. List of Stage IDs to filter by if provided. */
12333+
public SearchStages setStageIds(java.util.List<java.lang.Long> stageIds) {
12334+
this.stageIds = stageIds;
12335+
return this;
12336+
}
12337+
1229012338
/** Optional. List only stages in the given state. */
1229112339
@com.google.api.client.util.Key
1229212340
private java.lang.String stageStatus;

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

Lines changed: 0 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -46,24 +46,6 @@ 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-
6749
/**
6850
* Optional. The duration to keep the cluster alive while idling (when no jobs are running).
6951
* Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes;
@@ -83,16 +65,6 @@ public final class LifecycleConfig extends com.google.api.client.json.GenericJso
8365
@com.google.api.client.util.Key
8466
private String idleStartTime;
8567

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-
9668
/**
9769
* Optional. The time when cluster will be auto-deleted (see JSON representation of Timestamp
9870
* (https://developers.google.com/protocol-buffers/docs/proto3#json)).
@@ -133,48 +105,6 @@ public LifecycleConfig setAutoDeleteTtl(String autoDeleteTtl) {
133105
return this;
134106
}
135107

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-
178108
/**
179109
* Optional. The duration to keep the cluster alive while idling (when no jobs are running).
180110
* Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes;
@@ -219,29 +149,6 @@ public LifecycleConfig setIdleStartTime(String idleStartTime) {
219149
return this;
220150
}
221151

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-
245152
@Override
246153
public LifecycleConfig set(String fieldName, Object value) {
247154
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-rev20250513-2.0.0</version>
12-
<name>Cloud Dataproc API v1-rev20250513-2.0.0</name>
11+
<version>v1-rev20250521-2.0.0</version>
12+
<name>Cloud Dataproc API v1-rev20250521-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-rev20250513-2.0.0</version>
25+
<version>v1-rev20250521-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-rev20250513-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20250521-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)