Get VRF Context Profile (v2.0)
GET/v2.0/api/tenants/:tenant_id/vrfcontextprofiles/:vrf_context_profile_id
Get a VRF context profile.
Request
Path Parameters
ID of the tenant.
The ID of the VRF context profile.
Responses
- 200
- 404
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
VRF profile is enabled by default. True / False.
Description of the VRF profile. Max size = 256.
The VRF profile ID.
The name of the VRF profile. Max size = 128.
A information field that can be added to identify the VRF profile. Maximum 10 unique tags of length 1024 each are allowed.
The VRF context IDs.
vrf_context_route_leak_rules VRFContextRouteLeakRule[]
The valid VRF context leak rules.
Description of the Route Leak Rule. Max size = 256.
The destination VRF ID for the Route Leak Rule.
The leaked IPv4 prefixes of the Route Leak Rule. The leaked IPv4 prefix in the route leak rule must match the prefix configured on the interface.
The name of the Route Leak Rule. Max size = 128.
The SRC VRF ID.
{
"default_vrf_context_profile": true,
"id": "string",
"name": "string",
"tags": [
"string"
],
"vrf_context_ids": [
"string"
],
"vrf_context_route_leak_rules": [
{
"dest_vrf_context_id": "string",
"ipv4_prefixes": [
"string"
],
"name": "string",
"src_vrf_context_id": "string"
}
]
}
NOT FOUND
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "VRF_CONTEXT_PROFILE_NOT_FOUND"
}
]
}
}