Get VRF Context Profiles (v2.0)
GET/v2.0/api/tenants/:tenant_id/vrfcontextprofiles
List all the VRF context profiles.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
count int32
The actual count.
id string
The ID.
tenant_id string
The tenant ID.
items VRFContextProfile[]
default_vrf_context_profile boolean
VRF profile is enabled by default. True / False.
description
Description of the VRF profile. Max size = 256.
id string
The VRF profile ID.
name stringrequired
The name of the VRF profile. Max size = 128.
tags string[]
A information field that can be added to identify the VRF profile. Maximum 10 unique tags of length 1024 each are allowed.
vrf_context_ids string[]
The VRF context IDs.
vrf_context_route_leak_rules VRFContextRouteLeakRule[]
The valid VRF context leak rules.
description
Description of the Route Leak Rule. Max size = 256.
dest_vrf_context_id string
The destination VRF ID for the Route Leak Rule.
ipv4_prefixes string[]
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.
name string
The name of the Route Leak Rule. Max size = 128.
src_vrf_context_id string
The SRC VRF ID.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"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"
}
]
}
]
}
Loading...