summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts
blob: 84548ce45cffe4c1b0bc16d32970a36b780abb15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export interface TopologyNode {
  "node-id": string;
  "netconf-node-topology:connection-status": string;
}

/**
 * Represents restConf network element topology.
 */
export interface Topology {
  "topology-id": string;
  "node": TopologyNode[];
}