forked from contiv-experimental/contivmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetProfile.json
59 lines (59 loc) · 2.29 KB
/
netProfile.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "contivModel",
"objects": [
{
"name": "netprofile",
"version": "v1",
"type": "object",
"key": ["tenantName", "profileName"],
"cfgProperties": {
"profileName": {
"type": "string",
"title": "Network profile name",
"length": 64,
"ShowSummary": true
},
"tenantName": {
"type": "string",
"description": "Tenant name",
"title": "Tenant name",
"ShowSummary": true
},
"bandwidth": {
"type": "string",
"length": 64,
"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)))?$",
"title": "Allocated bandwidth",
"description": "Amount of allocated outbound bandwidth",
"ShowSummary": true
},
"DSCP": {
"type": "int",
"min": 0,
"max": 63,
"default": "0",
"title": "DSCP",
"description": "DSCP value",
"ShowSummary": true
},
"burst": {
"type": "int",
"title": "burst size",
"max": 10486,
"description": "burst size",
"ShowSummary": true
}
},
"link-sets": {
"endpointGroups": {
"ref": "endpointGroup"
}
},
"links": {
"tenant": {
"ref": "tenant"
}
}
}
]
}