Management Plane API > Networking > Logical Routing And Services

Associated URIs:

API Description API Path

Read All IPV6 DADProfiles


Returns all IPv6 DADProfiles.
GET /api/v1/ipv6/dad-profiles (Deprecated)

Create a new DADProfile


Adds a new DADProfile
POST /api/v1/ipv6/dad-profiles (Deprecated)

Delete DAD Profile


Delete DADProfile
DELETE /api/v1/ipv6/dad-profiles/{dad-profile-id} (Deprecated)

Read specified IPV6 DADProfile


Returns information about specified IPv6 DADProfile.
GET /api/v1/ipv6/dad-profiles/{dad-profile-id} (Deprecated)

Update DADProfile


Update DADProfile.
PUT /api/v1/ipv6/dad-profiles/{dad-profile-id} (Deprecated)

Read All IPV6 NDRA Profiles


Returns all IPv6 NDRA Profiles.
GET /api/v1/ipv6/nd-ra-profiles (Deprecated)

Create a new NDRA Profile


Adds a new NDRAProfile
POST /api/v1/ipv6/nd-ra-profiles (Deprecated)

Delete NDRA Profile


Delete NDRAProfile
DELETE /api/v1/ipv6/nd-ra-profiles/{nd-ra-profile-id} (Deprecated)

Read specified IPV6 NDRA Profile


Returns information about specified IPv6 NDRA Profile.
GET /api/v1/ipv6/nd-ra-profiles/{nd-ra-profile-id} (Deprecated)

Update NDRA Profile


Update NDRAProfile
PUT /api/v1/ipv6/nd-ra-profiles/{nd-ra-profile-id} (Deprecated)

List Logical Router Ports


Returns information about all logical router ports. Information includes the
resource_type (LogicalRouterUpLinkPort, LogicalRouterDownLinkPort,
LogicalRouterLinkPort, LogicalRouterLoopbackPort, LogicalRouterCentralizedServicePort);
logical_router_id (the router to which each logical router port is assigned);
and any service_bindings (such as DHCP relay service).
The GET request can include a query parameter (logical_router_id
or logical_switch_id).
GET /api/v1/logical-router-ports (Deprecated)

Create a Logical Router Port


Creates a logical router port. The required parameters include resource_type
(LogicalRouterUpLinkPort, LogicalRouterDownLinkPort, LogicalRouterLinkPort,
LogicalRouterLoopbackPort, LogicalRouterCentralizedServicePort); and
logical_router_id (the router to which each logical router port is assigned).
The service_bindings parameter is optional.
POST /api/v1/logical-router-ports (Deprecated)

Delete a Logical Router Port


Deletes the specified logical router port. You must delete logical router
ports before you can delete the associated logical router. To Delete Tier0
router link port you must have to delete attached tier1 router link port,
otherwise pass "force=true" as query param to force delete the Tier0
router link port.
DELETE /api/v1/logical-router-ports/{logical-router-port-id} (Deprecated)

Read Logical Router Port


Returns information about the specified logical router port.
GET /api/v1/logical-router-ports/{logical-router-port-id} (Deprecated)

Update a Logical Router Port


Modifies the specified logical router port. Required parameters include the
resource_type and logical_router_id. Modifiable parameters include the
resource_type (LogicalRouterUpLinkPort, LogicalRouterDownLinkPort,
LogicalRouterLinkPort, LogicalRouterLoopbackPort, LogicalRouterCentralizedServicePort),
logical_router_id (to reassign the port to a different router), and service_bindings.
PUT /api/v1/logical-router-ports/{logical-router-port-id} (Deprecated)

Get the ARP table (IPv4) or Neighbor Discovery table (IPv6) for the Logical Router Port of the given id


Returns ARP table (IPv4) or Neighbor Discovery table (IPv6) for the
Logical Router Port of the given id, on a node if a query parameter
"transport_node_id=<transport-node-id>" is given. The transport_node_id
parameter is mandatory if the router port is not uplink type.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-router-ports/{logical-router-port-id}/arp-table (Deprecated)

