NSX-T Data Center REST API
Associated URIs:
API Description | API Path |
---|---|
List MACSetsReturns paginated list of MACSets |
GET /api/v1/mac-sets
|
Delete MACSetDeletes the specified MACSet. By default, if the MACSet is added to an NSGroup, it won't be deleted. In such situations, pass "force=true" as query param to force delete the MACSet. |
DELETE /api/v1/mac-sets/<mac-set-id>
|
Read MACSetReturns information about the specified MACSet |
GET /api/v1/mac-sets/<mac-set-id>
|
Update MACSetUpdates the specified MACSet. Modifiable parameters include the description, display_name and mac_addresses. |
PUT /api/v1/mac-sets/<mac-set-id>
|
Get all MACAddresses in a MACSetList all MAC addresses in a MACSet |
GET /api/v1/mac-sets/<mac-set-id>/members
|
Add a MAC address to a MACSetAdd an individual MAC address to a MACSet |
POST /api/v1/mac-sets/<mac-set-id>/members
|
Remove a MAC address from given MACSetRemove an individual MAC address from a MACSet |
DELETE /api/v1/mac-sets/<mac-set-id>/members/<mac-address>
|