Skip to main content

router_status

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

Overview

Namerouter_status
TypeResource
Idgoogle.compute.router_status

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
kindstringType of resource. (default: compute#routerStatusResponse)
resultobject (id: RouterStatus)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_router_statusselectproject, region, routerRetrieves 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.

NameDatatypeDescription
projectstring
regionstring
routerstring

SELECT examples

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;