Skip to content

Commit 8752f1a

Browse files
1 parent 0dda249 commit 8752f1a

File tree

6 files changed

+55
-7
lines changed

6 files changed

+55
-7
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-rev20250131-2.0.0</version>
25+
<version>v1b3-rev20250310-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-rev20250131-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20250310-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class FlexTemplateRuntimeEnvironment extends com.google.api.client.
3636
@com.google.api.client.util.Key
3737
private java.util.List<java.lang.String> additionalExperiments;
3838

39+
/**
40+
* Optional. Additional pipeline option flags for the job.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<java.lang.String> additionalPipelineOptions;
45+
3946
/**
4047
* Additional user labels to be specified for the job. Keys and values must follow the
4148
* restrictions specified in the [labeling
@@ -252,6 +259,23 @@ public FlexTemplateRuntimeEnvironment setAdditionalExperiments(java.util.List<ja
252259
return this;
253260
}
254261

262+
/**
263+
* Optional. Additional pipeline option flags for the job.
264+
* @return value or {@code null} for none
265+
*/
266+
public java.util.List<java.lang.String> getAdditionalPipelineOptions() {
267+
return additionalPipelineOptions;
268+
}
269+
270+
/**
271+
* Optional. Additional pipeline option flags for the job.
272+
* @param additionalPipelineOptions additionalPipelineOptions or {@code null} for none
273+
*/
274+
public FlexTemplateRuntimeEnvironment setAdditionalPipelineOptions(java.util.List<java.lang.String> additionalPipelineOptions) {
275+
this.additionalPipelineOptions = additionalPipelineOptions;
276+
return this;
277+
}
278+
255279
/**
256280
* Additional user labels to be specified for the job. Keys and values must follow the
257281
* restrictions specified in the [labeling

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.dataflow.model;
1818

1919
/**
20-
* Describes the state of a metric. Next ID: 14
20+
* Describes the state of a metric.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Dataflow API. For a detailed explanation see:

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class RuntimeEnvironment extends com.google.api.client.json.Generic
3636
@com.google.api.client.util.Key
3737
private java.util.List<java.lang.String> additionalExperiments;
3838

39+
/**
40+
* Optional. Additional pipeline option flags for the job.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<java.lang.String> additionalPipelineOptions;
45+
3946
/**
4047
* Optional. Additional user labels to be specified for the job. Keys and values should follow the
4148
* restrictions specified in the [labeling
@@ -200,6 +207,23 @@ public RuntimeEnvironment setAdditionalExperiments(java.util.List<java.lang.Stri
200207
return this;
201208
}
202209

210+
/**
211+
* Optional. Additional pipeline option flags for the job.
212+
* @return value or {@code null} for none
213+
*/
214+
public java.util.List<java.lang.String> getAdditionalPipelineOptions() {
215+
return additionalPipelineOptions;
216+
}
217+
218+
/**
219+
* Optional. Additional pipeline option flags for the job.
220+
* @param additionalPipelineOptions additionalPipelineOptions or {@code null} for none
221+
*/
222+
public RuntimeEnvironment setAdditionalPipelineOptions(java.util.List<java.lang.String> additionalPipelineOptions) {
223+
this.additionalPipelineOptions = additionalPipelineOptions;
224+
return this;
225+
}
226+
203227
/**
204228
* Optional. Additional user labels to be specified for the job. Keys and values should follow the
205229
* restrictions specified in the [labeling

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

0 commit comments

Comments
 (0)