NSX-T Data Center REST API
Update a specific Static Route Rule on a Logical Router (Deprecated)
Update a specific static route on the specified logical router.Deprecated:
Please use below Policy APIs.
PUT /policy/api/v1/infra/tier-0s/<tier-0-id>/static-routes/<route-id>
PUT /policy/api/v1/infra/tier-1s/<tier-1-id>/static-routes/<route-id>
Request:
Method:
              PUT
            URI Path(s):
              
                /api/v1/logical-routers/{logical-router-id}/routing/static-routes/{id}
                
              
            Request Headers:
                n/a
            Query Parameters:
    n/a
  Request Body:
    StaticRoute+
  Example Request:
PUT https://<nsx-mgr>/api/v1/logical-routers/7a62a0c5-1ea1-4b25-9d43-dce1c0fa4b8c/routing/static-routes/65fb67d8-0485-4c23-8e59-b9ccd8799a4c { "resource_type": "StaticRoute", "description": "Static route to customer A", "display_name": "to customer A", "next_hops": [ { "administrative_distance": 2, "ip_address": "192.168.200.254" } ], "network": "192.168.200.0/24", "_revision": 0 }Successful Response:
Response Code:
                200 OK
              Response Headers:
                  
                  Content-type: application/json
                Response Body:
    StaticRoute+