NSX-T Data Center REST API
Create or update a route map
If a route map with the route-map-id is not already present,create a new route map. If it already exists, replace the
route map instance with the new object.
This API is available when using VMware Cloud (AWS, Dell-EMC, Outpost, Hyperscalers) or VMware NSX-T.
Request:
Method:
PUT
URI Path(s):
/policy/api/v1/infra/tier-0s/<tier-0-id>/route-maps/<route-map-id>
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
Tier0RouteMap+
Example Request:
PUT https://<policy-mgr>/policy/api/v1/infra/tier-0s/vmc_prv/route-maps/rm1 { "entries": [ { "community_list_matches": [ { "criteria": "/infra/tier-0s/vmc/community-lists/cl1", "match_operator": "MATCH_ALL" }], "set": { "as_path_prepend": "3354 1234", "med": 20, "weight": 12 }, "action": "PERMIT" }, { "prefix_list_matches": [ "/infra/tier-0s/vmc/prefix-lists/pl1" ], "set": { "as_path_prepend": "3354 1234", "med": 20, "weight": 12 }, "action": "PERMIT" } ], "_revision": 0 }Successful Response:
Response Code:
200 OK
Response Headers:
Content-type: application/json
Response Body:
Tier0RouteMap+