summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts')
-rw-r--r--sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts
new file mode 100644
index 000000000..84548ce45
--- /dev/null
+++ b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/topologyNetConf.ts
@@ -0,0 +1,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[];
+}