File tree 3 files changed +16
-16
lines changed
3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -389,12 +389,6 @@ var PolicyModalView = React.createClass({
389
389
390
390
< Input type = 'text' label = 'Tenant Name' ref = 'tenantName' defaultValue = { obj . tenantName } placeholder = 'Tenant Name' />
391
391
392
- < Input type = 'text' label = 'To Endpoint Group' ref = 'toEndpointGroup' defaultValue = { obj . toEndpointGroup } placeholder = 'To Endpoint Group' />
393
-
394
- < Input type = 'text' label = 'IP Address' ref = 'toIpAddress' defaultValue = { obj . toIpAddress } placeholder = 'IP Address' />
395
-
396
- < Input type = 'text' label = 'To Network' ref = 'toNetwork' defaultValue = { obj . toNetwork } placeholder = 'To Network' />
397
-
398
392
</ div >
399
393
< div className = 'modal-footer' >
400
394
< Button onClick = { this . props . onRequestHide } > Close</ Button >
@@ -512,6 +506,12 @@ var RuleModalView = React.createClass({
512
506
513
507
< Input type = 'text' label = 'Tenant Name' ref = 'tenantName' defaultValue = { obj . tenantName } placeholder = 'Tenant Name' />
514
508
509
+ < Input type = 'text' label = 'To Endpoint Group' ref = 'toEndpointGroup' defaultValue = { obj . toEndpointGroup } placeholder = 'To Endpoint Group' />
510
+
511
+ < Input type = 'text' label = 'IP Address' ref = 'toIpAddress' defaultValue = { obj . toIpAddress } placeholder = 'IP Address' />
512
+
513
+ < Input type = 'text' label = 'To Network' ref = 'toNetwork' defaultValue = { obj . toNetwork } placeholder = 'To Network' />
514
+
515
515
</ div >
516
516
< div className = 'modal-footer' >
517
517
< Button onClick = { this . props . onRequestHide } > Close</ Button >
Original file line number Diff line number Diff line change @@ -593,12 +593,12 @@ func (c *ContivClient) BgpPost(obj *Bgp) error {
593
593
}
594
594
595
595
// BgpList lists all Bgp objects
596
- func (c * ContivClient ) BgpList () (* []Bgp , error ) {
596
+ func (c * ContivClient ) BgpList () (* []* Bgp , error ) {
597
597
// build key and URL
598
598
url := c .baseURL + "/api/Bgps/"
599
599
600
600
// http get the object
601
- var objList []Bgp
601
+ var objList []* Bgp
602
602
err := httpGet (url , & objList )
603
603
if err != nil {
604
604
log .Errorf ("Error getting Bgps. Err: %v" , err )
Original file line number Diff line number Diff line change @@ -1842,14 +1842,6 @@ func ValidateNetwork(obj *Network) error {
1842
1842
return errors .New ("tenantName string too long" )
1843
1843
}
1844
1844
1845
- if len (obj .ToEndpointGroup ) > 64 {
1846
- return errors .New ("toEndpointGroup string too long" )
1847
- }
1848
-
1849
- if len (obj .ToNetwork ) > 64 {
1850
- return errors .New ("toNetwork string too long" )
1851
- }
1852
-
1853
1845
return nil
1854
1846
}
1855
1847
@@ -2369,6 +2361,14 @@ func ValidateRule(obj *Rule) error {
2369
2361
return errors .New ("tenantName string too long" )
2370
2362
}
2371
2363
2364
+ if len (obj .ToEndpointGroup ) > 64 {
2365
+ return errors .New ("toEndpointGroup string too long" )
2366
+ }
2367
+
2368
+ if len (obj .ToNetwork ) > 64 {
2369
+ return errors .New ("toNetwork string too long" )
2370
+ }
2371
+
2372
2372
return nil
2373
2373
}
2374
2374
You can’t perform that action at this time.
0 commit comments