NSX-T Data Center REST API
Update a DHCP IPv6 server's IP pool (Deprecated)
Update a specific ip pool of a given logical DHCP IPv6 server. Deprecated: Please use Policy API: PUT /policy/api/v1/infra/segments/{segment-id} { "display_name" : "segment-1", "subnets": [ { "gateway_address": "2019::200.1.0.1/128", "dhcp_ranges": [ "2019::200.1.0.0-2019::200.255.255.255" ], "dhcp_config": { "resource_type": "SegmentDhcpV6Config", "lease_time": 84600 }, "network": "2019::200.1.1.1/128" } ], "dhcp_config_path" : "/infra/dhcp-server-configs/dhcp-server-profile", "connectivity_path": "/infra/tier-1s/mgw", "_revision" : 0 }Request:
Method:
PUT
URI Path(s):
/api/v1/dhcp/servers/{server-id}/ipv6-ip-pools/{pool-id}
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
DhcpV6IpPool+
Example Request:
{ "display_name" : "DHCP-ip-pool-3", "ranges" : [ { "start" : "2019::200.1.0.0", "end" : "2019::200.255.255.255" }], "_revision" : 0 }Successful Response:
Response Code:
200 OK
Response Headers:
Content-type: application/json
Response Body:
DhcpV6IpPool+