Skip to content

Commit

Permalink
Add new properties for email/sms rules to access rule API. (#22000)
Browse files Browse the repository at this point in the history
  • Loading branch information
manishrw authored Jan 30, 2023
1 parent 90a294f commit 18e83e2
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
"paasrp2.contoso.org"
],
"subscriptions": [],
"networkSecurityPerimeters": []
"networkSecurityPerimeters": [],
"emailAddresses": [],
"phoneNumbers": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
],
"fullyQualifiedDomainNames": [],
"subscriptions": [],
"networkSecurityPerimeters": []
"networkSecurityPerimeters": [],
"emailAddresses": [],
"phoneNumbers": []
}
},
{
Expand All @@ -40,7 +42,9 @@
"paasrp2.contoso.org"
],
"subscriptions": [],
"networkSecurityPerimeters": []
"networkSecurityPerimeters": [],
"emailAddresses": [],
"phoneNumbers": []
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
],
"fullyQualifiedDomainNames": [],
"subscriptions": [],
"networkSecurityPerimeters": []
"networkSecurityPerimeters": [],
"emailAddresses": [],
"phoneNumbers": []
}
}
},
Expand All @@ -50,7 +52,9 @@
],
"fullyQualifiedDomainNames": [],
"subscriptions": [],
"networkSecurityPerimeters": []
"networkSecurityPerimeters": [],
"emailAddresses": [],
"phoneNumbers": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1528,6 +1528,20 @@
"$ref": "#/definitions/PerimeterBasedAccessRule"
},
"description": "Inbound rule specified by the perimeter id."
},
"emailAddresses": {
"type": "array",
"items": {
"type": "string"
},
"description": "Outbound rules email address format."
},
"phoneNumbers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Outbound rules phone number format."
}
},
"description": "Properties of NSP access rule."
Expand Down

0 comments on commit 18e83e2

Please sign in to comment.