network_endpoints
Creates, updates, deletes, gets or lists a network_endpoints
resource.
Overview
Name | network_endpoints |
Type | Resource |
Id | google.compute.network_endpoints |
Fields
The following fields are returned by SELECT
queries:
- list_network_endpoints
Successful response
Name | Datatype | Description |
---|---|---|
id | string | [Output Only] Unique identifier for the resource; defined by the server. |
items | array | A list of NetworkEndpointWithHealthStatus resources. |
kind | string | [Output Only] The resource type, which is always compute#networkEndpointGroupsListNetworkEndpoints for the list of network endpoints in the specified network endpoint group. (default: compute#networkEndpointGroupsListNetworkEndpoints) |
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 than maxResults, 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. |
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_network_endpoints | select | project , region , networkEndpointGroup | filter , maxResults , orderBy , pageToken , returnPartialSuccess | Lists the network endpoints in the specified network endpoint group. |
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 |
---|---|---|
networkEndpointGroup | string | |
project | string | |
region | string | |
filter | string | |
maxResults | integer (uint32) | |
orderBy | string | |
pageToken | string | |
returnPartialSuccess | boolean |
SELECT
examples
- list_network_endpoints
Lists the network endpoints in the specified network endpoint group.
SELECT
id,
items,
kind,
nextPageToken,
warning
FROM google.compute.network_endpoints
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND networkEndpointGroup = '{{ networkEndpointGroup }}' -- required
AND filter = '{{ filter }}'
AND maxResults = '{{ maxResults }}'
AND orderBy = '{{ orderBy }}'
AND pageToken = '{{ pageToken }}'
AND returnPartialSuccess = '{{ returnPartialSuccess }}';