routers_named_sets
Creates, updates, deletes, gets or lists a routers_named_sets resource.
Overview
| Name | routers_named_sets |
| Type | Resource |
| Id | google.compute.routers_named_sets |
Fields
The following fields are returned by SELECT queries:
- list_named_sets
| Name | Datatype | Description |
|---|---|---|
id | string | [Output Only] The unique identifier for the resource. This identifier is defined by the server. |
etag | string | |
kind | string | Output only. [Output Only] Type of resource. Alwayscompute#routersListNamedSets for lists of named sets. (default: compute#routersListNamedSets) |
nextPageToken | string | [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results. |
result | array | [Output Only] A list of named sets. |
selfLink | string | Output only. [Output Only] Server-defined URL for this resource. |
unreachables | array | Output only. [Output Only] Unreachable resources. |
warning | object | [Output Only] Informational warning message. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_named_sets | select | project, region, router | returnPartialSuccess, orderBy, maxResults, pageToken, filter | Retrieves a list of router named set subresources 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 | |
region | string | |
router | string | |
filter | string | |
maxResults | integer (uint32) | |
orderBy | string | |
pageToken | string | |
returnPartialSuccess | boolean |
SELECT examples
- list_named_sets
Retrieves a list of router named set subresources available to the
specified project.
SELECT
id,
etag,
kind,
nextPageToken,
result,
selfLink,
unreachables,
warning
FROM google.compute.routers_named_sets
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND router = '{{ router }}' -- required
AND returnPartialSuccess = '{{ returnPartialSuccess }}'
AND orderBy = '{{ orderBy }}'
AND maxResults = '{{ maxResults }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}'
;