diff --git a/docs/dyn/dataflow_v1b3.projects.html b/docs/dyn/dataflow_v1b3.projects.html
index 246d130332..e43a19ac6d 100644
--- a/docs/dyn/dataflow_v1b3.projects.html
+++ b/docs/dyn/dataflow_v1b3.projects.html
@@ -163,6 +163,10 @@
Method Details
"metricLabels": { # Optional. Set of metric labels for this metric.
"a_key": "A String",
},
+ "valueGauge64": { # The gauge value of a metric. # Non-cumulative int64 value of this metric.
+ "measuredTime": "A String", # The timestamp when the gauge was recorded.
+ "value": "A String", # The value of the gauge.
+ },
"valueHistogram": { # 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.
"bucketCounts": [ # 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.
"A String",
diff --git a/docs/dyn/dataflow_v1b3.projects.locations.html b/docs/dyn/dataflow_v1b3.projects.locations.html
index 720ec6a66f..e08aca2db4 100644
--- a/docs/dyn/dataflow_v1b3.projects.locations.html
+++ b/docs/dyn/dataflow_v1b3.projects.locations.html
@@ -141,6 +141,10 @@ Method Details
"metricLabels": { # Optional. Set of metric labels for this metric.
"a_key": "A String",
},
+ "valueGauge64": { # The gauge value of a metric. # Non-cumulative int64 value of this metric.
+ "measuredTime": "A String", # The timestamp when the gauge was recorded.
+ "value": "A String", # The value of the gauge.
+ },
"valueHistogram": { # 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.
"bucketCounts": [ # 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.
"A String",
diff --git a/googleapiclient/discovery_cache/documents/dataflow.v1b3.json b/googleapiclient/discovery_cache/documents/dataflow.v1b3.json
index ed5f6b2bf0..aed6e0f80d 100644
--- a/googleapiclient/discovery_cache/documents/dataflow.v1b3.json
+++ b/googleapiclient/discovery_cache/documents/dataflow.v1b3.json
@@ -2208,7 +2208,7 @@
}
}
},
-"revision": "20241028",
+"revision": "20241209",
"rootUrl": "https://dataflow.googleapis.com/",
"schemas": {
"ApproximateProgress": {
@@ -2926,6 +2926,23 @@
},
"type": "object"
},
+"DataflowGaugeValue": {
+"description": "The gauge value of a metric.",
+"id": "DataflowGaugeValue",
+"properties": {
+"measuredTime": {
+"description": "The timestamp when the gauge was recorded.",
+"format": "google-datetime",
+"type": "string"
+},
+"value": {
+"description": "The value of the gauge.",
+"format": "int64",
+"type": "string"
+}
+},
+"type": "object"
+},
"DataflowHistogramValue": {
"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.",
"id": "DataflowHistogramValue",
@@ -4757,6 +4774,10 @@
"description": "Optional. Set of metric labels for this metric.",
"type": "object"
},
+"valueGauge64": {
+"$ref": "DataflowGaugeValue",
+"description": "Non-cumulative int64 value of this metric."
+},
"valueHistogram": {
"$ref": "DataflowHistogramValue",
"description": "Histogram value of this metric."