Skip to content

Commit 7dec1fe

Browse files
chore: regenerate dataflow client
1 parent ebb6aa7 commit 7dec1fe

File tree

8 files changed

+140
-15
lines changed

8 files changed

+140
-15
lines changed

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20260118-2.0.0</version>
25+
<version>v1b3-rev20260213-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-dataflow:v1b3-rev20260118-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260213-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/Dataflow.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Dataflow extends com.google.api.client.googleapis.services.json.Abs
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -8260,8 +8260,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
82608260
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
82618261
* <li>Android: {@code newCompatibleTransport} from
82628262
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
8263-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
8264-
* </li>
8263+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
82658264
* </ul>
82668265
* @param jsonFactory JSON factory, which may be:
82678266
* <ul>

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/GetWorkerStacktracesRequest.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GetWorkerStacktracesRequest extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* The end time for the stacktrace query. The returned stacktraces will be a recent stack trace at
34+
* or shortly before this time.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String endTime;
39+
3240
/**
3341
* The worker for which to get stacktraces. The returned stacktraces will be for the SDK harness
3442
* running on this worker.
@@ -37,6 +45,25 @@ public final class GetWorkerStacktracesRequest extends com.google.api.client.jso
3745
@com.google.api.client.util.Key
3846
private java.lang.String workerId;
3947

48+
/**
49+
* The end time for the stacktrace query. The returned stacktraces will be a recent stack trace at
50+
* or shortly before this time.
51+
* @return value or {@code null} for none
52+
*/
53+
public String getEndTime() {
54+
return endTime;
55+
}
56+
57+
/**
58+
* The end time for the stacktrace query. The returned stacktraces will be a recent stack trace at
59+
* or shortly before this time.
60+
* @param endTime endTime or {@code null} for none
61+
*/
62+
public GetWorkerStacktracesRequest setEndTime(String endTime) {
63+
this.endTime = endTime;
64+
return this;
65+
}
66+
4067
/**
4168
* The worker for which to get stacktraces. The returned stacktraces will be for the SDK harness
4269
* running on this worker.

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Job.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,13 @@ public final class Job extends com.google.api.client.json.GenericJson {
133133
@com.google.api.client.util.Key
134134
private java.lang.String name;
135135

136+
/**
137+
* Output only. Indicates whether the job can be paused.
138+
* The value may be {@code null}.
139+
*/
140+
@com.google.api.client.util.Key
141+
private java.lang.Boolean pausable;
142+
136143
/**
137144
* Preliminary field: The format of this data may change at any time. A description of the user
138145
* pipeline and stages through which it is executed. Created by Cloud Dataflow service. Only
@@ -514,6 +521,23 @@ public Job setName(java.lang.String name) {
514521
return this;
515522
}
516523

524+
/**
525+
* Output only. Indicates whether the job can be paused.
526+
* @return value or {@code null} for none
527+
*/
528+
public java.lang.Boolean getPausable() {
529+
return pausable;
530+
}
531+
532+
/**
533+
* Output only. Indicates whether the job can be paused.
534+
* @param pausable pausable or {@code null} for none
535+
*/
536+
public Job setPausable(java.lang.Boolean pausable) {
537+
this.pausable = pausable;
538+
return this;
539+
}
540+
517541
/**
518542
* Preliminary field: The format of this data may change at any time. A description of the user
519543
* pipeline and stages through which it is executed. Created by Cloud Dataflow service. Only

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/RuntimeUpdatableParams.java

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,21 @@
3131
public final class RuntimeUpdatableParams extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Optional. The backlog threshold duration in seconds for autoscaling. Value must be non-
35-
* negative.
34+
* Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
35+
* for autoscaling. Value must be non-negative.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private String acceptableBacklogDuration;
4040

41+
/**
42+
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
43+
* "medium-latency", or "high-latency".
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String autoscalingTier;
48+
4149
/**
4250
* The maximum number of workers to cap autoscaling at. This field is currently only supported for
4351
* Streaming Engine jobs.
@@ -65,24 +73,43 @@ public final class RuntimeUpdatableParams extends com.google.api.client.json.Gen
6573
private java.lang.Double workerUtilizationHint;
6674

6775
/**
68-
* Optional. The backlog threshold duration in seconds for autoscaling. Value must be non-
69-
* negative.
76+
* Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
77+
* for autoscaling. Value must be non-negative.
7078
* @return value or {@code null} for none
7179
*/
7280
public String getAcceptableBacklogDuration() {
7381
return acceptableBacklogDuration;
7482
}
7583

