Skip to content

Commit 20bdc07

Browse files
committed
Add description for clarity
1 parent 532d767 commit 20bdc07

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

contivModel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2323,7 +2323,7 @@ func ValidateRule(obj *Rule) error {
23232323
return errors.New("action string invalid format")
23242324
}
23252325

2326-
directionMatch := regexp.MustCompile("^(in|out|both)$")
2326+
directionMatch := regexp.MustCompile("^(in|out)$")
23272327
if directionMatch.MatchString(obj.Direction) == false {
23282328
return errors.New("direction string invalid format")
23292329
}

rule.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"title": "Rule Name",
1212
"length": 64,
1313
"title": "Rule Id",
14+
"description": "Rule identifier, unique string to identify the rule within policy",
1415
"showSummary": true
1516
},
1617
"policyName": {
@@ -27,7 +28,7 @@
2728
},
2829
"direction": {
2930
"type": "string",
30-
"format": "^(in|out|both)$",
31+
"format": "^(in|out)$",
3132
"title": "Direction",
3233
"showSummary": true
3334
},
@@ -37,40 +38,47 @@
3738
"max": 100,
3839
"default": "1",
3940
"title": "Priority",
41+
"description": "Priority of the rule. Higher the number, higher the priority",
4042
"showSummary": true
4143
},
4244
"fromEndpointGroup": {
4345
"type": "string",
4446
"length": 64,
4547
"title": "From Endpoint Group",
48+
"description": "Match from endpoint group. Valid only in incoming direction",
4649
"showSummary": true
4750
},
4851
"toEndpointGroup": {
4952
"type": "string",
5053
"length": 64,
5154
"title": "To Endpoint Group",
55+
"description": "Match to endpoint group. Valid only in outoing direction",
5256
"showSummary": true
5357
},
5458
"fromNetwork": {
5559
"type": "string",
5660
"length": 64,
5761
"title": "From Network",
62+
"description": "Match from network. Valid only in incoming direction",
5863
"showSummary": true
5964
},
6065
"toNetwork": {
6166
"type": "string",
6267
"length": 64,
6368
"title": "To Network",
69+
"description": "Match to network. Valid only in outgoing direction",
6470
"showSummary": true
6571
},
6672
"fromIpAddress": {
6773
"type": "string",
6874
"title": "IP Address",
75+
"description": "Match from IP address. Valid only in incoming direction",
6976
"showSummary": true
7077
},
7178
"toIpAddress": {
7279
"type": "string",
7380
"title": "IP Address",
81+
"description": "Match to IP address. Valid only in outgoing direction",
7482
"showSummary": true
7583
},
7684
"protocol": {

0 commit comments

Comments
 (0)