You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dyn/dataflow_v1b3.projects.jobs.html
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1565,7 +1565,7 @@ <h3>Method Details</h3>
1565
1565
{ # JobMetrics contains a collection of metrics describing the detailed progress of a Dataflow job. Metrics correspond to user-defined and system-defined metrics in the job. For more information, see [Dataflow job metrics] (https://cloud.google.com/dataflow/docs/guides/using-monitoring-intf). This resource captures only the most recent values of each metric; time-series data can be queried for them (under the same metric names) from Cloud Monitoring.
1566
1566
"metricTime": "A String", # Timestamp as of which metric values are current.
1567
1567
"metrics": [ # All metrics for this job.
1568
-
{ # Describes the state of a metric.
1568
+
{ # Describes the state of a metric. Next ID: 14
1569
1569
"cumulative": True or False, # True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.
1570
1570
"distribution": "", # A struct value describing properties of a distribution of numeric values.
1571
1571
"gauge": "", # A struct value describing properties of a Gauge. Metrics of gauge type show the value of a metric across time, and is aggregated based on the newest value.
@@ -1581,7 +1581,8 @@ <h3>Method Details</h3>
1581
1581
"origin": "A String", # Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.
1582
1582
},
1583
1583
"scalar": "", # Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.
1584
-
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.
1584
+
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, String, or BoundedTrie according to the metric's type. All Values in the list must be of the same type.
1585
+
"trie": "", # Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type is a BoundedTrieNode.
1585
1586
"updateTime": "A String", # Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.
Copy file name to clipboardExpand all lines: docs/dyn/dataflow_v1b3.projects.jobs.workItems.html
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -723,8 +723,20 @@ <h3>Method Details</h3>
723
723
{ # Conveys a worker's progress through the work described by a WorkItem.
724
724
"completed": True or False, # True if the WorkItem was completed (successfully or unsuccessfully).
725
725
"counterUpdates": [ # Worker output counters for this WorkItem.
726
-
{ # An update to a Counter sent from a worker.
726
+
{ # An update to a Counter sent from a worker. Next ID: 17
727
727
"boolean": True or False, # Boolean value for And, Or.
728
+
"boundedTrie": { # The message type used for encoding metrics of type bounded trie. # Bounded trie data
729
+
"bound": 42, # The maximum number of elements to store before truncation.
730
+
"root": { # A single node in a BoundedTrie. # A compact representation of all the elements in this trie.
731
+
"children": { # Children of this node. Must be empty if truncated is true.
732
+
"a_key": # Object with schema name: BoundedTrieNode
733
+
},
734
+
"truncated": True or False, # Whether this node has been truncated. A truncated leaf represents possibly many children with the same prefix.
735
+
},
736
+
"singleton": [ # A more efficient representation for metrics consisting of a single value.
737
+
"A String",
738
+
],
739
+
},
728
740
"cumulative": True or False, # True if this counter is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this counter is reported as a delta.
729
741
"distribution": { # A metric value representing a distribution. # Distribution data
730
742
"count": { # A representation of an int64, n, that is immune to precision loss when encoded in JSON. # The count of the number of elements present in the distribution.
@@ -884,7 +896,7 @@ <h3>Method Details</h3>
884
896
},
885
897
],
886
898
"metricUpdates": [ # DEPRECATED in favor of counter_updates.
887
-
{ # Describes the state of a metric.
899
+
{ # Describes the state of a metric. Next ID: 14
888
900
"cumulative": True or False, # True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.
889
901
"distribution": "", # A struct value describing properties of a distribution of numeric values.
890
902
"gauge": "", # A struct value describing properties of a Gauge. Metrics of gauge type show the value of a metric across time, and is aggregated based on the newest value.
@@ -900,7 +912,8 @@ <h3>Method Details</h3>
900
912
"origin": "A String", # Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.
901
913
},
902
914
"scalar": "", # Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.
903
-
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.
915
+
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, String, or BoundedTrie according to the metric's type. All Values in the list must be of the same type.
916
+
"trie": "", # Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type is a BoundedTrieNode.
904
917
"updateTime": "A String", # Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.
Copy file name to clipboardExpand all lines: docs/dyn/dataflow_v1b3.projects.locations.jobs.html
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1195,7 +1195,7 @@ <h3>Method Details</h3>
1195
1195
{ # Information about a particular execution stage of a job.
1196
1196
"endTime": "A String", # End time of this stage. If the work item is completed, this is the actual end time of the stage. Otherwise, it is the predicted end time.
1197
1197
"metrics": [ # Metrics for this stage.
1198
-
{ # Describes the state of a metric.
1198
+
{ # Describes the state of a metric. Next ID: 14
1199
1199
"cumulative": True or False, # True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.
1200
1200
"distribution": "", # A struct value describing properties of a distribution of numeric values.
1201
1201
"gauge": "", # A struct value describing properties of a Gauge. Metrics of gauge type show the value of a metric across time, and is aggregated based on the newest value.
@@ -1211,7 +1211,8 @@ <h3>Method Details</h3>
1211
1211
"origin": "A String", # Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.
1212
1212
},
1213
1213
"scalar": "", # Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.
1214
-
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.
1214
+
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, String, or BoundedTrie according to the metric's type. All Values in the list must be of the same type.
1215
+
"trie": "", # Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type is a BoundedTrieNode.
1215
1216
"updateTime": "A String", # Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.
1216
1217
},
1217
1218
],
@@ -1299,7 +1300,7 @@ <h3>Method Details</h3>
1299
1300
{ # JobMetrics contains a collection of metrics describing the detailed progress of a Dataflow job. Metrics correspond to user-defined and system-defined metrics in the job. For more information, see [Dataflow job metrics] (https://cloud.google.com/dataflow/docs/guides/using-monitoring-intf). This resource captures only the most recent values of each metric; time-series data can be queried for them (under the same metric names) from Cloud Monitoring.
1300
1301
"metricTime": "A String", # Timestamp as of which metric values are current.
1301
1302
"metrics": [ # All metrics for this job.
1302
-
{ # Describes the state of a metric.
1303
+
{ # Describes the state of a metric. Next ID: 14
1303
1304
"cumulative": True or False, # True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.
1304
1305
"distribution": "", # A struct value describing properties of a distribution of numeric values.
1305
1306
"gauge": "", # A struct value describing properties of a Gauge. Metrics of gauge type show the value of a metric across time, and is aggregated based on the newest value.
@@ -1315,7 +1316,8 @@ <h3>Method Details</h3>
1315
1316
"origin": "A String", # Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.
1316
1317
},
1317
1318
"scalar": "", # Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.
1318
-
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.
1319
+
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, String, or BoundedTrie according to the metric's type. All Values in the list must be of the same type.
1320
+
"trie": "", # Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type is a BoundedTrieNode.
1319
1321
"updateTime": "A String", # Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.
Copy file name to clipboardExpand all lines: docs/dyn/dataflow_v1b3.projects.locations.jobs.stages.html
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ <h3>Method Details</h3>
119
119
"attemptId": "A String", # Attempt ID of this work item
120
120
"endTime": "A String", # End time of this work item attempt. If the work item is completed, this is the actual end time of the work item. Otherwise, it is the predicted end time.
121
121
"metrics": [ # Metrics for this work item.
122
-
{ # Describes the state of a metric.
122
+
{ # Describes the state of a metric. Next ID: 14
123
123
"cumulative": True or False, # True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.
124
124
"distribution": "", # A struct value describing properties of a distribution of numeric values.
125
125
"gauge": "", # A struct value describing properties of a Gauge. Metrics of gauge type show the value of a metric across time, and is aggregated based on the newest value.
@@ -135,7 +135,8 @@ <h3>Method Details</h3>
135
135
"origin": "A String", # Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.
136
136
},
137
137
"scalar": "", # Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.
138
-
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.
138
+
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, String, or BoundedTrie according to the metric's type. All Values in the list must be of the same type.
139
+
"trie": "", # Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type is a BoundedTrieNode.
139
140
"updateTime": "A String", # Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.
Copy file name to clipboardExpand all lines: docs/dyn/dataflow_v1b3.projects.locations.jobs.workItems.html
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -725,8 +725,20 @@ <h3>Method Details</h3>
725
725
{ # Conveys a worker's progress through the work described by a WorkItem.
726
726
"completed": True or False, # True if the WorkItem was completed (successfully or unsuccessfully).
727
727
"counterUpdates": [ # Worker output counters for this WorkItem.
728
-
{ # An update to a Counter sent from a worker.
728
+
{ # An update to a Counter sent from a worker. Next ID: 17
729
729
"boolean": True or False, # Boolean value for And, Or.
730
+
"boundedTrie": { # The message type used for encoding metrics of type bounded trie. # Bounded trie data
731
+
"bound": 42, # The maximum number of elements to store before truncation.
732
+
"root": { # A single node in a BoundedTrie. # A compact representation of all the elements in this trie.
733
+
"children": { # Children of this node. Must be empty if truncated is true.
734
+
"a_key": # Object with schema name: BoundedTrieNode
735
+
},
736
+
"truncated": True or False, # Whether this node has been truncated. A truncated leaf represents possibly many children with the same prefix.
737
+
},
738
+
"singleton": [ # A more efficient representation for metrics consisting of a single value.
739
+
"A String",
740
+
],
741
+
},
730
742
"cumulative": True or False, # True if this counter is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this counter is reported as a delta.
731
743
"distribution": { # A metric value representing a distribution. # Distribution data
732
744
"count": { # A representation of an int64, n, that is immune to precision loss when encoded in JSON. # The count of the number of elements present in the distribution.
@@ -886,7 +898,7 @@ <h3>Method Details</h3>
886
898
},
887
899
],
888
900
"metricUpdates": [ # DEPRECATED in favor of counter_updates.
889
-
{ # Describes the state of a metric.
901
+
{ # Describes the state of a metric. Next ID: 14
890
902
"cumulative": True or False, # True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.
891
903
"distribution": "", # A struct value describing properties of a distribution of numeric values.
892
904
"gauge": "", # A struct value describing properties of a Gauge. Metrics of gauge type show the value of a metric across time, and is aggregated based on the newest value.
@@ -902,7 +914,8 @@ <h3>Method Details</h3>
902
914
"origin": "A String", # Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.
903
915
},
904
916
"scalar": "", # Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.
905
-
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.
917
+
"set": "", # Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, String, or BoundedTrie according to the metric's type. All Values in the list must be of the same type.
918
+
"trie": "", # Worker-computed aggregate value for the "Trie" aggregation kind. The only possible value type is a BoundedTrieNode.
906
919
"updateTime": "A String", # Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.
0 commit comments