Skip to content

Add Property "SqlSetting" to Azure Firewall Policy #21297

@b564518128

Description

@b564518128

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

Metadata

Metadata

Labels

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions