File tree 5 files changed +24
-3
lines changed
5 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,7 @@ var GlobalSummaryView = React.createClass({
313
313
< ModalTrigger modal = { < GlobalModalView global = { global } /> } >
314
314
< tr key = { global . key } className = "info" >
315
315
316
-
316
+
317
317
</ tr >
318
318
</ ModalTrigger >
319
319
) ;
@@ -325,7 +325,7 @@ var GlobalSummaryView = React.createClass({
325
325
< thead >
326
326
< tr >
327
327
328
-
328
+
329
329
</ tr >
330
330
</ thead >
331
331
< tbody >
@@ -345,6 +345,8 @@ var GlobalModalView = React.createClass({
345
345
< div className = 'modal-body' style = { { margin : '5%' , } } >
346
346
347
347
348
+ < Input type = 'text' label = 'Forwarding Mode' ref = 'fwdMode' defaultValue = { obj . fwdMode } placeholder = 'Forwarding Mode' />
349
+
348
350
< Input type = 'text' label = 'name of this block(must be ' global ') ' ref = 'name' defaultValue = { obj . name } placeholder = 'name of this block(must be ' global ') ' / >
349
351
350
352
< Input type = 'text' label = 'Network infrastructure type' ref = 'networkInfraType' defaultValue = { obj . networkInfraType } placeholder = 'Network infrastructure type' />
Original file line number Diff line number Diff line change @@ -266,6 +266,7 @@ type Global struct {
266
266
// every object has a key
267
267
Key string `json:"key,omitempty"`
268
268
269
+ FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
269
270
Name string `json:"name,omitempty"` // name of this block(must be 'global')
270
271
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
271
272
Vlans string `json:"vlans,omitempty"` // Allowed vlan range
Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ def createGlobal(self, obj):
245
245
postUrl = self .baseUrl + '/api/v1/globals/' + obj .name + '/'
246
246
247
247
jdata = json .dumps ({
248
+ "fwdMode" : obj .fwdMode ,
248
249
"name" : obj .name ,
249
250
"networkInfraType" : obj .networkInfraType ,
250
251
"vlans" : obj .vlans ,
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ type Global struct {
140
140
// every object has a key
141
141
Key string `json:"key,omitempty"`
142
142
143
+ FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
143
144
Name string `json:"name,omitempty"` // name of this block(must be 'global')
144
145
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
145
146
Vlans string `json:"vlans,omitempty"` // Allowed vlan range
@@ -2273,6 +2274,15 @@ func ValidateGlobal(obj *Global) error {
2273
2274
2274
2275
// Validate each field
2275
2276
2277
+ if len (obj .FwdMode ) > 64 {
2278
+ return errors .New ("fwdMode string too long" )
2279
+ }
2280
+
2281
+ fwdModeMatch := regexp .MustCompile ("^(bridge|routing)?$" )
2282
+ if fwdModeMatch .MatchString (obj .FwdMode ) == false {
2283
+ return errors .New ("fwdMode string invalid format" )
2284
+ }
2285
+
2276
2286
if len (obj .Name ) > 64 {
2277
2287
return errors .New ("name string too long" )
2278
2288
}
Original file line number Diff line number Diff line change 30
30
"type" : " string" ,
31
31
"title" : " Allwed vxlan range" ,
32
32
"format" : " ^([0-9]{1,8}?-[0-9]{1,8}?)$"
33
- }
33
+ },
34
+ "fwdMode" : {
35
+ "type" : " string" ,
36
+ "title" : " Forwarding Mode" ,
37
+ "length" : 64 ,
38
+ "format" : " ^(bridge|routing)?$" ,
39
+ "ShowSummary" : true
40
+ }
34
41
},
35
42
"operProperties" : {
36
43
"numNetworks" : {
You can’t perform that action at this time.
0 commit comments