Skip to content

Commit cd3ebad

Browse files
1 parent addd3da commit cd3ebad

File tree

8 files changed

+40
-15
lines changed

8 files changed

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

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

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

32+
/**
33+
* Whether to apply this filter to new widgets by default
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean applyToNewWidgets;
38+
3239
/**
3340
* The specified filter type
3441
* The value may be {@code null}.
@@ -58,6 +65,23 @@ public final class DashboardFilter extends com.google.api.client.json.GenericJso
5865
@com.google.api.client.util.Key
5966
private java.lang.String templateVariable;
6067

68+
/**
69+
* Whether to apply this filter to new widgets by default
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.Boolean getApplyToNewWidgets() {
73+
return applyToNewWidgets;
74+
}
75+
76+
/**
77+
* Whether to apply this filter to new widgets by default
78+
* @param applyToNewWidgets applyToNewWidgets or {@code null} for none
79+
*/
80+
public DashboardFilter setApplyToNewWidgets(java.lang.Boolean applyToNewWidgets) {
81+
this.applyToNewWidgets = applyToNewWidgets;
82+
return this;
83+
}
84+
6185
/**
6286
* The specified filter type
6387
* @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-rev20240121-2.0.0</version>
12-
<name>Cloud Monitoring API v1-rev20240121-2.0.0</name>
11+
<version>v1-rev20240427-2.0.0</version>
12+
<name>Cloud Monitoring API v1-rev20240427-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-rev20240121-2.0.0</version>
25+
<version>v1-rev20240427-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-rev20240121-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20240427-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-rev20240414-2.0.0</version>
25+
<version>v3-rev20240427-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-rev20240414-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20240427-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
package com.google.api.services.monitoring.v3.model;
1818

1919
/**
20-
* Contains information needed for generating an OpenID Connect token
21-
* (https://developers.google.com/identity/protocols/OpenIDConnect). The OIDC token will be
22-
* generated for the Monitoring service agent service account.
20+
* Contains information needed for generating either an OpenID Connect token
21+
* (https://developers.google.com/identity/protocols/OpenIDConnect) or OAuth token
22+
* (https://developers.google.com/identity/protocols/oauth2). The token will be generated for the
23+
* Monitoring service agent service account.
2324
*
2425
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2526
* transmitted over HTTP when working with the Cloud Monitoring API. For a detailed explanation see:

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-rev20240414-2.0.0</version>
12-
<name>Cloud Monitoring API v3-rev20240414-2.0.0</name>
11+
<version>v3-rev20240427-2.0.0</version>
12+
<name>Cloud Monitoring API v3-rev20240427-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)