Skip to main content

router_nat_ip_info

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

Overview

Namerouter_nat_ip_info
TypeResource
Idgoogle.compute.router_nat_ip_info

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
resultarray[Output Only] A list of NAT IP information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_nat_ip_infoselectproject, region, routernatNameRetrieves 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.

NameDatatypeDescription
projectstring
regionstring
routerstring
natNamestring

SELECT examples

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