router_nat_ip_info
Creates, updates, deletes, gets or lists a router_nat_ip_info resource.
Overview
| Name | router_nat_ip_info |
| Type | Resource |
| Id | google.compute.router_nat_ip_info |
Fields
The following fields are returned by SELECT queries:
- get_nat_ip_info
| Name | Datatype | Description |
|---|---|---|
result | array | [Output Only] A list of NAT IP information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_nat_ip_info | select | project, region, router | natName | Retrieves runtime NAT IP information. |
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 | |
natName | string |
SELECT examples
- get_nat_ip_info
Retrieves runtime NAT IP information.
SELECT
result
FROM google.compute.router_nat_ip_info
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND router = '{{ router }}' -- required
AND natName = '{{ natName }}'
;