NSX-T Data Center REST API

RoutingTable (type)

{
  "additionalProperties": false,
  "description": "Routing table.",
  "id": "RoutingTable",
  "module_id": "PolicyConnectivityStatistics",
  "properties": {
    "count": {
      "description": "Entry count.",
      "readonly": true,
      "title": "Entry count",
      "type": "int"
    },
    "edge_node": {
      "description": "Edge node path.",
      "readonly": true,
      "title": "Edge node path",
      "type": "string"
    },
    "error_message": {
      "description": "Routing table fetch error message, populated only if status if failure.",
      "readonly": true,
      "title": "Routing table fetch error.",
      "type": "string"
    },
    "route_entries": {
      "description": "Route entries.",
      "items": {
        "$ref": "RoutingEntry"
      },
      "required": true,
      "title": "Route entries",
      "type": "array"
    },
    "status": {
      "description": "Routing table fetch status from Transport node.",
      "enum": [
        "SUCCESS",
        "FAILURE",
        "NOT_FOUND"
      ],
      "readonly": true,
      "title": "Routing table fetch status.",
      "type": "string"
    },
    "transport_node_path": {
      "description": "Transport node path.",
      "readonly": true,
      "title": "Transport node path",
      "type": "string"
    }
  },
  "title": "Routing table",
  "type": "object"
}