diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/README.md b/clients/google-api-services-dataflow/v1b3/2.0.0/README.md
index aab45a99c63..f63ac68c8b5 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/README.md
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-dataflow
- v1b3-rev20260118-2.0.0
+ v1b3-rev20260213-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260118-2.0.0'
+ implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260213-2.0.0'
}
```
diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/Dataflow.java b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/Dataflow.java
index 2dcf6a3dd8f..3926d7f4b2d 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/Dataflow.java
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/Dataflow.java
@@ -103,7 +103,7 @@ public class Dataflow extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
*
Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
*
* @param jsonFactory JSON factory, which may be:
@@ -8260,8 +8260,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
- *
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
* @param jsonFactory JSON factory, which may be:
*
diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/GetWorkerStacktracesRequest.java b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/GetWorkerStacktracesRequest.java
index 8ea1ff0352d..b1c13fc1b33 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/GetWorkerStacktracesRequest.java
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/GetWorkerStacktracesRequest.java
@@ -29,6 +29,14 @@
@SuppressWarnings("javadoc")
public final class GetWorkerStacktracesRequest extends com.google.api.client.json.GenericJson {
+ /**
+ * The end time for the stacktrace query. The returned stacktraces will be a recent stack trace at
+ * or shortly before this time.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private String endTime;
+
/**
* The worker for which to get stacktraces. The returned stacktraces will be for the SDK harness
* running on this worker.
@@ -37,6 +45,25 @@ public final class GetWorkerStacktracesRequest extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String workerId;
+ /**
+ * The end time for the stacktrace query. The returned stacktraces will be a recent stack trace at
+ * or shortly before this time.
+ * @return value or {@code null} for none
+ */
+ public String getEndTime() {
+ return endTime;
+ }
+
+ /**
+ * The end time for the stacktrace query. The returned stacktraces will be a recent stack trace at
+ * or shortly before this time.
+ * @param endTime endTime or {@code null} for none
+ */
+ public GetWorkerStacktracesRequest setEndTime(String endTime) {
+ this.endTime = endTime;
+ return this;
+ }
+
/**
* The worker for which to get stacktraces. The returned stacktraces will be for the SDK harness
* running on this worker.
diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Job.java b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Job.java
index 2b27145317b..79eced1236d 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Job.java
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Job.java
@@ -133,6 +133,13 @@ public final class Job extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String name;
+ /**
+ * Output only. Indicates whether the job can be paused.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean pausable;
+
/**
* Preliminary field: The format of this data may change at any time. A description of the user
* 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) {
return this;
}
+ /**
+ * Output only. Indicates whether the job can be paused.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Boolean getPausable() {
+ return pausable;
+ }
+
+ /**
+ * Output only. Indicates whether the job can be paused.
+ * @param pausable pausable or {@code null} for none
+ */
+ public Job setPausable(java.lang.Boolean pausable) {
+ this.pausable = pausable;
+ return this;
+ }
+
/**
* Preliminary field: The format of this data may change at any time. A description of the user
* pipeline and stages through which it is executed. Created by Cloud Dataflow service. Only
diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/RuntimeUpdatableParams.java b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/RuntimeUpdatableParams.java
index 88b11ff749f..e30dd11c4ba 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/RuntimeUpdatableParams.java
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/RuntimeUpdatableParams.java
@@ -31,13 +31,21 @@
public final class RuntimeUpdatableParams extends com.google.api.client.json.GenericJson {
/**
- * Optional. The backlog threshold duration in seconds for autoscaling. Value must be non-
- * negative.
+ * Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
+ * for autoscaling. Value must be non-negative.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String acceptableBacklogDuration;
+ /**
+ * Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
+ * "medium-latency", or "high-latency".
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String autoscalingTier;
+
/**
* The maximum number of workers to cap autoscaling at. This field is currently only supported for
* Streaming Engine jobs.
@@ -65,8 +73,8 @@ public final class RuntimeUpdatableParams extends com.google.api.client.json.Gen
private java.lang.Double workerUtilizationHint;
/**
- * Optional. The backlog threshold duration in seconds for autoscaling. Value must be non-
- * negative.
+ * Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
+ * for autoscaling. Value must be non-negative.
* @return value or {@code null} for none
*/
public String getAcceptableBacklogDuration() {
@@ -74,8 +82,8 @@ public String getAcceptableBacklogDuration() {
}
/**
- * Optional. The backlog threshold duration in seconds for autoscaling. Value must be non-
- * negative.
+ * Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
+ * for autoscaling. Value must be non-negative.
* @param acceptableBacklogDuration acceptableBacklogDuration or {@code null} for none
*/
public RuntimeUpdatableParams setAcceptableBacklogDuration(String acceptableBacklogDuration) {
@@ -83,6 +91,25 @@ public RuntimeUpdatableParams setAcceptableBacklogDuration(String acceptableBack
return this;
}
+ /**
+ * Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
+ * "medium-latency", or "high-latency".
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getAutoscalingTier() {
+ return autoscalingTier;
+ }
+
+ /**
+ * Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
+ * "medium-latency", or "high-latency".
+ * @param autoscalingTier autoscalingTier or {@code null} for none
+ */
+ public RuntimeUpdatableParams setAutoscalingTier(java.lang.String autoscalingTier) {
+ this.autoscalingTier = autoscalingTier;
+ return this;
+ }
+
/**
* The maximum number of workers to cap autoscaling at. This field is currently only supported for
* Streaming Engine jobs.
diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/WorkerPool.java b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/WorkerPool.java
index 45543becb92..985807840dc 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/WorkerPool.java
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/WorkerPool.java
@@ -60,6 +60,20 @@ public final class WorkerPool extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String defaultPackageSet;
+ /**
+ * Optional. IOPS provisioned for the root disk for VMs.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key @com.google.api.client.json.JsonString
+ private java.lang.Long diskProvisionedIops;
+
+ /**
+ * Optional. Throughput provisioned for the root disk for VMs.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key @com.google.api.client.json.JsonString
+ private java.lang.Long diskProvisionedThroughputMibps;
+
/**
* Size of root disk for VMs, in GB. If zero or unspecified, the service will attempt to choose a
* reasonable default.
@@ -280,6 +294,40 @@ public WorkerPool setDefaultPackageSet(java.lang.String defaultPackageSet) {
return this;
}
+ /**
+ * Optional. IOPS provisioned for the root disk for VMs.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Long getDiskProvisionedIops() {
+ return diskProvisionedIops;
+ }
+
+ /**
+ * Optional. IOPS provisioned for the root disk for VMs.
+ * @param diskProvisionedIops diskProvisionedIops or {@code null} for none
+ */
+ public WorkerPool setDiskProvisionedIops(java.lang.Long diskProvisionedIops) {
+ this.diskProvisionedIops = diskProvisionedIops;
+ return this;
+ }
+
+ /**
+ * Optional. Throughput provisioned for the root disk for VMs.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Long getDiskProvisionedThroughputMibps() {
+ return diskProvisionedThroughputMibps;
+ }
+
+ /**
+ * Optional. Throughput provisioned for the root disk for VMs.
+ * @param diskProvisionedThroughputMibps diskProvisionedThroughputMibps or {@code null} for none
+ */
+ public WorkerPool setDiskProvisionedThroughputMibps(java.lang.Long diskProvisionedThroughputMibps) {
+ this.diskProvisionedThroughputMibps = diskProvisionedThroughputMibps;
+ return this;
+ }
+
/**
* Size of root disk for VMs, in GB. If zero or unspecified, the service will attempt to choose a
* reasonable default.
diff --git a/clients/google-api-services-dataflow/v1b3/2.0.0/pom.xml b/clients/google-api-services-dataflow/v1b3/2.0.0/pom.xml
index e8d0b130596..66a5542a670 100644
--- a/clients/google-api-services-dataflow/v1b3/2.0.0/pom.xml
+++ b/clients/google-api-services-dataflow/v1b3/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-dataflow
- v1b3-rev20260118-2.0.0
- Dataflow API v1b3-rev20260118-2.0.0
+ v1b3-rev20260213-2.0.0
+ Dataflow API v1b3-rev20260213-2.0.0
jar
2011
diff --git a/clients/google-api-services-dataflow/v1b3/README.md b/clients/google-api-services-dataflow/v1b3/README.md
index aab45a99c63..f63ac68c8b5 100644
--- a/clients/google-api-services-dataflow/v1b3/README.md
+++ b/clients/google-api-services-dataflow/v1b3/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-dataflow
- v1b3-rev20260118-2.0.0
+ v1b3-rev20260213-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260118-2.0.0'
+ implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260213-2.0.0'
}
```