vpn_gateways_status
Creates, updates, deletes, gets or lists a vpn_gateways_status
resource.
Overview
Name | vpn_gateways_status |
Type | Resource |
Id | google.compute.vpn_gateways_status |
Fields
The following fields are returned by SELECT
queries:
- get_status
Successful response
Name | Datatype | Description |
---|---|---|
result | object | (id: VpnGatewayStatus) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_status | select | project , region , vpnGateway | Returns the status for the specified VPN gateway. |
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 | |
vpnGateway | string |
SELECT
examples
- get_status
Returns the status for the specified VPN gateway.
SELECT
result
FROM google.compute.vpn_gateways_status
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND vpnGateway = '{{ vpnGateway }}' -- required;