7684
/**
77-
* Optional. The backlog threshold duration in seconds for autoscaling. Value must be non-
78-
* negative.
85+
* Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
86+
* for autoscaling. Value must be non-negative.
7987
* @param acceptableBacklogDuration acceptableBacklogDuration or {@code null} for none
8088
*/
8189
public RuntimeUpdatableParams setAcceptableBacklogDuration(String acceptableBacklogDuration) {
8290
this.acceptableBacklogDuration = acceptableBacklogDuration;
8391
return this;
8492
}
8593

94+
/**
95+
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
96+
* "medium-latency", or "high-latency".
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getAutoscalingTier() {
100+
return autoscalingTier;
101+
}
102+
103+
/**
104+
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
105+
* "medium-latency", or "high-latency".
106+
* @param autoscalingTier autoscalingTier or {@code null} for none
107+
*/
108+
public RuntimeUpdatableParams setAutoscalingTier(java.lang.String autoscalingTier) {
109+
this.autoscalingTier = autoscalingTier;
110+
return this;
111+
}
112+
86113
/**
87114
* The maximum number of workers to cap autoscaling at. This field is currently only supported for
88115
* Streaming Engine jobs.

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/WorkerPool.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,20 @@ public final class WorkerPool extends com.google.api.client.json.GenericJson {
6060
@com.google.api.client.util.Key
6161
private java.lang.String defaultPackageSet;
6262

63+
/**
64+
* Optional. IOPS provisioned for the root disk for VMs.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
68+
private java.lang.Long diskProvisionedIops;
69+
70+
/**
71+
* Optional. Throughput provisioned for the root disk for VMs.
72+
* The value may be {@code null}.
73+
*/
74+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
75+
private java.lang.Long diskProvisionedThroughputMibps;
76+
6377
/**
6478
* Size of root disk for VMs, in GB. If zero or unspecified, the service will attempt to choose a
6579
* reasonable default.
@@ -280,6 +294,40 @@ public WorkerPool setDefaultPackageSet(java.lang.String defaultPackageSet) {
280294
return this;
281295
}
282296

297+
/**
298+
* Optional. IOPS provisioned for the root disk for VMs.
299+
* @return value or {@code null} for none
300+
*/
301+
public java.lang.Long getDiskProvisionedIops() {
302+
return diskProvisionedIops;
303+
}
304+
305+
/**
306+
* Optional. IOPS provisioned for the root disk for VMs.
307+
* @param diskProvisionedIops diskProvisionedIops or {@code null} for none
308+
*/
309+
public WorkerPool setDiskProvisionedIops(java.lang.Long diskProvisionedIops) {
310+
this.diskProvisionedIops = diskProvisionedIops;
311+
return this;
312+
}
313+
314+
/**
315+
* Optional. Throughput provisioned for the root disk for VMs.
316+
* @return value or {@code null} for none
317+
*/
318+
public java.lang.Long getDiskProvisionedThroughputMibps() {
319+
return diskProvisionedThroughputMibps;
320+
}
321+
322+
/**
323+
* Optional. Throughput provisioned for the root disk for VMs.
324+
* @param diskProvisionedThroughputMibps diskProvisionedThroughputMibps or {@code null} for none
325+
*/
326+
public WorkerPool setDiskProvisionedThroughputMibps(java.lang.Long diskProvisionedThroughputMibps) {
327+
this.diskProvisionedThroughputMibps = diskProvisionedThroughputMibps;
328+
return this;
329+
}
330+
283331
/**
284332
* Size of root disk for VMs, in GB. If zero or unspecified, the service will attempt to choose a
285333
* reasonable default.

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
11-
<version>v1b3-rev20260118-2.0.0</version>
12-
<name>Dataflow API v1b3-rev20260118-2.0.0</name>
11+
<version>v1b3-rev20260213-2.0.0</version>
12+
<name>Dataflow API v1b3-rev20260213-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20260118-2.0.0</version>
25+
<version>v1b3-rev20260213-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-dataflow:v1b3-rev20260118-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260213-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)