Skip to content

Commit cdc9ed8

Browse files
1 parent 589e667 commit cdc9ed8

5 files changed

Lines changed: 50 additions & 20 deletions

File tree

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

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ public final class FlexTemplateRuntimeEnvironment extends com.google.api.client.
116116
private java.lang.String kmsKeyName;
117117

118118
/**
119-
* The machine type to use for launching the job. The default is n1-standard-1.
119+
* The machine type to use for launching the job. If not set, Dataflow will select a default
120+
* machine type.
120121
* The value may be {@code null}.
121122
*/
122123
@com.google.api.client.util.Key
@@ -448,15 +449,17 @@ public FlexTemplateRuntimeEnvironment setKmsKeyName(java.lang.String kmsKeyName)
448449
}
449450

450451
/**
451-
* The machine type to use for launching the job. The default is n1-standard-1.
452+
* The machine type to use for launching the job. If not set, Dataflow will select a default
453+
* machine type.
452454
* @return value or {@code null} for none
453455
*/
454456
public java.lang.String getLauncherMachineType() {
455457
return launcherMachineType;
456458
}
457459

458460
/**
459-
* The machine type to use for launching the job. The default is n1-standard-1.
461+
* The machine type to use for launching the job. If not set, Dataflow will select a default
462+
* machine type.
460463
* @param launcherMachineType launcherMachineType or {@code null} for none
461464
*/
462465
public FlexTemplateRuntimeEnvironment setLauncherMachineType(java.lang.String launcherMachineType) {

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

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,28 @@
3131
public final class RuntimeUpdatableParams extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
35-
* for autoscaling. Value must be non-negative.
34+
* Optional. Deprecated: Use `latency_tier` instead. The backlog threshold duration in seconds for
35+
* 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. Deprecated: Use `latency_tier` instead. The backlog threshold tier for autoscaling.
43+
* Value must be one of "low-latency", "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
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
4351
* "medium-latency", or "high-latency".
4452
* The value may be {@code null}.
4553
*/
4654
@com.google.api.client.util.Key
47-
private java.lang.String autoscalingTier;
55+
private java.lang.String latencyTier;
4856

4957
/**
5058
* The maximum number of workers to cap autoscaling at. This field is currently only supported for
@@ -73,17 +81,17 @@ public final class RuntimeUpdatableParams extends com.google.api.client.json.Gen
7381
private java.lang.Double workerUtilizationHint;
7482

7583
/**
76-
* Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
77-
* for autoscaling. Value must be non-negative.
84+
* Optional. Deprecated: Use `latency_tier` instead. The backlog threshold duration in seconds for
85+
* autoscaling. Value must be non-negative.
7886
* @return value or {@code null} for none
7987
*/
8088
public String getAcceptableBacklogDuration() {
8189
return acceptableBacklogDuration;
8290
}
8391

8492
/**
85-
* Optional. Deprecated: Use `autoscaling_tier` instead. The backlog threshold duration in seconds
86-
* for autoscaling. Value must be non-negative.
93+
* Optional. Deprecated: Use `latency_tier` instead. The backlog threshold duration in seconds for
94+
* autoscaling. Value must be non-negative.
8795
* @param acceptableBacklogDuration acceptableBacklogDuration or {@code null} for none
8896
*/
8997
public RuntimeUpdatableParams setAcceptableBacklogDuration(String acceptableBacklogDuration) {
@@ -92,24 +100,43 @@ public RuntimeUpdatableParams setAcceptableBacklogDuration(String acceptableBack
92100
}
93101

94102
/**
95-
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
96-
* "medium-latency", or "high-latency".
103+
* Optional. Deprecated: Use `latency_tier` instead. The backlog threshold tier for autoscaling.
104+
* Value must be one of "low-latency", "medium-latency", or "high-latency".
97105
* @return value or {@code null} for none
98106
*/
99107
public java.lang.String getAutoscalingTier() {
100108
return autoscalingTier;
101109
}
102110

103111
/**
104-
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
105-
* "medium-latency", or "high-latency".
112+
* Optional. Deprecated: Use `latency_tier` instead. The backlog threshold tier for autoscaling.
113+
* Value must be one of "low-latency", "medium-latency", or "high-latency".
106114
* @param autoscalingTier autoscalingTier or {@code null} for none
107115
*/
108116
public RuntimeUpdatableParams setAutoscalingTier(java.lang.String autoscalingTier) {
109117
this.autoscalingTier = autoscalingTier;
110118
return this;
111119
}
112120

121+
/**
122+
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
123+
* "medium-latency", or "high-latency".
124+
* @return value or {@code null} for none
125+
*/
126+
public java.lang.String getLatencyTier() {
127+
return latencyTier;
128+
}
129+
130+
/**
131+
* Optional. The backlog threshold tier for autoscaling. Value must be one of "low-latency",
132+
* "medium-latency", or "high-latency".
133+
* @param latencyTier latencyTier or {@code null} for none
134+
*/
135+
public RuntimeUpdatableParams setLatencyTier(java.lang.String latencyTier) {
136+
this.latencyTier = latencyTier;
137+
return this;
138+
}
139+
113140
/**
114141
* The maximum number of workers to cap autoscaling at. This field is currently only supported for
115142
* Streaming Engine jobs.

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-rev20260213-2.0.0</version>
12-
<name>Dataflow API v1b3-rev20260213-2.0.0</name>
11+
<version>v1b3-rev20260405-2.0.0</version>
12+
<name>Dataflow API v1b3-rev20260405-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-rev20260213-2.0.0</version>
25+
<version>v1b3-rev20260405-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-rev20260213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20260405-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)