You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c.argument('access', type=str, help='Indicates the access allowed for this particular rule.', arg_type=get_enum_type(['Allow', 'Deny', 'AlwaysAllow']))
120
+
c.argument('access', type=str, help='Indicates the access allowed for this particular rule.',
c.argument('kind', type=str, help='Required. Whether the rule is custom or default.Constant filled by server.', arg_type=get_enum_type(['Custom', 'Default']))
123
+
c.argument('kind', type=str, help='Required. Whether the rule is custom or default.Constant filled by server.',
124
+
arg_type=get_enum_type(['Custom', 'Default']))
123
125
c.argument('priority', type=int, help='The priority of the rule.')
124
-
c.argument('sources', action=AddSource, nargs='+', help='The CIDR or source IP ranges. Address prefix type is an enum with values IPPrefix or ServiceTag')
126
+
c.argument('sources', action=AddSource, nargs='+', help='The CIDR or source IP ranges. Address prefix type is'
127
+
' an enum with values IPPrefix or ServiceTag')
125
128
c.argument('destinations', action=AddDestination, nargs='+', help='The destination address prefixes. CIDR or '
126
129
'destination IP ranges. Address prefix type is an enum with values IPPrefix or ServiceTag')
127
130
c.argument('description', type=str, help='A description for this rule. Restricted to 140 chars.')
c.argument('access', type=str, help='Indicates the access allowed for this particular rule.', arg_type=get_enum_type(['Allow', 'Deny', 'AlwaysAllow']))
140
+
c.argument('access', type=str, help='Indicates the access allowed for this particular rule.',
c.argument('kind', type=str, help='Required. Whether the rule is custom or default.Constant filled by server.', arg_type=get_enum_type(['Custom', 'Default']))
143
+
c.argument('kind', type=str, help='Required. Whether the rule is custom or default.Constant filled by server.',
144
+
arg_type=get_enum_type(['Custom', 'Default']))
139
145
c.argument('priority', type=int, help='The priority of the rule.')
140
-
c.argument('sources', action=AddSource, nargs='+', help='The CIDR or source IP ranges. Address prefix type is an enum with values IPPrefix or ServiceTag')
146
+
c.argument('sources', action=AddSource, nargs='+', help='The CIDR or source IP ranges. Address prefix type is '
147
+
'an enum with values IPPrefix or ServiceTag')
141
148
c.argument('destinations', action=AddDestination, nargs='+', help='The destination address prefixes. CIDR or '
142
149
'destination IP ranges. Address prefix type is an enum with values IPPrefix or ServiceTag')
143
150
c.argument('description', type=str, help='A description for this rule. Restricted to 140 chars.')
0 commit comments