blob: 03f118eb7a47a0d6b91a612b863fabda67a05836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import {
Level1Model, Level1ModelProperties,
Level1ModelResponseInterface
} from "./nodeModel";
import {VfcInstanceGroupMap} from "./vfcInstanceGroupMap";
export interface NetworkProperties extends Level1ModelProperties{
ecomp_generated_naming: string;
network_role: string;
}
export interface NetworkModelResponseInterface extends Level1ModelResponseInterface{
properties: NetworkProperties;
}
export class NetworkModel extends Level1Model{
roles: string[] = [];
properties: NetworkProperties;
constructor(networkJson?: NetworkModelResponseInterface){
super(networkJson);
if(networkJson && networkJson.properties){
this.properties = networkJson.properties;
// expecting network_role to be a comma-saparated list
this.roles = networkJson.properties.network_role ? networkJson.properties.network_role.split(',') : [];
}
}
}
|