router_nat_mapping_info
Creates, updates, deletes, gets or lists a router_nat_mapping_info
resource.
Overview
Name | router_nat_mapping_info |
Type | Resource |
Id | google.compute.router_nat_mapping_info |
Fields
The following fields are returned by SELECT
queries:
- get_nat_mapping_info
Successful response
Name | Datatype | Description |
---|---|---|
instanceName | string | Name of the VM instance which the endpoint belongs to |
interfaceNatMappings | array |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_nat_mapping_info | select | project , region , router | filter , maxResults , natName , orderBy , pageToken , returnPartialSuccess | Retrieves runtime Nat mapping information of VM endpoints. |
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) | |
natName | string | |
orderBy | string | |
pageToken | string | |
returnPartialSuccess | boolean |
SELECT
examples
- get_nat_mapping_info
Retrieves runtime Nat mapping information of VM endpoints.
SELECT
instanceName,
interfaceNatMappings
FROM google.compute.router_nat_mapping_info
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND router = '{{ router }}' -- required
AND filter = '{{ filter }}'
AND maxResults = '{{ maxResults }}'
AND natName = '{{ natName }}'
AND orderBy = '{{ orderBy }}'
AND pageToken = '{{ pageToken }}'
AND returnPartialSuccess = '{{ returnPartialSuccess }}';