Database Threat Detection Policy
data class DatabaseThreatDetectionPolicy(val disabledAlerts: List<String>? = null, val emailAccountAdmins: String? = null, val emailAddresses: List<String>? = null, val retentionDays: Int? = null, val state: String? = null, val storageAccountAccessKey: String? = null, val storageEndpoint: String? = null)
Properties
Link copied to clipboard
Specifies a list of alerts which should be disabled. Possible values include Access_Anomaly
, Sql_Injection
and Sql_Injection_Vulnerability
.
Link copied to clipboard
Should the account administrators be emailed when this alert is triggered? Possible values are Enabled
or Disabled
. Defaults to Disabled
.
Link copied to clipboard
A list of email addresses which alerts should be sent to.
Link copied to clipboard
Specifies the number of days to keep in the Threat Detection audit logs.
Link copied to clipboard
Specifies the identifier key of the Threat Detection audit storage account. Required if state
is Enabled
.
Link copied to clipboard
Specifies the blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. Required if state
is Enabled
.