Skip to content

Commit c771162

Browse files
1 parent 5ed4972 commit c771162

File tree

4 files changed

+36
-6
lines changed

4 files changed

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

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

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

32+
/**
33+
* Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type
34+
* is a BoundedTrieNode. Introduced this field to avoid breaking older SDKs when Dataflow service
35+
* starts to populate the `bounded_trie` field.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Object boundedTrie;
40+
3241
/**
3342
* True if this metric is reported as the total cumulative aggregate value accumulated since the
3443
* worker started working on this WorkItem. By default this is false, indicating that this metric
@@ -127,6 +136,27 @@ public final class MetricUpdate extends com.google.api.client.json.GenericJson {
127136
@com.google.api.client.util.Key
128137
private String updateTime;
129138

139+
/**
140+
* Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type
141+
* is a BoundedTrieNode. Introduced this field to avoid breaking older SDKs when Dataflow service
142+
* starts to populate the `bounded_trie` field.
143+
* @return value or {@code null} for none
144+
*/
145+
public java.lang.Object getBoundedTrie() {
146+
return boundedTrie;
147+
}
148+
149+
/**
150+
* Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type
151+
* is a BoundedTrieNode. Introduced this field to avoid breaking older SDKs when Dataflow service
152+
* starts to populate the `bounded_trie` field.
153+
* @param boundedTrie boundedTrie or {@code null} for none
154+
*/
155+
public MetricUpdate setBoundedTrie(java.lang.Object boundedTrie) {
156+
this.boundedTrie = boundedTrie;
157+
return this;
158+
}
159+
130160
/**
131161
* True if this metric is reported as the total cumulative aggregate value accumulated since the
132162
* worker started working on this WorkItem. By default this is false, indicating that this metric

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

0 commit comments

Comments
 (0)