region_notification_endpoints
Creates, updates, deletes, gets or lists a region_notification_endpoints resource.
Overview
| Name | region_notification_endpoints |
| Type | Resource |
| Id | google.compute.region_notification_endpoints |
Fields
The following fields are returned by SELECT queries:
- aggregated_list
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
aggregated_list | select | project | filter, serviceProjectNumber, maxResults, pageToken, includeAllScopes, orderBy, returnPartialSuccess | Retrieves the list of all NotificationEndpoint resources, regional and global, available to the specified project. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
project | string | |
filter | string | |
includeAllScopes | boolean | |
maxResults | integer (uint32) | |
orderBy | string | |
pageToken | string | |
returnPartialSuccess | boolean | |
serviceProjectNumber | string (int64) |
SELECT examples
- aggregated_list
Retrieves the list of all NotificationEndpoint resources,
regional and global, available to the specified project.
SELECT
*
FROM google.compute.region_notification_endpoints
WHERE project = '{{ project }}' -- required
AND filter = '{{ filter }}'
AND serviceProjectNumber = '{{ serviceProjectNumber }}'
AND maxResults = '{{ maxResults }}'
AND pageToken = '{{ pageToken }}'
AND includeAllScopes = '{{ includeAllScopes }}'
AND orderBy = '{{ orderBy }}'
AND returnPartialSuccess = '{{ returnPartialSuccess }}'
;