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

Removing one nat rule restriction in a nat rule collection - Firewall Policy[DO NOT MERGE] #9246

Closed
wants to merge 1 commit into from
Closed
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 @@ -717,17 +717,12 @@
"$ref": "#/definitions/FirewallPolicyNatRuleCollectionAction",
"description": "The action type of a Nat rule collection."
},
"translatedAddress": {
"type": "string",
"description": "The translated address for this NAT rule collection."
},
"translatedPort": {
"type": "string",
"description": "The translated port for this NAT rule collection."
},
"rule": {
"$ref": "#/definitions/FirewallPolicyRule",
"description": "The match rule for incoming traffic."
"rules": {
"type": "array",
"items": {
"$ref": "#/definitions/FirewallPolicyRule"
},
"description": "List of rules included in a rule collection."
}
},
"allOf": [
Expand Down Expand Up @@ -880,6 +875,14 @@
"type": "string"
}
},
"translatedAddress": {
"type": "string",
"description": "The translated address for this NAT rule."
},
"translatedPort": {
"type": "string",
"description": "The translated port for this NAT rule."
},
"sourceIpGroups": {
"type": "array",
"description": "List of source IpGroups for this rule.",
Expand Down