|
29 | 29 | @SuppressWarnings("javadoc") |
30 | 30 | public final class MetricUpdate extends com.google.api.client.json.GenericJson { |
31 | 31 |
|
| 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 | + |
32 | 41 | /** |
33 | 42 | * True if this metric is reported as the total cumulative aggregate value accumulated since the |
34 | 43 | * 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 { |
127 | 136 | @com.google.api.client.util.Key |
128 | 137 | private String updateTime; |
129 | 138 |
|
| 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 | + |
130 | 160 | /** |
131 | 161 | * True if this metric is reported as the total cumulative aggregate value accumulated since the |
132 | 162 | * worker started working on this WorkItem. By default this is false, indicating that this metric |
|
0 commit comments