router_status
Creates, updates, deletes, gets or lists a router_status resource.
Overview
| Name | router_status |
| Type | Resource |
| Id | google.compute.router_status |
Fields
The following fields are returned by SELECT queries:
- get_router_status
| Name | Datatype | Description |
|---|---|---|
kind | string | Type of resource. (default: compute#routerStatusResponse) |
result | object | (id: RouterStatus) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_router_status | select | project, region, router | Retrieves runtime information of the specified router. |
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 |
SELECT examples
- get_router_status
Retrieves runtime information of the specified router.
SELECT
kind,
result
FROM google.compute.router_status
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND router = '{{ router }}' -- required
;