From 848d5c6323e71c3c787ff5ed9fb48c1a874540aa Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Thu, 11 Jun 2026 19:41:39 -0700
Subject: [PATCH] chore: regenerate monitoring client
---
.../v1/2.0.0/README.md | 4 +-
.../monitoring/v1/model/Dimension.java | 48 +++++++++++++++++++
.../monitoring/v1/model/TimeSeriesQuery.java | 27 +++++++++++
.../monitoring/v1/model/TraceQuery.java | 43 +++++++++++++++++
.../v1/2.0.0/pom.xml | 4 +-
.../v1/README.md | 4 +-
6 files changed, 124 insertions(+), 6 deletions(-)
create mode 100644 clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TraceQuery.java
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/README.md b/clients/google-api-services-monitoring/v1/2.0.0/README.md
index 07b7a08ea13..861a229b88c 100644
--- a/clients/google-api-services-monitoring/v1/2.0.0/README.md
+++ b/clients/google-api-services-monitoring/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-monitoring
- v1-rev20260402-2.0.0
+ v1-rev20260604-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260402-2.0.0'
+ implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260604-2.0.0'
}
```
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Dimension.java b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Dimension.java
index d73c4d523fb..66eca64be81 100644
--- a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Dimension.java
+++ b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Dimension.java
@@ -100,6 +100,20 @@ public final class Dimension extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private String timeBinSize;
+ /**
+ * The maximum value for the x-axis.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Double xMax;
+
+ /**
+ * The minimum value for the x-axis.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Double xMin;
+
/**
* Required. For widgets that use SQL queries, set the value to the name of the column in the
* results table whose data is charted. For a histogram that uses a time series query, set the
@@ -264,6 +278,40 @@ public Dimension setTimeBinSize(String timeBinSize) {
return this;
}
+ /**
+ * The maximum value for the x-axis.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Double getXMax() {
+ return xMax;
+ }
+
+ /**
+ * The maximum value for the x-axis.
+ * @param xMax xMax or {@code null} for none
+ */
+ public Dimension setXMax(java.lang.Double xMax) {
+ this.xMax = xMax;
+ return this;
+ }
+
+ /**
+ * The minimum value for the x-axis.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Double getXMin() {
+ return xMin;
+ }
+
+ /**
+ * The minimum value for the x-axis.
+ * @param xMin xMin or {@code null} for none
+ */
+ public Dimension setXMin(java.lang.Double xMin) {
+ this.xMin = xMin;
+ return this;
+ }
+
@Override
public Dimension set(String fieldName, Object value) {
return (Dimension) super.set(fieldName, value);
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TimeSeriesQuery.java b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TimeSeriesQuery.java
index 201345893b5..f1fb31c3ec4 100644
--- a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TimeSeriesQuery.java
+++ b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TimeSeriesQuery.java
@@ -76,6 +76,14 @@ public final class TimeSeriesQuery extends com.google.api.client.json.GenericJso
@com.google.api.client.util.Key
private java.lang.String timeSeriesQueryLanguage;
+ /**
+ * Optional. Preview: Query for traces. This is a preview feature and may be subject to change
+ * before final release.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private TraceQuery traceQuery;
+
/**
* The unit of data contained in fetched time series. If non-empty, this unit will override any
* unit that accompanies fetched data. The format is the same as the unit
@@ -196,6 +204,25 @@ public TimeSeriesQuery setTimeSeriesQueryLanguage(java.lang.String timeSeriesQue
return this;
}
+ /**
+ * Optional. Preview: Query for traces. This is a preview feature and may be subject to change
+ * before final release.
+ * @return value or {@code null} for none
+ */
+ public TraceQuery getTraceQuery() {
+ return traceQuery;
+ }
+
+ /**
+ * Optional. Preview: Query for traces. This is a preview feature and may be subject to change
+ * before final release.
+ * @param traceQuery traceQuery or {@code null} for none
+ */
+ public TimeSeriesQuery setTraceQuery(TraceQuery traceQuery) {
+ this.traceQuery = traceQuery;
+ return this;
+ }
+
/**
* The unit of data contained in fetched time series. If non-empty, this unit will override any
* unit that accompanies fetched data. The format is the same as the unit
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TraceQuery.java b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TraceQuery.java
new file mode 100644
index 00000000000..cf05c242515
--- /dev/null
+++ b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/TraceQuery.java
@@ -0,0 +1,43 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+/*
+ * This code was generated by https://github.com/googleapis/google-api-java-client-services/
+ * Modify at your own risk.
+ */
+
+package com.google.api.services.monitoring.v1.model;
+
+/**
+ * LINT.IfChange Preview: Query for traces. This is a preview feature and may be subject to change
+ * before final release.
+ *
+ *
This is the Java data model class that specifies how to parse/serialize into the JSON that is
+ * transmitted over HTTP when working with the Cloud Monitoring API. For a detailed explanation see:
+ * https://developers.google.com/api-client-library/java/google-http-java-client/json
+ *
+ *
+ * @author Google, Inc.
+ */
+@SuppressWarnings("javadoc")
+public final class TraceQuery extends com.google.api.client.json.GenericJson {
+
+ @Override
+ public TraceQuery set(String fieldName, Object value) {
+ return (TraceQuery) super.set(fieldName, value);
+ }
+
+ @Override
+ public TraceQuery clone() {
+ return (TraceQuery) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/pom.xml b/clients/google-api-services-monitoring/v1/2.0.0/pom.xml
index 5f7a63c5446..fe1189db9f1 100644
--- a/clients/google-api-services-monitoring/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-monitoring/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-monitoring
- v1-rev20260402-2.0.0
- Cloud Monitoring API v1-rev20260402-2.0.0
+ v1-rev20260604-2.0.0
+ Cloud Monitoring API v1-rev20260604-2.0.0
jar
2011
diff --git a/clients/google-api-services-monitoring/v1/README.md b/clients/google-api-services-monitoring/v1/README.md
index 07b7a08ea13..861a229b88c 100644
--- a/clients/google-api-services-monitoring/v1/README.md
+++ b/clients/google-api-services-monitoring/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-monitoring
- v1-rev20260402-2.0.0
+ v1-rev20260604-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260402-2.0.0'
+ implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260604-2.0.0'
}
```