Skip to content

Commit 1433ae2

Browse files
chore: regenerate monitoring client
1 parent 38c1764 commit 1433ae2

File tree

11 files changed

+137
-21
lines changed

11 files changed

+137
-21
lines changed

clients/google-api-services-monitoring/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-monitoring</artifactId>
25-
<version>v1-rev20260108-2.0.0</version>
25+
<version>v1-rev20260212-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260212-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/Monitoring.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Monitoring extends com.google.api.client.googleapis.services.json.A
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -3286,8 +3286,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
32863286
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
32873287
* <li>Android: {@code newCompatibleTransport} from
32883288
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
3289-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
3290-
* </li>
3289+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
32913290
* </ul>
32923291
* @param jsonFactory JSON factory, which may be:
32933292
* <ul>
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.monitoring.v1.model;
18+
19+
/**
20+
* A widget that contains two widget visualizations that are coordinated in display. Currently, we
21+
* only support the primary widget of TimeSeriesTable with the secondary widget of XyChart.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Cloud Monitoring API. For a detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class CoordinatedWidget extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The primary visualization. Must be set. Must contain a data source.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Widget primary;
39+
40+
/**
41+
* Required. The secondary visualization. Must be set. Must contain a data source.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private Widget secondary;
46+
47+
/**
48+
* Required. The primary visualization. Must be set. Must contain a data source.
49+
* @return value or {@code null} for none
50+
*/
51+
public Widget getPrimary() {
52+
return primary;
53+
}
54+
55+
/**
56+
* Required. The primary visualization. Must be set. Must contain a data source.
57+
* @param primary primary or {@code null} for none
58+
*/
59+
public CoordinatedWidget setPrimary(Widget primary) {
60+
this.primary = primary;
61+
return this;
62+
}
63+
64+
/**
65+
* Required. The secondary visualization. Must be set. Must contain a data source.
66+
* @return value or {@code null} for none
67+
*/
68+
public Widget getSecondary() {
69+
return secondary;
70+
}
71+
72+
/**
73+
* Required. The secondary visualization. Must be set. Must contain a data source.
74+
* @param secondary secondary or {@code null} for none
75+
*/
76+
public CoordinatedWidget setSecondary(Widget secondary) {
77+
this.secondary = secondary;
78+
return this;
79+
}
80+
81+
@Override
82+
public CoordinatedWidget set(String fieldName, Object value) {
83+
return (CoordinatedWidget) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public CoordinatedWidget clone() {
88+
return (CoordinatedWidget) super.clone();
89+
}
90+
91+
}

clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/Widget.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,13 @@ public final class Widget extends com.google.api.client.json.GenericJson {
5252
@com.google.api.client.util.Key
5353
private CollapsibleGroup collapsibleGroup;
5454

55+
/**
56+
* A widget that contains two widget visualizations that are coordinated in display.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private CoordinatedWidget coordinatedWidget;
61+
5562
/**
5663
* A widget that displays a list of error groups.
5764
* The value may be {@code null}.
@@ -211,6 +218,23 @@ public Widget setCollapsibleGroup(CollapsibleGroup collapsibleGroup) {
211218
return this;
212219
}
213220

221+
/**
222+
* A widget that contains two widget visualizations that are coordinated in display.
223+
* @return value or {@code null} for none
224+
*/
225+
public CoordinatedWidget getCoordinatedWidget() {
226+
return coordinatedWidget;
227+
}
228+
229+
/**
230+
* A widget that contains two widget visualizations that are coordinated in display.
231+
* @param coordinatedWidget coordinatedWidget or {@code null} for none
232+
*/
233+
public Widget setCoordinatedWidget(CoordinatedWidget coordinatedWidget) {
234+
this.coordinatedWidget = coordinatedWidget;
235+
return this;
236+
}
237+
214238
/**
215239
* A widget that displays a list of error groups.
216240
* @return value or {@code null} for none

clients/google-api-services-monitoring/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-monitoring</artifactId>
11-
<version>v1-rev20260108-2.0.0</version>
12-
<name>Cloud Monitoring API v1-rev20260108-2.0.0</name>
11+
<version>v1-rev20260212-2.0.0</version>
12+
<name>Cloud Monitoring API v1-rev20260212-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-monitoring/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-monitoring</artifactId>
25-
<version>v1-rev20260108-2.0.0</version>
25+
<version>v1-rev20260212-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260212-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-monitoring/v3/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-monitoring</artifactId>
25-
<version>v3-rev20251006-2.0.0</version>
25+
<version>v3-rev20260129-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20251006-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/Monitoring.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Monitoring extends com.google.api.client.googleapis.services.json.A
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -11918,8 +11918,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1191811918
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1191911919
* <li>Android: {@code newCompatibleTransport} from
1192011920
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
11921-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
11922-
* </li>
11921+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1192311922
* </ul>
1192411923
* @param jsonFactory JSON factory, which may be:
1192511924
* <ul>

clients/google-api-services-monitoring/v3/2.0.0/com/google/api/services/monitoring/v3/model/NotificationChannelStrategy.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public final class NotificationChannelStrategy extends com.google.api.client.jso
4141
private java.util.List<java.lang.String> notificationChannelNames;
4242

4343
/**
44-
* The frequency at which to send reminder notifications for open incidents.
44+
* The frequency at which to send reminder notifications for open incidents. The value must be
45+
* between 30 minutes and 24 hours.
4546
* The value may be {@code null}.
4647
*/
4748
@com.google.api.client.util.Key
@@ -71,15 +72,17 @@ public NotificationChannelStrategy setNotificationChannelNames(java.util.List<ja
7172
}
7273

7374
/**
74-
* The frequency at which to send reminder notifications for open incidents.
75+
* The frequency at which to send reminder notifications for open incidents. The value must be
76+
* between 30 minutes and 24 hours.
7577
* @return value or {@code null} for none
7678
*/
7779
public String getRenotifyInterval() {
7880
return renotifyInterval;
7981
}
8082

8183
/**
82-
* The frequency at which to send reminder notifications for open incidents.
84+
* The frequency at which to send reminder notifications for open incidents. The value must be
85+
* between 30 minutes and 24 hours.
8386
* @param renotifyInterval renotifyInterval or {@code null} for none
8487
*/
8588
public NotificationChannelStrategy setRenotifyInterval(String renotifyInterval) {

clients/google-api-services-monitoring/v3/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-monitoring</artifactId>
11-
<version>v3-rev20251006-2.0.0</version>
12-
<name>Cloud Monitoring API v3-rev20251006-2.0.0</name>
11+
<version>v3-rev20260129-2.0.0</version>
12+
<name>Cloud Monitoring API v3-rev20260129-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)