Skip to content

Commit f81d448

Browse files
1 parent 2406f36 commit f81d448

File tree

5 files changed

+43
-43
lines changed

5 files changed

+43
-43
lines changed

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-rev20240721-2.0.0</version>
25+
<version>v3-rev20240728-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-rev20240721-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20240728-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: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,24 +2219,24 @@ public List setName(java.lang.String name) {
22192219
}
22202220

22212221
/**
2222-
* If provided, this field specifies the criteria that must be met by alert policies to be
2223-
* included in the response.For more details, see sorting and filtering
2222+
* Optional. If provided, this field specifies the criteria that must be met by alert
2223+
* policies to be included in the response.For more details, see sorting and filtering
22242224
* (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
22252225
*/
22262226
@com.google.api.client.util.Key
22272227
private java.lang.String filter;
22282228

2229-
/** If provided, this field specifies the criteria that must be met by alert policies to be included in
2230-
the response.For more details, see sorting and filtering
2229+
/** Optional. If provided, this field specifies the criteria that must be met by alert policies to be
2230+
included in the response.For more details, see sorting and filtering
22312231
(https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
22322232
*/
22332233
public java.lang.String getFilter() {
22342234
return filter;
22352235
}
22362236

22372237
/**
2238-
* If provided, this field specifies the criteria that must be met by alert policies to be
2239-
* included in the response.For more details, see sorting and filtering
2238+
* Optional. If provided, this field specifies the criteria that must be met by alert
2239+
* policies to be included in the response.For more details, see sorting and filtering
22402240
* (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
22412241
*/
22422242
public List setFilter(java.lang.String filter) {
@@ -2245,70 +2245,70 @@ public List setFilter(java.lang.String filter) {
22452245
}
22462246

22472247
/**
2248-
* A comma-separated list of fields by which to sort the result. Supports the same set of
2249-
* field references as the filter field. Entries can be prefixed with a minus sign to sort
2250-
* by the field in descending order.For more details, see sorting and filtering
2248+
* Optional. A comma-separated list of fields by which to sort the result. Supports the same
2249+
* set of field references as the filter field. Entries can be prefixed with a minus sign to
2250+
* sort by the field in descending order.For more details, see sorting and filtering
22512251
* (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
22522252
*/
22532253
@com.google.api.client.util.Key
22542254
private java.lang.String orderBy;
22552255

2256-
/** A comma-separated list of fields by which to sort the result. Supports the same set of field
2257-
references as the filter field. Entries can be prefixed with a minus sign to sort by the field in
2258-
descending order.For more details, see sorting and filtering
2256+
/** Optional. A comma-separated list of fields by which to sort the result. Supports the same set of
2257+
field references as the filter field. Entries can be prefixed with a minus sign to sort by the
2258+
field in descending order.For more details, see sorting and filtering
22592259
(https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
22602260
*/
22612261
public java.lang.String getOrderBy() {
22622262
return orderBy;
22632263
}
22642264

22652265
/**
2266-
* A comma-separated list of fields by which to sort the result. Supports the same set of
2267-
* field references as the filter field. Entries can be prefixed with a minus sign to sort
2268-
* by the field in descending order.For more details, see sorting and filtering
2266+
* Optional. A comma-separated list of fields by which to sort the result. Supports the same
2267+
* set of field references as the filter field. Entries can be prefixed with a minus sign to
2268+
* sort by the field in descending order.For more details, see sorting and filtering
22692269
* (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
22702270
*/
22712271
public List setOrderBy(java.lang.String orderBy) {
22722272
this.orderBy = orderBy;
22732273
return this;
22742274
}
22752275

2276-
/** The maximum number of results to return in a single response. */
2276+
/** Optional. The maximum number of results to return in a single response. */
22772277
@com.google.api.client.util.Key
22782278
private java.lang.Integer pageSize;
22792279

2280-
/** The maximum number of results to return in a single response.
2280+
/** Optional. The maximum number of results to return in a single response.
22812281
*/
22822282
public java.lang.Integer getPageSize() {
22832283
return pageSize;
22842284
}
22852285

2286-
/** The maximum number of results to return in a single response. */
2286+
/** Optional. The maximum number of results to return in a single response. */
22872287
public List setPageSize(java.lang.Integer pageSize) {
22882288
this.pageSize = pageSize;
22892289
return this;
22902290
}
22912291

22922292
/**
2293-
* If this field is not empty then it must contain the nextPageToken value returned by a
2294-
* previous call to this method. Using this field causes the method to return more results
2295-
* from the previous method call.
2293+
* Optional. If this field is not empty then it must contain the nextPageToken value
2294+
* returned by a previous call to this method. Using this field causes the method to return
2295+
* more results from the previous method call.
22962296
*/
22972297
@com.google.api.client.util.Key
22982298
private java.lang.String pageToken;
22992299

2300-
/** If this field is not empty then it must contain the nextPageToken value returned by a previous call
2301-
to this method. Using this field causes the method to return more results from the previous method
2302-
call.
2300+
/** Optional. If this field is not empty then it must contain the nextPageToken value returned by a
2301+
previous call to this method. Using this field causes the method to return more results from the
2302+
previous method call.
23032303
*/
23042304
public java.lang.String getPageToken() {
23052305
return pageToken;
23062306
}
23072307

23082308
/**
2309-
* If this field is not empty then it must contain the nextPageToken value returned by a
2310-
* previous call to this method. Using this field causes the method to return more results
2311-
* from the previous method call.
2309+
* Optional. If this field is not empty then it must contain the nextPageToken value
2310+
* returned by a previous call to this method. Using this field causes the method to return
2311+
* more results from the previous method call.
23122312
*/
23132313
public List setPageToken(java.lang.String pageToken) {
23142314
this.pageToken = pageToken;
@@ -2332,7 +2332,7 @@ public List set(String parameterName, Object value) {
23322332
* This request holds the parameters needed by the monitoring server. After setting any optional
23332333
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
23342334
*
2335-
* @param name Required if the policy exists. The resource name for this policy. The format is:
2335+
* @param name Identifier. Required if the policy exists. The resource name for this policy. The format is:
23362336
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is
23372337
* assigned by Cloud Monitoring when the policy is created. When calling the
23382338
* alertPolicies.create method, do not include the name field in the alerting policy passed
@@ -2368,7 +2368,7 @@ public class Patch extends MonitoringRequest<com.google.api.services.monitoring.
23682368
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
23692369
* be called to initialize this instance immediately after invoking the constructor. </p>
23702370
*
2371-
* @param name Required if the policy exists. The resource name for this policy. The format is:
2371+
* @param name Identifier. Required if the policy exists. The resource name for this policy. The format is:
23722372
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is
23732373
* assigned by Cloud Monitoring when the policy is created. When calling the
23742374
* alertPolicies.create method, do not include the name field in the alerting policy passed
@@ -2442,16 +2442,16 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
24422442
}
24432443

24442444
/**
2445-
* Required if the policy exists. The resource name for this policy. The format is:
2446-
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is
2445+
* Identifier. Required if the policy exists. The resource name for this policy. The format
2446+
* is: projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is
24472447
* assigned by Cloud Monitoring when the policy is created. When calling the
24482448
* alertPolicies.create method, do not include the name field in the alerting policy passed
24492449
* as part of the request.
24502450
*/
24512451
@com.google.api.client.util.Key
24522452
private java.lang.String name;
24532453

2454-
/** Required if the policy exists. The resource name for this policy. The format is:
2454+
/** Identifier. Required if the policy exists. The resource name for this policy. The format is:
24552455
projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is assigned by
24562456
Cloud Monitoring when the policy is created. When calling the alertPolicies.create method, do not
24572457
include the name field in the alerting policy passed as part of the request.
@@ -2461,8 +2461,8 @@ public java.lang.String getName() {
24612461
}
24622462

24632463
/**
2464-
* Required if the policy exists. The resource name for this policy. The format is:
2465-
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is
2464+
* Identifier. Required if the policy exists. The resource name for this policy. The format
2465+
* is: projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is
24662466
* assigned by Cloud Monitoring when the policy is created. When calling the
24672467
* alertPolicies.create method, do not include the name field in the alerting policy passed
24682468
* as part of the request.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public final class AlertPolicy extends com.google.api.client.json.GenericJson {
107107
private MutationRecord mutationRecord;
108108

109109
/**
110-
* Required if the policy exists. The resource name for this policy. The format is:
110+
* Identifier. Required if the policy exists. The resource name for this policy. The format is:
111111
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is assigned
112112
* by Cloud Monitoring when the policy is created. When calling the alertPolicies.create method,
113113
* do not include the name field in the alerting policy passed as part of the request.
@@ -333,7 +333,7 @@ public AlertPolicy setMutationRecord(MutationRecord mutationRecord) {
333333
}
334334

335335
/**
336-
* Required if the policy exists. The resource name for this policy. The format is:
336+
* Identifier. Required if the policy exists. The resource name for this policy. The format is:
337337
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is assigned
338338
* by Cloud Monitoring when the policy is created. When calling the alertPolicies.create method,
339339
* do not include the name field in the alerting policy passed as part of the request.
@@ -344,7 +344,7 @@ public java.lang.String getName() {
344344
}
345345

346346
/**
347-
* Required if the policy exists. The resource name for this policy. The format is:
347+
* Identifier. Required if the policy exists. The resource name for this policy. The format is:
348348
* projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] [ALERT_POLICY_ID] is assigned
349349
* by Cloud Monitoring when the policy is created. When calling the alertPolicies.create method,
350350
* do not include the name field in the alerting policy passed as part of the request.

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-rev20240721-2.0.0</version>
12-
<name>Cloud Monitoring API v3-rev20240721-2.0.0</name>
11+
<version>v3-rev20240728-2.0.0</version>
12+
<name>Cloud Monitoring API v3-rev20240728-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-rev20240721-2.0.0</version>
25+
<version>v3-rev20240728-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-rev20240721-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v3-rev20240728-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)