Get the ARP table (IPv4) or Neighbor Discovery table (IPv6) for the Logical Router Port of the given id


Returns ARP table (IPv4) or Neighbor Discovery table (IPv6) in CSV format
for the Logical Router Port of the given id, on a node if a query
parameter "transport_node_id=<transport-node-id>" is given. The
transport_node_id parameter is mandatory if the router port is not uplink
type. Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-router-ports/{logical-router-port-id}/arp-table?format=csv (Deprecated)

Get the Realized State of a Logical Router Port


Return realized state information of a logical router port.
Any configuration update that affects the logical router port can use this API
to get its realized state by passing a request_id returned by the
configuration change operation. e.g. Update configuration of logical router ports,
dhcp relays, etc.
GET /api/v1/logical-router-ports/{logical-router-port-id}/state (Deprecated)

Get the statistics of a specified logical router port on all or a specified node


Returns the statistics for the Logical Router Port. If query parameter
"transport_node_id=<transport-node-id>" is given, only the statistics
from the given node for the logical router port will be returned.
Otherwise the statistics from each node for the same logical router port
will be returned. The transport_node_id is mandatory if the router port
is not uplink type.
The query parameter "source=cached" will be ignored and it will always return
realtime statistics of the logical router port.
GET /api/v1/logical-router-ports/{logical-router-port-id}/statistics (Deprecated)

Get the statistics summary of a specified logical router port


Returns the summation of statistics from all nodes for the Specified
Logical Router Port.
The query parameter "source=realtime" is not supported.
GET /api/v1/logical-router-ports/{logical-router-port-id}/statistics/summary (Deprecated)

List Logical Routers


Returns information about all logical routers, including the UUID, internal
and external transit network addresses, and the router type (TIER0 or
TIER1). You can get information for only TIER0 routers or only the TIER1
routers by including the router_type query parameter.
GET /api/v1/logical-routers (Deprecated)

Create a Logical Router


Creates a logical router. The required parameters are router_type (TIER0 or
TIER1) and edge_cluster_id (TIER0 only). Optional parameters include
internal and external transit network addresses.
POST /api/v1/logical-routers (Deprecated)

Delete a Logical Router


Deletes the specified logical router. You must delete associated logical
router ports before you can delete a logical router. Otherwise use force
delete which will delete all related ports and other entities associated
with that LR. To force delete logical router pass force=true in query param.
DELETE /api/v1/logical-routers/{logical-router-id} (Deprecated)

Read Logical Router


Returns information about the specified logical router.
GET /api/v1/logical-routers/{logical-router-id} (Deprecated)

Re allocate edge node placement of TIER1 service routers


API to re allocate edge node placement for TIER1 logical router. You can
re-allocate service routers of TIER1 in same edge cluster or different edge
cluster. You can also place edge nodes manually and provide maximum two
indices for HA mode ACTIVE_STANDBY. To re-allocate on new edge cluster you
must have existing edge cluster for TIER1 logical router. This will be
disruptive operation and all existing statistics of logical router will be
remove.
POST /api/v1/logical-routers/{logical-router-id}?action=reallocate (Deprecated)

Reprocesses a logical router configuration and publish updates to controller


Reprocess logical router configuration and configuration of related entities like logical router ports, static routing, etc.
Any missing Updates are published to controller.
POST /api/v1/logical-routers/{logical-router-id}?action=reprocess (Deprecated)

Update a Logical Router


Modifies the specified logical router. Modifiable attributes include the
internal_transit_network, external_transit_networks, and edge_cluster_id
(for TIER0 routers).
PUT /api/v1/logical-routers/{logical-router-id} (Deprecated)

Read the debug information for the logical router


API to download below information as text which will be used
for debugging and troubleshooting.
1) Logical router sub-components and ports.
2) Routing configuration as sent to central control plane.
3) TIER1 advertised network information.
GET /api/v1/logical-routers/{logical-router-id}/debug-info?format=text (Deprecated)

List NAT rules of the logical router


