Skip to content

Commit d73160f

Browse files
1 parent 2fb4ebb commit d73160f

File tree

8 files changed

+62
-14
lines changed

8 files changed

+62
-14
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-rev20250130-2.0.0</version>
25+
<version>v1-rev20250227-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-rev20250130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20250227-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,30 @@
3030
@SuppressWarnings("javadoc")
3131
public final class SingleViewGroup extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. Determines how the widget selector will be displayed.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String displayType;
39+
40+
/**
41+
* Optional. Determines how the widget selector will be displayed.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getDisplayType() {
45+
return displayType;
46+
}
47+
48+
/**
49+
* Optional. Determines how the widget selector will be displayed.
50+
* @param displayType displayType or {@code null} for none
51+
*/
52+
public SingleViewGroup setDisplayType(java.lang.String displayType) {
53+
this.displayType = displayType;
54+
return this;
55+
}
56+
3357
@Override
3458
public SingleViewGroup set(String fieldName, Object value) {
3559
return (SingleViewGroup) super.set(fieldName, value);

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

Lines changed: 3 additions & 3 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-rev20250130-2.0.0</version>
12-
<name>Cloud Monitoring API v1-rev20250130-2.0.0</name>
11+
<version>v1-rev20250227-2.0.0</version>
12+
<name>Cloud Monitoring API v1-rev20250227-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Cloud Monitoring API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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-rev20250130-2.0.0</version>
25+
<version>v1-rev20250227-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-rev20250130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20250227-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-rev20250130-2.0.0</version>
25+
<version>v3-rev20250227-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-rev20250130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20250227-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,13 @@ public final class UptimeCheckConfig extends com.google.api.client.json.GenericJ
9292
@com.google.api.client.util.Key
9393
private java.lang.Boolean isInternal;
9494

95+
/**
96+
* To specify whether to log the results of failed probes to Cloud Logging.
97+
* The value may be {@code null}.
98+
*/
99+
@com.google.api.client.util.Key
100+
private java.lang.Boolean logCheckFailures;
101+
95102
/**
96103
* The monitored resource (https://cloud.google.com/monitoring/api/resources) associated with the
97104
* configuration. The following monitored resource types are valid for this field: uptime_url,
@@ -291,6 +298,23 @@ public UptimeCheckConfig setIsInternal(java.lang.Boolean isInternal) {
291298
return this;
292299
}
293300

301+
/**
302+
* To specify whether to log the results of failed probes to Cloud Logging.
303+
* @return value or {@code null} for none
304+
*/
305+
public java.lang.Boolean getLogCheckFailures() {
306+
return logCheckFailures;
307+
}
308+
309+
/**
310+
* To specify whether to log the results of failed probes to Cloud Logging.
311+
* @param logCheckFailures logCheckFailures or {@code null} for none
312+
*/
313+
public UptimeCheckConfig setLogCheckFailures(java.lang.Boolean logCheckFailures) {
314+
this.logCheckFailures = logCheckFailures;
315+
return this;
316+
}
317+
294318
/**
295319
* The monitored resource (https://cloud.google.com/monitoring/api/resources) associated with the
296320
* configuration. The following monitored resource types are valid for this field: uptime_url,

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

Lines changed: 3 additions & 3 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-rev20250130-2.0.0</version>
12-
<name>Cloud Monitoring API v3-rev20250130-2.0.0</name>
11+
<version>v3-rev20250227-2.0.0</version>
12+
<name>Cloud Monitoring API v3-rev20250227-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Cloud Monitoring API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

clients/google-api-services-monitoring/v3/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-rev20250130-2.0.0</version>
25+
<version>v3-rev20250227-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-rev20250130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20250227-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)