Skip to content

Commit

Permalink
Threat Intel changes for Azure Firewall (#5143)
Browse files Browse the repository at this point in the history
* Threat Intel changes for Azure Firewall

* Move the property to the end of the list
  • Loading branch information
fanymanea authored and sergey-shandar committed Feb 11, 2019
1 parent c0f9183 commit b616d58
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,10 @@
"provisioningState":{
"description":"The provisioning state of the resource.",
"$ref":"#/definitions/ProvisioningState"
},
"threatIntelMode":{
"description":"The operation mode for Threat Intelligence.",
"$ref":"#/definitions/AzureFirewallThreatIntelMode"
}
},
"description":"Properties of the Azure Firewall."
Expand Down Expand Up @@ -374,6 +378,19 @@
},
"description":"Response for ListAzureFirewalls API service call."
},
"AzureFirewallThreatIntelMode":{
"type":"string",
"description":"The operation mode for Threat Intel",
"enum":[
"Alert",
"Deny",
"Off"
],
"x-ms-enum":{
"name":"AzureFirewallThreatIntelMode",
"modelAsString":true
}
},
"AzureFirewallApplicationRuleCollectionPropertiesFormat":{
"properties":{
"priority":{
Expand Down Expand Up @@ -714,7 +731,8 @@
"description":"The action type of a rule collection",
"enum":[
"Allow",
"Deny"
"Deny",
"Alert"
],
"x-ms-enum":{
"name":"AzureFirewallRCActionType",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"properties":{
"provisioningState":"Succeeded",
"threatIntelMode": "Alert",
"ipConfigurations":[
{
"name":"azureFirewallIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
},
"properties":{
"provisioningState":"Succeeded",
"threatIntelMode": "Alert",
"ipConfigurations":[
{
"name":"azureFirewallIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"properties":{
"provisioningState":"Succeeded",
"threatIntelMode": "Alert",
"ipConfigurations":[
{
"name":"azureFirewallIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"key1":"value1"
},
"properties":{
"threatIntelMode": "Alert",
"ipConfigurations":[
{
"name":"azureFirewallIpConfiguration",
Expand Down Expand Up @@ -124,6 +125,7 @@
},
"properties":{
"provisioningState":"Succeeded",
"threatIntelMode": "Alert",
"ipConfigurations":[
{
"name":"azureFirewallIpConfiguration",
Expand Down Expand Up @@ -242,6 +244,7 @@
},
"properties":{
"provisioningState":"Succeeded",
"threatIntelMode": "Alert",
"ipConfigurations":[
{
"name":"azureFirewallIpConfiguration",
Expand Down

0 comments on commit b616d58

Please sign in to comment.