Get Router Details
GET/backend/api/openstack/routers/:router_id
Host: https://core.ocplanet.cloud
Retrieve detailed information about a specific router in OpenStack identified by its unique ID.
Request
Responses
- 200
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- Array [
- ]
- ]
id stringrequired
routes arrayrequired
availability_zones string[]required
availability_hints arrayrequired
network_name string
name string
status string
admin_state_up booleanrequired
description string
external_network_id uuid
external_fixed_ips stringrequired
enable_snat booleanrequired
distributed booleanrequired
ha booleanrequired
region string
project uuid
interfaces objects[]
admin_state_up booleanrequired
fixed_ips object[]required
ip_address stringrequired
subnet_id stringrequired
id uuidrequired
network_name stringrequired
{
"id": "string",
"routes": [
null
],
"availability_zones": [
"string"
],
"availability_hints": [
null
],
"network_name": "string",
"name": "string",
"status": "string",
"admin_state_up": true,
"description": "string",
"external_network_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"external_fixed_ips": "string",
"enable_snat": true,
"distributed": true,
"ha": true,
"region": "string",
"project": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"interfaces": [
null
]
}
{
"id": "b635f1b0-8b24-49ec-99a7-d5ca6389969a",
"routes": [],
"availability_zones": [
"nova"
],
"availability_hints": [],
"network_name": "external_network",
"interfaces": [
{
"id": "1743c5eb-2754-4a40-95ed-5291b11a793a",
"network_name": "network60199",
"fixed_ips": [
{
"subnet_id": "b968f4d5-9586-442a-996d-da570a4a6d9d",
"ip_address": "10.0.1.1"
}
],
"admin_state_up": true
}
],
"external_fixed_ips": [
{
"subnet_id": "7e21d26b-f92a-4265-a073-c4abef1fbd9b",
"ip_address": "2.59.220.228"
}
],
"name": "router80778",
"status": "ACTIVE",
"admin_state_up": true,
"description": "",
"external_network_id": "5cf72c55-b9cd-4706-862a-6bc4c3e41bfc",
"enable_snat": true,
"distributed": false,
"ha": false,
"region": "ua-central-1",
"project": "41e4ce1e550a4b4c922db7c287cf5a53"
}
Loading...