Returns paginated list of all user defined NAT rules of the specific
logical router. If a rule_type is provided, only the given type of
rules will be returned. If no rule_type is specified, the rule_type
will be defaulted to NATv4, i.e. only the NATv4 rules will be listed.
GET /api/v1/logical-routers/{logical-router-id}/nat/rules (Deprecated)

Add multiple NAT rules in a specific logical router


Create multiple NAT rules in a specific logical router.
The API succeeds only when all rules are accepted and created successfully.
Any one validation voilation will fail the API, no rule will be created.
The ruleIds of each rules can be found from the responsed message.
POST /api/v1/logical-routers/{logical-router-id}/nat/rules?action=create_multiple (Deprecated)

Add a NAT rule in a specific logical router


Add a NAT rule in a specific logical router.
POST /api/v1/logical-routers/{logical-router-id}/nat/rules (Deprecated)

Delete a specific NAT rule from a logical router


Delete a specific NAT rule from a logical router
DELETE /api/v1/logical-routers/{logical-router-id}/nat/rules/{rule-id} (Deprecated)

Get a specific NAT rule from a given logical router


Get a specific NAT rule from a given logical router
GET /api/v1/logical-routers/{logical-router-id}/nat/rules/{rule-id} (Deprecated)

Update a specific NAT rule from a given logical router


Update a specific NAT rule from a given logical router.
PUT /api/v1/logical-routers/{logical-router-id}/nat/rules/{rule-id} (Deprecated)

Get the statistics of a specified logical router NAT Rule


Returns the summation of statistics from all nodes for the Specified
Logical Router NAT Rule. Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/nat/rules/{rule-id}/statistics (Deprecated)

Get the statistics of all rules of the logical router


Returns the summation of statistics for all rules from all nodes for the Specified
Logical Router. Also gives the per transport node statistics for provided logical router.
The query parameter "source=realtime" is not supported.
GET /api/v1/logical-routers/{logical-router-id}/nat/rules/statistics (Deprecated)

Read the Routing Configuration


Returns the routing configuration for a specified logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing (Deprecated)

Update the Routing Configuration


Modifies the routing configuration for a specified logical router.
PUT /api/v1/logical-routers/{logical-router-id}/routing (Deprecated)

Read the Advertisement Configuration on a Logical Router


Returns information about the routes to be advertised by the specified
TIER1 logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/advertisement (Deprecated)

Update the Advertisement Configuration on a Logical Router


Modifies the route advertisement configuration on the specified logical router.
PUT /api/v1/logical-routers/{logical-router-id}/routing/advertisement (Deprecated)

Read the Advertisement Rules on a Logical Router


Returns the advertisement rule list for the specified
TIER1 logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/advertisement/rules (Deprecated)

Update the Advertisement Rules on a Logical Router


Modifies the advertisement rules on the specified logical
router. The PUT request must include all the rules with the networks parameter. Modifiable
parameters are networks, display_name, and description. Set the rules list to empty to delete/clear all rules.
PUT /api/v1/logical-routers/{logical-router-id}/routing/advertisement/rules (Deprecated)

Read the Routing BFD Configuration


Returns the BFD configuration for all routing BFD peers. This will be inherited |
by all BFD peers for LogicalRouter unless overriden while configuring the Peer.
GET /api/v1/logical-routers/{logical-router-id}/routing/bfd-config (Deprecated)

Update the BFD Configuration for BFD peers for routing


Modifies the BFD configuration for routing BFD peers. Note - the configuration |
changes apply only to those routing BFD peers for which the BFD configuration has |
not been overridden at Peer level.
PUT /api/v1/logical-routers/{logical-router-id}/routing/bfd-config (Deprecated)

Read the BGP Configuration on a Logical Router


Returns information about the BGP configuration on a specified logical
router. Information includes whether or not the BGP configuration is
enabled, the AS number, and whether or not graceful
restart is enabled.
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp (Deprecated)

Update the BGP Configuration on a Logical Router


Modifies the BGP configuration on a specified TIER0 logical router.
Modifiable parameters include enabled, graceful_restart, as_number.
PUT /api/v1/logical-routers/{logical-router-id}/routing/bgp (Deprecated)

Paginated list of BGP community lists on a logical router


