Skip to content

Commit 92c679a

Browse files
reshmagiliyalshaleman
authored andcommitted
adding Burst field to netprofile (#37)
1 parent 185e865 commit 92c679a

5 files changed

+18
-2
lines changed

client/contivModel.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ var NetprofileSummaryView = React.createClass({
376376
<ModalTrigger modal={<NetprofileModalView netprofile={ netprofile }/>}>
377377
<tr key={ netprofile.key } className="info">
378378

379-
379+
380380
</tr>
381381
</ModalTrigger>
382382
);
@@ -388,7 +388,7 @@ var NetprofileSummaryView = React.createClass({
388388
<thead>
389389
<tr>
390390

391-
391+
392392
</tr>
393393
</thead>
394394
<tbody>
@@ -412,6 +412,8 @@ var NetprofileModalView = React.createClass({
412412

413413
<Input type='text' label='Allocated bandwidth' ref='bandwidth' defaultValue={obj.bandwidth} placeholder='Allocated bandwidth' />
414414

415+
<Input type='text' label='burst size' ref='burst' defaultValue={obj.burst} placeholder='burst size' />
416+
415417
<Input type='text' label='Network profile name' ref='profileName' defaultValue={obj.profileName} placeholder='Network profile name' />
416418

417419
<Input type='text' label='Tenant name' ref='tenantName' defaultValue={obj.tenantName} placeholder='Tenant name' />

client/contivModelClient.go

+1
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ type Netprofile struct {
305305

306306
DSCP int `json:"DSCP,omitempty"` // DSCP
307307
Bandwidth string `json:"bandwidth,omitempty"` // Allocated bandwidth
308+
Burst int `json:"burst,omitempty"` // burst size
308309
ProfileName string `json:"profileName,omitempty"` // Network profile name
309310
TenantName string `json:"tenantName,omitempty"` // Tenant name
310311

client/contivModelClient.py

+1
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ def createNetprofile(self, obj):
306306
jdata = json.dumps({
307307
"DSCP": obj.DSCP,
308308
"bandwidth": obj.bandwidth,
309+
"burst": obj.burst,
309310
"profileName": obj.profileName,
310311
"tenantName": obj.tenantName,
311312
})

contivModel.go

+5
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ type Netprofile struct {
179179

180180
DSCP int `json:"DSCP,omitempty"` // DSCP
181181
Bandwidth string `json:"bandwidth,omitempty"` // Allocated bandwidth
182+
Burst int `json:"burst,omitempty"` // burst size
182183
ProfileName string `json:"profileName,omitempty"` // Network profile name
183184
TenantName string `json:"tenantName,omitempty"` // Tenant name
184185

@@ -2620,6 +2621,10 @@ func ValidateNetprofile(obj *Netprofile) error {
26202621
return errors.New("bandwidth string invalid format")
26212622
}
26222623

2624+
if obj.Burst > 10486 {
2625+
return errors.New("burst Value Out of bound")
2626+
}
2627+
26232628
if len(obj.ProfileName) > 64 {
26242629
return errors.New("profileName string too long")
26252630
}

netProfile.json

+7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@
3535
"title": "DSCP",
3636
"description": "DSCP value",
3737
"ShowSummary": true
38+
},
39+
"burst": {
40+
"type": "int",
41+
"title": "burst size",
42+
"max": 10486,
43+
"description": "burst size",
44+
"ShowSummary": true
3845
}
3946
},
4047
"link-sets": {

0 commit comments

Comments
 (0)