Skip to content

Commit 8e88827

Browse files
reshmagiliyalshaleman
authored andcommitted
contivmodel changes w.r.t making bandwidth format flexible. (#33)
1 parent cc05737 commit 8e88827

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contivModel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2570,7 +2570,7 @@ func ValidateNetprofile(obj *Netprofile) error {
25702570
return errors.New("bandwidth string too long")
25712571
}
25722572

2573-
bandwidthMatch := regexp.MustCompile("^((([1-9][0-9]*((k|K|m|M|g|G)(bps|BPS)))|(K|k|M|m|G|g)|(K|k|M|m|G|g)(b))|(([1-9][0-9]* ((k|K|m|M|g|G)(bps|BPS)))|(K|k|M|m|G|g)|(K|k|M|m|G|g)(b)))?$")
2573+
bandwidthMatch := regexp.MustCompile("^([1-9][0-9]* (([kmgKMG{1}]bps)|[kmgKMG{1}]|(kb|Kb|Gb|gb|Mb|mb)))?$|^([1-9][0-9]*(((k|m|g|K|G|M)bps)|(k|m|g|K|M|G)|(kb|Kb|Gb|gb|Mb|mb)))?$")
25742574
if bandwidthMatch.MatchString(obj.Bandwidth) == false {
25752575
return errors.New("bandwidth string invalid format")
25762576
}

netProfile.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"bandwidth": {
2323
"type": "string",
2424
"length": 64,
25-
"format": "^((([1-9][0-9]*((k|K|m|M|g|G)(bps|BPS)))|(K|k|M|m|G|g)|(K|k|M|m|G|g)(b))|(([1-9][0-9]* ((k|K|m|M|g|G)(bps|BPS)))|(K|k|M|m|G|g)|(K|k|M|m|G|g)(b)))?$",
25+
"format": "^([1-9][0-9]* (([kmgKMG{1}]bps)|[kmgKMG{1}]|(kb|Kb|Gb|gb|Mb|mb)))?$|^([1-9][0-9]*(((k|m|g|K|G|M)bps)|(k|m|g|K|M|G)|(kb|Kb|Gb|gb|Mb|mb)))?$",
2626
"title": "Allocated bandwidth",
2727
"description": "Amount of allocated outbound bandwidth",
2828
"ShowSummary": true

0 commit comments

Comments
 (0)