- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Lists the Snooze
s associated with a project. Can optionally pass in filter
, which specifies predicates to match Snooze
s.
HTTP request
GET https://monitoring.googleapis.com/v3/{parent}/snoozes
Path parameters
| Parameters | |
|---|---|
parent
|
Required. The project
whose
|
Query parameters
filter
string
Optional. Optional filter to restrict results to the given criteria. The following fields are supported.
-
interval.start_time -
interval.end_time
For example:
interval.start_time > "2022-03-11T00:00:00-08:00" AND
interval.end_time < "2022-03-12T00:00:00-08:00"
pageSize
integer
Optional. The maximum number of results to return for a single query. The server may further constrain the maximum number of results returned in a single page. The value should be in the range [1, 1000]. If the value given is outside this range, the server will decide the number of results to be returned.
pageToken
string
Optional. The nextPageToken
from a previous call to ListSnoozesRequest
to get the next page of results.
Request body
The request body must be empty.
Response body
The results of a successful snoozes.list
call, containing the matching Snooze
s.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"snoozes"
:
[
{
object (
|
| Fields | |
|---|---|
snoozes[]
|
|
nextPageToken
|
Page token for repeated calls to |
Authorization scopes
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/cloud-platform -
https://www.googleapis.com/auth/monitoring -
https://www.googleapis.com/auth/monitoring.read
For more information, see the Authentication Overview .

