File tree 4 files changed +18
-0
lines changed
4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -282,6 +282,8 @@ var NetworkSummaryView = React.createClass({
282
282
283
283
< td > { network . networkName } </ td >
284
284
285
+ < td > { network . nwType } </ td >
286
+
285
287
< td > { network . pktTag } </ td >
286
288
287
289
< td > { network . subnet } </ td >
@@ -301,6 +303,7 @@ var NetworkSummaryView = React.createClass({
301
303
< th > Encapsulation </ th >
302
304
< th > Gateway </ th >
303
305
< th > Network name </ th >
306
+ < th > Network Type </ th >
304
307
< th > Vlan/Vxlan Tag </ th >
305
308
< th > Subnet </ th >
306
309
</ tr >
@@ -328,6 +331,8 @@ var NetworkModalView = React.createClass({
328
331
329
332
< Input type = 'text' label = 'Network name' ref = 'networkName' defaultValue = { obj . networkName } placeholder = 'Network name' />
330
333
334
+ < Input type = 'text' label = 'Network Type' ref = 'nwType' defaultValue = { obj . nwType } placeholder = 'Network Type' />
335
+
331
336
< Input type = 'text' label = 'Vlan/Vxlan Tag' ref = 'pktTag' defaultValue = { obj . pktTag } placeholder = 'Vlan/Vxlan Tag' />
332
337
333
338
< Input type = 'text' label = 'Subnet' ref = 'subnet' defaultValue = { obj . subnet } placeholder = 'Subnet' />
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ type Network struct {
225
225
Encap string `json:"encap,omitempty"` // Encapsulation
226
226
Gateway string `json:"gateway,omitempty"` // Gateway
227
227
NetworkName string `json:"networkName,omitempty"` // Network name
228
+ NwType string `json:"nwType,omitempty"` // Network Type
228
229
PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag
229
230
Subnet string `json:"subnet,omitempty"` // Subnet
230
231
TenantName string `json:"tenantName,omitempty"` // Tenant Name
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ type Network struct {
94
94
Encap string `json:"encap,omitempty"` // Encapsulation
95
95
Gateway string `json:"gateway,omitempty"` // Gateway
96
96
NetworkName string `json:"networkName,omitempty"` // Network name
97
+ NwType string `json:"nwType,omitempty"` // Network Type
97
98
PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag
98
99
Subnet string `json:"subnet,omitempty"` // Subnet
99
100
TenantName string `json:"tenantName,omitempty"` // Tenant Name
@@ -1873,6 +1874,11 @@ func ValidateNetwork(obj *Network) error {
1873
1874
return errors .New ("networkName string too long" )
1874
1875
}
1875
1876
1877
+ nwTypeMatch := regexp .MustCompile ("^(infra|data)$" )
1878
+ if nwTypeMatch .MatchString (obj .NwType ) == false {
1879
+ return errors .New ("nwType string invalid format" )
1880
+ }
1881
+
1876
1882
subnetMatch := regexp .MustCompile ("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\ .(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\ -(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$" )
1877
1883
if subnetMatch .MatchString (obj .Subnet ) == false {
1878
1884
return errors .New ("subnet string invalid format" )
Original file line number Diff line number Diff line change 17
17
"title" : " Tenant Name" ,
18
18
"length" : 64
19
19
},
20
+ "nwType" : {
21
+ "type" : " string" ,
22
+ "format" : " ^(infra|data)$" ,
23
+ "title" : " Network Type" ,
24
+ "showSummary" : true
25
+ },
20
26
"encap" : {
21
27
"type" : " string" ,
22
28
"format" : " ^(vlan|vxlan)$" ,
You can’t perform that action at this time.
0 commit comments