Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-monitoring/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v1-rev20260108-2.0.0</version>
<version>v1-rev20260212-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -3286,8 +3286,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
*
* <p> 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:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @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();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-monitoring/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v1-rev20260108-2.0.0</version>
<name>Cloud Monitoring API v1-rev20260108-2.0.0</name>
<version>v1-rev20260212-2.0.0</version>
<name>Cloud Monitoring API v1-rev20260212-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-monitoring/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v1-rev20260108-2.0.0</version>
<version>v1-rev20260212-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-monitoring/v3/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v3-rev20251006-2.0.0</version>
<version>v3-rev20260129-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -11918,8 +11918,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public final class NotificationChannelStrategy extends com.google.api.client.jso
private java.util.List<java.lang.String> 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
Expand Down Expand Up @@ -71,15 +72,17 @@ public NotificationChannelStrategy setNotificationChannelNames(java.util.List<ja
}

/**
* 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.
* @return value or {@code null} for none
*/
public String getRenotifyInterval() {
return renotifyInterval;
}

/**
* 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.
* @param renotifyInterval renotifyInterval or {@code null} for none
*/
public NotificationChannelStrategy setRenotifyInterval(String renotifyInterval) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-monitoring/v3/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v3-rev20251006-2.0.0</version>
<name>Cloud Monitoring API v3-rev20251006-2.0.0</name>
<version>v3-rev20260129-2.0.0</version>
<name>Cloud Monitoring API v3-rev20260129-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-monitoring/v3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v3-rev20251006-2.0.0</version>
<version>v3-rev20260129-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Loading