File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -2323,7 +2323,7 @@ func ValidateRule(obj *Rule) error {
2323
2323
return errors .New ("action string invalid format" )
2324
2324
}
2325
2325
2326
- directionMatch := regexp .MustCompile ("^(in|out|both )$" )
2326
+ directionMatch := regexp .MustCompile ("^(in|out)$" )
2327
2327
if directionMatch .MatchString (obj .Direction ) == false {
2328
2328
return errors .New ("direction string invalid format" )
2329
2329
}
Original file line number Diff line number Diff line change 11
11
"title" : " Rule Name" ,
12
12
"length" : 64 ,
13
13
"title" : " Rule Id" ,
14
+ "description" : " Rule identifier, unique string to identify the rule within policy" ,
14
15
"showSummary" : true
15
16
},
16
17
"policyName" : {
27
28
},
28
29
"direction" : {
29
30
"type" : " string" ,
30
- "format" : " ^(in|out|both )$" ,
31
+ "format" : " ^(in|out)$" ,
31
32
"title" : " Direction" ,
32
33
"showSummary" : true
33
34
},
37
38
"max" : 100 ,
38
39
"default" : " 1" ,
39
40
"title" : " Priority" ,
41
+ "description" : " Priority of the rule. Higher the number, higher the priority" ,
40
42
"showSummary" : true
41
43
},
42
44
"fromEndpointGroup" : {
43
45
"type" : " string" ,
44
46
"length" : 64 ,
45
47
"title" : " From Endpoint Group" ,
48
+ "description" : " Match from endpoint group. Valid only in incoming direction" ,
46
49
"showSummary" : true
47
50
},
48
51
"toEndpointGroup" : {
49
52
"type" : " string" ,
50
53
"length" : 64 ,
51
54
"title" : " To Endpoint Group" ,
55
+ "description" : " Match to endpoint group. Valid only in outoing direction" ,
52
56
"showSummary" : true
53
57
},
54
58
"fromNetwork" : {
55
59
"type" : " string" ,
56
60
"length" : 64 ,
57
61
"title" : " From Network" ,
62
+ "description" : " Match from network. Valid only in incoming direction" ,
58
63
"showSummary" : true
59
64
},
60
65
"toNetwork" : {
61
66
"type" : " string" ,
62
67
"length" : 64 ,
63
68
"title" : " To Network" ,
69
+ "description" : " Match to network. Valid only in outgoing direction" ,
64
70
"showSummary" : true
65
71
},
66
72
"fromIpAddress" : {
67
73
"type" : " string" ,
68
74
"title" : " IP Address" ,
75
+ "description" : " Match from IP address. Valid only in incoming direction" ,
69
76
"showSummary" : true
70
77
},
71
78
"toIpAddress" : {
72
79
"type" : " string" ,
73
80
"title" : " IP Address" ,
81
+ "description" : " Match to IP address. Valid only in outgoing direction" ,
74
82
"showSummary" : true
75
83
},
76
84
"protocol" : {
You can’t perform that action at this time.
0 commit comments