Paginated list of BGP Community Lists on a Logical Router
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/community-lists (Deprecated)

Create a new BGP community list on a logical router


Add a new BGP Community List on a Logical Router
POST /api/v1/logical-routers/{logical-router-id}/routing/bgp/community-lists (Deprecated)

Delete a specific BGP community list from a logical router


Delete a specific BGP community list from a Logical Router
DELETE /api/v1/logical-routers/{logical-router-id}/routing/bgp/community-lists/{community-list-id} (Deprecated)

Read a specific BGP community list from a logical router


Read a specific BGP community list from a Logical Router
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/community-lists/{community-list-id} (Deprecated)

Update a specific BGP community list from a logical router


Update a specific BGP community list from a Logical Router
PUT /api/v1/logical-routers/{logical-router-id}/routing/bgp/community-lists/{community-list-id} (Deprecated)

Update a specific BGP community list from a logical router


Update a specific BGP community list from a Logical Router
PUT /api/v1/logical-routers/{logical-router-id}/routing/bgp/communty-lists/{community-list-id} (Deprecated)

Paginated list of BGP Neighbors on a Logical Router


Paginated list of BGP Neighbors on a Logical Router
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors (Deprecated)

Add a new BGP Neighbor on a Logical Router


Add a new BGP Neighbor on a Logical Router
POST /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors (Deprecated)

Delete a specific BGP Neighbor on a Logical Router


Delete a specific BGP Neighbor on a Logical Router
DELETE /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{id} (Deprecated)

Read a specific BGP Neighbor with password on a Logical Router


Read a specific BGP Neighbor details with password on a Logical Router
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{id}?action=show-sensitive-data (Deprecated)

Read a specific BGP Neighbor on a Logical Router


Read a specific BGP Neighbor on a Logical Router
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{id} (Deprecated)

Unset/Delete password property on specific BGP Neighbor on Logical Router


Unset/Delete the password property on the specific BGP Neighbor.
No other property of the BgpNeighbor can be updated using this API
POST /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{id} (Deprecated)

Update a specific BGP Neighbor on a Logical Router


Update a specific BGP Neighbor on a Logical Router
PUT /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{id} (Deprecated)

Get BGP neighbor advertised routes


Returns routes advertised by BGP neighbor from all edge transport nodes on which
this neighbor is currently enabled. It always returns realtime response.
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{neighbor-id}/advertised-routes (Deprecated)

Get BGP neighbor advertised routes in CSV format


Returns routes advertised by BGP neighbor from all edge transport
nodes on which this neighbor is currently enabled in CSV format.
It always returns realtime response.
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{neighbor-id}/advertised-routes?format=csv (Deprecated)

Get BGP neighbor learned routes in CSV format


Returns routes learned by BGP neighbor from all edge transport nodes on
which this neighbor is currently enabled in CSV format.
It always returns realtime response.
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{neighbor-id}/routes?format=csv (Deprecated)

Get BGP neighbor learned routes


Returns routes learned by BGP neighbor from all edge transport nodes on which
this neighbor is currently enabled. It always returns realtime response.
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/{neighbor-id}/routes (Deprecated)

Get the status of all the BGP neighbors for the Logical Router of the given id


Returns the status of all the BGP neighbors for the Logical Router of the given id. To get BGP neighbors status for the logical router from particular node, parameter "transport_node_id=<transportnode_id>" needs to be specified. Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/bgp/neighbors/status (Deprecated)

Get FIB table on a specified node for a logical router


Returns the FIB for the logical router on a node of the given transport-node-id.
Query parameter "transport_node_id=<transport-node-id>" is required.
To filter the result by network address, paramter "network_prefix=<a.b.c.d/mask>"
needs to be specified.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/forwarding-table (Deprecated)

Get FIB table on a specified node for a logical router


Returns the FIB table in CSV format for the logical router on a node of the given
transport-node-id. Query parameter "transport_node_id=<transport-node-id>" is required.
To filter the result by network address, paramter "network_prefix=<a.b.c.d/mask>"
needs to be specified.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/forwarding-table?format=csv (Deprecated)

Paginated List of IPPrefixLists


