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 5d2db48670b..0de28198a60 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-rev20260108-2.0.0
+ v1-rev20260212-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260108-2.0.0'
+ implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260212-2.0.0'
}
```
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/Monitoring.java b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/Monitoring.java
index ceb8a262214..edb90ddf0ed 100644
--- a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/Monitoring.java
+++ b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/Monitoring.java
@@ -103,7 +103,7 @@ public class Monitoring extends com.google.api.client.googleapis.services.json.A
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
*
Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
*
* @param jsonFactory JSON factory, which may be:
@@ -3286,8 +3286,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
- *
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
* @param jsonFactory JSON factory, which may be:
*
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/CoordinatedWidget.java b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/CoordinatedWidget.java
new file mode 100644
index 00000000000..c152287b0a0
--- /dev/null
+++ b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/CoordinatedWidget.java
@@ -0,0 +1,91 @@
+/*
+ * 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;
+
+/**
+ * A widget that contains two widget visualizations that are coordinated in display. Currently, we
+ * only support the primary widget of TimeSeriesTable with the secondary widget of XyChart.
+ *
+ * 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 CoordinatedWidget extends com.google.api.client.json.GenericJson {
+
+ /**
+ * Required. The primary visualization. Must be set. Must contain a data source.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private Widget primary;
+
+ /**
+ * Required. The secondary visualization. Must be set. Must contain a data source.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private Widget secondary;
+
+ /**
+ * Required. The primary visualization. Must be set. Must contain a data source.
+ * @return value or {@code null} for none
+ */
+ public Widget getPrimary() {
+ return primary;
+ }
+
+ /**
+ * Required. The primary visualization. Must be set. Must contain a data source.
+ * @param primary primary or {@code null} for none
+ */
+ public CoordinatedWidget setPrimary(Widget primary) {
+ this.primary = primary;
+ return this;
+ }
+
+ /**
+ * Required. The secondary visualization. Must be set. Must contain a data source.
+ * @return value or {@code null} for none
+ */
+ public Widget getSecondary() {
+ return secondary;
+ }
+
+ /**
+ * Required. The secondary visualization. Must be set. Must contain a data source.
+ * @param secondary secondary or {@code null} for none
+ */
+ public CoordinatedWidget setSecondary(Widget secondary) {
+ this.secondary = secondary;
+ return this;
+ }
+
+ @Override
+ public CoordinatedWidget set(String fieldName, Object value) {
+ return (CoordinatedWidget) super.set(fieldName, value);
+ }
+
+ @Override
+ public CoordinatedWidget clone() {
+ return (CoordinatedWidget) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Widget.java b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Widget.java
index 86f53467a28..960d0d5ec08 100644
--- a/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Widget.java
+++ b/clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Widget.java
@@ -52,6 +52,13 @@ public final class Widget extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private CollapsibleGroup collapsibleGroup;
+ /**
+ * A widget that contains two widget visualizations that are coordinated in display.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private CoordinatedWidget coordinatedWidget;
+
/**
* A widget that displays a list of error groups.
* The value may be {@code null}.
@@ -211,6 +218,23 @@ public Widget setCollapsibleGroup(CollapsibleGroup collapsibleGroup) {
return this;
}
+ /**
+ * A widget that contains two widget visualizations that are coordinated in display.
+ * @return value or {@code null} for none
+ */
+ public CoordinatedWidget getCoordinatedWidget() {
+ return coordinatedWidget;
+ }
+
+ /**
+ * A widget that contains two widget visualizations that are coordinated in display.
+ * @param coordinatedWidget coordinatedWidget or {@code null} for none
+ */
+ public Widget setCoordinatedWidget(CoordinatedWidget coordinatedWidget) {
+ this.coordinatedWidget = coordinatedWidget;
+ return this;
+ }
+
/**
* A widget that displays a list of error groups.
* @return value or {@code null} for none
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 896e7928edc..e315f145b27 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-rev20260108-2.0.0
- Cloud Monitoring API v1-rev20260108-2.0.0
+ v1-rev20260212-2.0.0
+ Cloud Monitoring API v1-rev20260212-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 5d2db48670b..0de28198a60 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-rev20260108-2.0.0
+ v1-rev20260212-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260108-2.0.0'
+ implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260212-2.0.0'
}
```
diff --git a/clients/google-api-services-monitoring/v3/2.0.0/README.md b/clients/google-api-services-monitoring/v3/2.0.0/README.md
index d15490e1a19..7db5360acbb 100644
--- a/clients/google-api-services-monitoring/v3/2.0.0/README.md
+++ b/clients/google-api-services-monitoring/v3/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
- v3-rev20251006-2.0.0
+ v3-rev20260129-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-monitoring:v3-rev20251006-2.0.0'
+ implementation 'com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0'
}
```
diff --git a/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/Monitoring.java b/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/Monitoring.java
index b6480f9ec1d..49a928bc278 100644
--- a/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/Monitoring.java
+++ b/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/Monitoring.java
@@ -103,7 +103,7 @@ public class Monitoring extends com.google.api.client.googleapis.services.json.A
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* - Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * - Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
+ *
- Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
*
* @param jsonFactory JSON factory, which may be:
@@ -11918,8 +11918,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
- *
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
* @param jsonFactory JSON factory, which may be:
*
diff --git a/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/model/NotificationChannelStrategy.java b/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/model/NotificationChannelStrategy.java
index b7c409f5ad0..8bae22354bd 100644
--- a/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/model/NotificationChannelStrategy.java
+++ b/clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/model/NotificationChannelStrategy.java
@@ -41,7 +41,8 @@ public final class NotificationChannelStrategy extends com.google.api.client.jso
private java.util.List notificationChannelNames;
/**
- * The frequency at which to send reminder notifications for open incidents.
+ * The frequency at which to send reminder notifications for open incidents. The value must be
+ * between 30 minutes and 24 hours.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
@@ -71,7 +72,8 @@ public NotificationChannelStrategy setNotificationChannelNames(java.util.Listcom.google.apis
google-api-services-monitoring
- v3-rev20251006-2.0.0
- Cloud Monitoring API v3-rev20251006-2.0.0
+ v3-rev20260129-2.0.0
+ Cloud Monitoring API v3-rev20260129-2.0.0
jar
2011
diff --git a/clients/google-api-services-monitoring/v3/README.md b/clients/google-api-services-monitoring/v3/README.md
index d15490e1a19..7db5360acbb 100644
--- a/clients/google-api-services-monitoring/v3/README.md
+++ b/clients/google-api-services-monitoring/v3/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-monitoring
- v3-rev20251006-2.0.0
+ v3-rev20260129-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-monitoring:v3-rev20251006-2.0.0'
+ implementation 'com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0'
}
```