-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Azure/azure-cli-extensions
#4850Closed
Copy link
Labels
Milestone
Description
Resource Provider
Microsoft.Network
Description of Feature or Work Requested
Adding a new optional property "SqlSetting" or "Sql" to Azure Firewall Policy. The format of this property is like the following:
- SqlSetting
- AllowSqlRedirect: Boolean or Nullable Boolean with null equivalent to false
Using Powershell snippet as an example to show the use case:
$sql = New-AzFirewallPolicySqlSetting -AllowSqlRedirect
$firewallPolicy = New-AzFirewallPolicy -SqlSetting $sql ...REST API payload looks like this:
{
...
properties: {
Sql: {
AllowSqlRedirect: true
}
...
}Minimum API Version Required
2021-03-01
Swagger Link
Azure/azure-rest-api-specs#15110
Target Date
2022-03-01
Reactions are currently unavailable