Paginated List of IPPrefixLists
GET /api/v1/logical-routers/{logical-router-id}/routing/ip-prefix-lists (Deprecated)

Add IPPrefixList on a Logical Router


Adds a new IPPrefixList on a Logical Router
POST /api/v1/logical-routers/{logical-router-id}/routing/ip-prefix-lists (Deprecated)

Delete a specific IPPrefixList on a Logical Router


Deletes a specific IPPrefixList on the specified logical router.
DELETE /api/v1/logical-routers/{logical-router-id}/routing/ip-prefix-lists/{id} (Deprecated)

Get a specific IPPrefixList on a Logical Router


Read a specific IPPrefixList on the specified logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/ip-prefix-lists/{id} (Deprecated)

Update a specific IPPrefixList on a Logical Router


Update a specific IPPrefixList on the specified logical router.
PUT /api/v1/logical-routers/{logical-router-id}/routing/ip-prefix-lists/{id} (Deprecated)

Read the Redistribution Configuration on a Logical Router


Returns information about configured route redistribution for the specified
logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/redistribution (Deprecated)

Update the Redistribution Configuration on a Logical Router


Modifies existing route redistribution rules for the specified TIER0 logical
router.
PUT /api/v1/logical-routers/{logical-router-id}/routing/redistribution (Deprecated)

Read All the Redistribution Rules on a Logical Router


Returns all the route redistribution rules for the specified
logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/redistribution/rules (Deprecated)

Update All the Redistribution Rules on a Logical Router


Modifies all route redistribution rules for the specified TIER0 logical
router. Set the rules list to empty to delete/clear all rules.
PUT /api/v1/logical-routers/{logical-router-id}/routing/redistribution/rules (Deprecated)

Paginated List of RouteMaps


Paginated List of RouteMaps
GET /api/v1/logical-routers/{logical-router-id}/routing/route-maps (Deprecated)

Add RouteMap on a Logical Router


Adds a new RouteMap on a Logical Router
POST /api/v1/logical-routers/{logical-router-id}/routing/route-maps (Deprecated)

Delete a specific RouteMap on a Logical Router


Deletes a specific RouteMap on the specified logical router.
DELETE /api/v1/logical-routers/{logical-router-id}/routing/route-maps/{id} (Deprecated)

Get a specific RouteMap on a Logical Router


Read a specific RouteMap on the specified logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/route-maps/{id} (Deprecated)

Update a specific RouteMap on a Logical Router


Update a specific RouteMap on the specified logical router.
PUT /api/v1/logical-routers/{logical-router-id}/routing/route-maps/{id} (Deprecated)

Get route table on a node for a logical router


Deprecated - Please use /logical-routers/<logical-router-id>/routing/routing-table for RIB and
/logical-routers/<logical-router-id>/routing/forwarding-table for FIB.
Returns the route table in CSV format for the logical router on a node of the given
transport-node-id. Query parameter "transport_node_id=<transport-node-id>" is required.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/route-table?format=csv (Deprecated)

Get route table on a given node for a logical router


Deprecated - Please use /logical-routers/<logical-router-id>/routing/routing-table for RIB and
/logical-routers/<logical-router-id>/routing/forwarding-table for FIB.
Returns the route table for the logical router on a node of the given transport-node-id.
Query parameter "transport_node_id=<transport-node-id>" is required.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/route-table (Deprecated)

Get RIB table on a specified node for a logical router


Returns the route table(RIB) for the logical router on a node of the given transport-node-id.
Query parameter "transport_node_id=<transport-node-id>" is required.
To filter the result by network address, parameter "network_prefix=<a.b.c.d/mask>"
needs to be specified.
To filter the result by route source, parameter "route_source=<source_type>" needs to be specified
where source_type can be BGP, STATIC, CONNECTED, NSX_STATIC, TIER1_NAT or TIER0_NAT.
It is also possible to filter the RIB table using both network address and
route source filter together.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/routing-table (Deprecated)

Get RIB table on a specified node for a logical router


