Base

get

List the resources that can be accessed from the base url

Network Devices

get

List all network devices.

get

Get a single Network Device

Endpoints

get

Retrieve a collection of endpoints.

options

A pre-flight check generally used for Cross-Origin Resource Sharing (CORS) purposes

get

Get a single Endpoint

put

Register a new endpoint. The PUT is invoked to inform the network controller about the presence of an endpoint. The endpoint schema includes mandatory details of the network device the endpoint is attached to. The attached network device details can be fetched by the endpoint through LLDP (if the endpoint is LLDP capabale) or manual entry in the caller of this API (e.g., broadcast controller). The network may verify these details for security purposes. Verification may happen synchronously, as part of the request. Network controller must create a corresponding network link with this endpoint as the peer device. Peer port id of the new link may or maynot be assigned, i.e, implementation dependent. Subsequent PUT requests should throw error. Updates should be done using PATCH.

patch

Update an existing endpoint attributes.

delete

Delete an existing endpoint.

Network flow

get

Retrieve a collection of network flows.

options

A pre-flight check generally used for Cross-Origin Resource Sharing (CORS) purposes

get

Retrieve a single network-flow with the specified guid.

put

Create a network flow with the specific guid. No subsequent PUT request should be made for this flow and should return error. Use PATCH to update existing network flow.

patch

Update an existing network flow with the specific guid. A network flow is equivalent to and uniquely identified by the sender id and the multicast address, or the <S,G> pair. So, neither the sender id or the multicast address can be updated of an existing flow. A new network flow should be created for a different pair of <S,G>. Moreover, for simplicity, receiver endpoint ids can only be updated using /receivers post or delete request.

delete

Delete the network-flow with the specified guid.

options

A pre-flight check generally used for Cross-Origin Resource Sharing (CORS) purposes

post

Add one or more receivers to this network flow. Receivers included in the body should be appended to the existing receivers, if any. If the forward-flow is set for this network flow, both bandwidth resrvation and flow switching must occur for all new receivers. If the fowrad-flow is not set, only resource reservation should take place. Failure to satisfy for any one receiver should fail for all and fail the complete request. Proper error message should be provided in this scenario. No task should be completed partially, that is, server should employ all-or-nothing strategy.

options

A pre-flight check generally used for Cross-Origin Resource Sharing (CORS) purposes

delete

Delete receiver of this network flow with given id.