File tree Expand file tree Collapse file tree 8 files changed +60
-12
lines changed
clients/google-api-services-monitoring
com/google/api/services/monitoring/v3/model Expand file tree Collapse file tree 8 files changed +60
-12
lines changed Original file line number Diff line number Diff 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-rev20250227 -2.0.0</version >
25+ <version >v1-rev20250329 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-monitoring:v1-rev20250227 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-monitoring:v1-rev20250329 -2.0.0'
3939}
4040```
4141
Original file line number Diff line number Diff line change 88
99 <groupId >com.google.apis</groupId >
1010 <artifactId >google-api-services-monitoring</artifactId >
11- <version >v1-rev20250227 -2.0.0</version >
12- <name >Cloud Monitoring API v1-rev20250227 -2.0.0</name >
11+ <version >v1-rev20250329 -2.0.0</version >
12+ <name >Cloud Monitoring API v1-rev20250329 -2.0.0</name >
1313 <packaging >jar</packaging >
1414
1515 <inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff 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-rev20250227 -2.0.0</version >
25+ <version >v1-rev20250329 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-monitoring:v1-rev20250227 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-monitoring:v1-rev20250329 -2.0.0'
3939}
4040```
4141
Original file line number Diff line number Diff 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-rev20250227 -2.0.0</version >
25+ <version >v3-rev20250323 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-monitoring:v3-rev20250227 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-monitoring:v3-rev20250323 -2.0.0'
3939}
4040```
4141
Original file line number Diff line number Diff line change @@ -61,6 +61,13 @@ public final class ListTimeSeriesResponse extends com.google.api.client.json.Gen
6161 @ com .google .api .client .util .Key
6262 private java .lang .String unit ;
6363
64+ /**
65+ * Cloud regions that were unreachable which may have caused incomplete data to be returned.
66+ * The value may be {@code null}.
67+ */
68+ @ com .google .api .client .util .Key
69+ private java .util .List <java .lang .String > unreachable ;
70+
6471 /**
6572 * Query execution errors that may have caused the time series data returned to be incomplete.
6673 * @return value or {@code null} for none
@@ -137,6 +144,23 @@ public ListTimeSeriesResponse setUnit(java.lang.String unit) {
137144 return this ;
138145 }
139146
147+ /**
148+ * Cloud regions that were unreachable which may have caused incomplete data to be returned.
149+ * @return value or {@code null} for none
150+ */
151+ public java .util .List <java .lang .String > getUnreachable () {
152+ return unreachable ;
153+ }
154+
155+ /**
156+ * Cloud regions that were unreachable which may have caused incomplete data to be returned.
157+ * @param unreachable unreachable or {@code null} for none
158+ */
159+ public ListTimeSeriesResponse setUnreachable (java .util .List <java .lang .String > unreachable ) {
160+ this .unreachable = unreachable ;
161+ return this ;
162+ }
163+
140164 @ Override
141165 public ListTimeSeriesResponse set (String fieldName , Object value ) {
142166 return (ListTimeSeriesResponse ) super .set (fieldName , value );
Original file line number Diff line number Diff line change @@ -52,6 +52,13 @@ public final class UptimeCheckConfig extends com.google.api.client.json.GenericJ
5252 com .google .api .client .util .Data .nullOf (ContentMatcher .class );
5353 }
5454
55+ /**
56+ * Whether the check is disabled or not.
57+ * The value may be {@code null}.
58+ */
59+ @ com .google .api .client .util .Key
60+ private java .lang .Boolean disabled ;
61+
5562 /**
5663 * A human-friendly name for the Uptime check configuration. The display name should be unique
5764 * within a Cloud Monitoring Workspace in order to make it easier to identify; however, uniqueness
@@ -218,6 +225,23 @@ public UptimeCheckConfig setContentMatchers(java.util.List<ContentMatcher> conte
218225 return this ;
219226 }
220227
228+ /**
229+ * Whether the check is disabled or not.
230+ * @return value or {@code null} for none
231+ */
232+ public java .lang .Boolean getDisabled () {
233+ return disabled ;
234+ }
235+
236+ /**
237+ * Whether the check is disabled or not.
238+ * @param disabled disabled or {@code null} for none
239+ */
240+ public UptimeCheckConfig setDisabled (java .lang .Boolean disabled ) {
241+ this .disabled = disabled ;
242+ return this ;
243+ }
244+
221245 /**
222246 * A human-friendly name for the Uptime check configuration. The display name should be unique
223247 * within a Cloud Monitoring Workspace in order to make it easier to identify; however, uniqueness
Original file line number Diff line number Diff line change 88
99 <groupId >com.google.apis</groupId >
1010 <artifactId >google-api-services-monitoring</artifactId >
11- <version >v3-rev20250227 -2.0.0</version >
12- <name >Cloud Monitoring API v3-rev20250227 -2.0.0</name >
11+ <version >v3-rev20250323 -2.0.0</version >
12+ <name >Cloud Monitoring API v3-rev20250323 -2.0.0</name >
1313 <packaging >jar</packaging >
1414
1515 <inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff 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-rev20250227 -2.0.0</version >
25+ <version >v3-rev20250323 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-monitoring:v3-rev20250227 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-monitoring:v3-rev20250323 -2.0.0'
3939}
4040```
4141
You can’t perform that action at this time.
0 commit comments