Returns the route table in CSV format for the logical router on a node of the given
transport-node-id. Query parameter "transport_node_id=<transport-node-id>" is required.
To filter the result by network address, paramter "network_prefix=<a.b.c.d/mask>"
needs to be specified.
To filter the result by route source, parameter "route_source=<source_type>" needs to be specified
where source_type can be BGP, STATIC, CONNECTED, NSX_STATIC, TIER1_NAT or TIER0_NAT.
It is also possible to filter the RIB table using both network address and
route source filter together.
Query parameter "source=realtime" is the only supported source.
GET /api/v1/logical-routers/{logical-router-id}/routing/routing-table?format=csv (Deprecated)

Paginated List of Static Routes


Returns information about configured static routes, including the
network address and next hops for each static route.
GET /api/v1/logical-routers/{logical-router-id}/routing/static-routes (Deprecated)

Add Static Routes on a Logical Router


Adds a new static route on a Logical Router
POST /api/v1/logical-routers/{logical-router-id}/routing/static-routes (Deprecated)

Delete a specific Static Route on a Logical Router


Deletes a specific static route on the specified logical router.
DELETE /api/v1/logical-routers/{logical-router-id}/routing/static-routes/{id} (Deprecated)

Get a specific Static Route on a Logical Router


Read a specific static routes on the specified logical router.
GET /api/v1/logical-routers/{logical-router-id}/routing/static-routes/{id} (Deprecated)

Update a specific Static Route Rule on a Logical Router


Update a specific static route on the specified logical router.
PUT /api/v1/logical-routers/{logical-router-id}/routing/static-routes/{id} (Deprecated)

List static routes BFD Peers


Returns information about all BFD peers created on specified logical router for static routes.
GET /api/v1/logical-routers/{logical-router-id}/routing/static-routes/bfd-peers (Deprecated)

Create a static hop BFD peer


Creates a BFD peer for static route. The required parameters includes peer IP address.
POST /api/v1/logical-routers/{logical-router-id}/routing/static-routes/bfd-peers (Deprecated)

Delete a specified static route BFD peer cofigured on a specified logical router


Deletes the specified BFD peer present on specified logical router.
DELETE /api/v1/logical-routers/{logical-router-id}/routing/static-routes/bfd-peers/{bfd-peer-id} (Deprecated)

Read a static route BFD peer


Read the BFD peer having specified ID.
GET /api/v1/logical-routers/{logical-router-id}/routing/static-routes/bfd-peers/{bfd-peer-id} (Deprecated)

Update a static route BFD peer


Modifies the static route BFD peer.
Modifiable parameters includes peer IP, enable flag and configuration of the BFD peer.
PUT /api/v1/logical-routers/{logical-router-id}/routing/static-routes/bfd-peers/{bfd-peer-id} (Deprecated)

Get the Realized State of a Logical Service Router Cluster


Return realized state information of a logical service router cluster.
Any configuration update that affects the logical service router cluster can use
this API to get its realized state by passing a request_id returned by the
configuration change operation. e.g. Update configuration of nat, bgp, bfd, etc.

What is a Service Router?
When a service cannot be distributed is enabled on a Logical Router, a Service Router (SR) is instantiated.
Some examples of services that are not distributed are NAT, DHCP server, Metadata Proxy, Edge Firewall,
Load Balancer and so on.
GET /api/v1/logical-routers/{logical-router-id}/service-cluster/state (Deprecated)

Get the Realized State of a Logical Router


Return realized state information of a logical router.
Any configuration update that affects the logical router can use this API
to get its realized state by passing a request_id returned by the
configuration change operation. e.g. Update configuration of logical router,
static routes, etc.
GET /api/v1/logical-routers/{logical-router-id}/state (Deprecated)

Get the status for the Logical Router of the given id


Returns status for the Logical Router of the given id.
GET /api/v1/logical-routers/{logical-router-id}/status (Deprecated)

Get statistics for all logical router NAT rules on a transport node


Returns the summation of statistics for all rules from all logical routers
which are present on given transport node. Only cached statistics are supported.
The query parameter "source=realtime" is not supported.
GET /api/v1/transport-nodes/{node-id}/statistics/nat-rules