Skip to content

Commit f064103

Browse files
feat(dataflow): update the api
#### dataflow:v1b3 The following keys were added: - schemas.DataflowGaugeValue (Total Keys: 6) - schemas.MetricValue.properties.valueGauge64.$ref (Total Keys: 1)
1 parent 57b49f1 commit f064103

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

docs/dyn/dataflow_v1b3.projects.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ <h3>Method Details</h3>
163163
&quot;metricLabels&quot;: { # Optional. Set of metric labels for this metric.
164164
&quot;a_key&quot;: &quot;A String&quot;,
165165
},
166+
&quot;valueGauge64&quot;: { # The gauge value of a metric. # Non-cumulative int64 value of this metric.
167+
&quot;measuredTime&quot;: &quot;A String&quot;, # The timestamp when the gauge was recorded.
168+
&quot;value&quot;: &quot;A String&quot;, # The value of the gauge.
169+
},
166170
&quot;valueHistogram&quot;: { # Summary statistics for a population of values. HistogramValue contains a sequence of buckets and gives a count of values that fall into each bucket. Bucket boundares are defined by a formula and bucket widths are either fixed or exponentially increasing. # Histogram value of this metric.
167171
&quot;bucketCounts&quot;: [ # Optional. The number of values in each bucket of the histogram, as described in `bucket_options`. `bucket_counts` should contain N values, where N is the number of buckets specified in `bucket_options`. If `bucket_counts` has fewer than N values, the remaining values are assumed to be 0.
168172
&quot;A String&quot;,

docs/dyn/dataflow_v1b3.projects.locations.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ <h3>Method Details</h3>
141141
&quot;metricLabels&quot;: { # Optional. Set of metric labels for this metric.
142142
&quot;a_key&quot;: &quot;A String&quot;,
143143
},
144+
&quot;valueGauge64&quot;: { # The gauge value of a metric. # Non-cumulative int64 value of this metric.
145+
&quot;measuredTime&quot;: &quot;A String&quot;, # The timestamp when the gauge was recorded.
146+
&quot;value&quot;: &quot;A String&quot;, # The value of the gauge.
147+
},
144148
&quot;valueHistogram&quot;: { # Summary statistics for a population of values. HistogramValue contains a sequence of buckets and gives a count of values that fall into each bucket. Bucket boundares are defined by a formula and bucket widths are either fixed or exponentially increasing. # Histogram value of this metric.
145149
&quot;bucketCounts&quot;: [ # Optional. The number of values in each bucket of the histogram, as described in `bucket_options`. `bucket_counts` should contain N values, where N is the number of buckets specified in `bucket_options`. If `bucket_counts` has fewer than N values, the remaining values are assumed to be 0.
146150
&quot;A String&quot;,

googleapiclient/discovery_cache/documents/dataflow.v1b3.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2208,7 +2208,7 @@
22082208
}
22092209
}
22102210
},
2211-
"revision": "20241028",
2211+
"revision": "20241209",
22122212
"rootUrl": "https://dataflow.googleapis.com/",
22132213
"schemas": {
22142214
"ApproximateProgress": {
@@ -2926,6 +2926,23 @@
29262926
},
29272927
"type": "object"
29282928
},
2929+
"DataflowGaugeValue": {
2930+
"description": "The gauge value of a metric.",
2931+
"id": "DataflowGaugeValue",
2932+
"properties": {
2933+
"measuredTime": {
2934+
"description": "The timestamp when the gauge was recorded.",
2935+
"format": "google-datetime",
2936+
"type": "string"
2937+
},
2938+
"value": {
2939+
"description": "The value of the gauge.",
2940+
"format": "int64",
2941+
"type": "string"
2942+
}
2943+
},
2944+
"type": "object"
2945+
},
29292946
"DataflowHistogramValue": {
29302947
"description": "Summary statistics for a population of values. HistogramValue contains a sequence of buckets and gives a count of values that fall into each bucket. Bucket boundares are defined by a formula and bucket widths are either fixed or exponentially increasing.",
29312948
"id": "DataflowHistogramValue",
@@ -4757,6 +4774,10 @@
47574774
"description": "Optional. Set of metric labels for this metric.",
47584775
"type": "object"
47594776
},
4777+
"valueGauge64": {
4778+
"$ref": "DataflowGaugeValue",
4779+
"description": "Non-cumulative int64 value of this metric."
4780+
},
47604781
"valueHistogram": {
47614782
"$ref": "DataflowHistogramValue",
47624783
"description": "Histogram value of this metric."

0 commit comments

Comments
 (0)