Get Multicast RP Configs (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/elements/:element_id/multicastrps
List all the multicast RP configs.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
site_id stringrequired
ID of the site.
element_id stringrequired
ID of the element.
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 MulticastRPConfig[]
description
The description of the multicast RP configuration.
groups Group[]required
The multicast group address. Max length 1024.
ipv4_prefix string
The IPv4 prefix of the for the multicast.
is_active_rp boolean
The Active RP for the multicast.
id string
The ID of the multicast RP.
ipv4_address stringrequired
The address of the IPv4.
name stringrequired
The resource name. Max length 128.
tags string[]
A information field that can be added to identify the event multicast RP config. Maximum 10 unique tags of length 1024 each are allowed.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"groups": [
{
"ipv4_prefix": "string",
"is_active_rp": true
}
],
"id": "string",
"ipv4_address": "string",
"name": "string",
"tags": [
"string"
]
}
]
}
Loading...