Skip to main content

region_notification_endpoints

Creates, updates, deletes, gets or lists a region_notification_endpoints resource.

Overview

Nameregion_notification_endpoints
TypeResource
Idgoogle.compute.region_notification_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
aggregated_listselectprojectfilter, serviceProjectNumber, maxResults, pageToken, includeAllScopes, orderBy, returnPartialSuccessRetrieves 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.

NameDatatypeDescription
projectstring
filterstring
includeAllScopesboolean
maxResultsinteger (uint32)
orderBystring
pageTokenstring
returnPartialSuccessboolean
serviceProjectNumberstring (int64)

SELECT examples

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 }}'
;