NSX-T Data Center REST API
Create a new VNI Pool.
Creates a new VNI pool using the specified VNI pool range. The rangeshould be non-overlapping with an existing range. If the range in
payload is present or overlaps with an existing range, return code 400
with bad request and an error message is returned mentioning that the
given range overlaps with an existing range.
Request:
Method:
POST
URI Path(s):
/api/v1/pools/vni-pools
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
VniPool+
Example Request:
{ "display_name": "VNI-POOL1", "description": "VNI-POOL1 Description", "ranges": [ { "start": 65536, "end": 75000 }, { "start": 5000, "end": 65535 } ] }Successful Response:
Response Code:
201 Created
Response Headers:
Content-type: application/json
Response Body:
VniPool+