Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR network/resource-manager] Remove AH protocol #4840

Merged
merged 1 commit into from
Apr 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class SecurityRuleProtocol(str, Enum):
udp = "Udp"
icmp = "Icmp"
esp = "Esp"
ah = "Ah"
asterisk = "*"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class SecurityRule(SubResource):
:param description: A description for this rule. Restricted to 140 chars.
:type description: str
:param protocol: Required. Network protocol this rule applies to. Possible
values are 'Tcp', 'Udp', 'Icmp', 'Esp', 'Ah', and '*'. Possible values
include: 'Tcp', 'Udp', 'Icmp', 'Esp', 'Ah', '*'
values are 'Tcp', 'Udp', 'Icmp', 'Esp', and '*'. Possible values include:
'Tcp', 'Udp', 'Icmp', 'Esp', '*'
:type protocol: str or
~azure.mgmt.network.v2019_02_01.models.SecurityRuleProtocol
:param source_port_range: The source port or range. Integer or range
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class SecurityRule(SubResource):
:param description: A description for this rule. Restricted to 140 chars.
:type description: str
:param protocol: Required. Network protocol this rule applies to. Possible
values are 'Tcp', 'Udp', 'Icmp', 'Esp', 'Ah', and '*'. Possible values
include: 'Tcp', 'Udp', 'Icmp', 'Esp', 'Ah', '*'
values are 'Tcp', 'Udp', 'Icmp', 'Esp', and '*'. Possible values include:
'Tcp', 'Udp', 'Icmp', 'Esp', '*'
:type protocol: str or
~azure.mgmt.network.v2019_02_01.models.SecurityRuleProtocol
:param source_port_range: The source port or range. Integer or range
Expand Down