你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Microsoft.Security alertsSuppressionRules

Bicep 资源定义

可以使用目标操作部署 alertsSuppressionRules 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.Security/alertsSuppressionRules 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.Security/alertsSuppressionRules@2019-01-01-preview' = {
  name: 'string'
  properties: {
    alertType: 'string'
    comment: 'string'
    expirationDateUtc: 'string'
    reason: 'string'
    state: 'string'
    suppressionAlertsScope: {
      allOf: [
        {
          field: 'string'
        }
      ]
    }
  }
}

属性值

AlertsSuppressionRuleProperties

名字 描述 价值
alertType 要自动取消的警报的类型。 对于所有警报类型,请使用“*” string (必需)
评论 有关规则的任何注释 字符串
expirationDateUtc 规则的到期日期,如果未提供值或提供为 null,则根本不会过期 字符串
原因 消除警报的原因 string (必需)
规则的可能状态 “Disabled”
“Enabled”
“已过期”(必需)
suppressionAlertsScope 抑制条件 SuppressionAlertsScope

Microsoft.Security/alertsSuppressionRules

名字 描述 价值
名字 资源名称 string (必需)
性能 描述 AlertsSuppressionRule 属性 AlertsSuppressionRuleProperties

ScopeElement

名字 描述 价值
要禁止显示的警报实体类型。 字符串

SuppressionAlertsScope

名字 描述 价值
allOf 为了禁止显示警报,内部的所有条件都需要为 true ScopeElement[] (必需)

ARM 模板资源定义

可以使用目标操作部署 alertsSuppressionRules 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.Security/alertsSuppressionRules 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.Security/alertsSuppressionRules",
  "apiVersion": "2019-01-01-preview",
  "name": "string",
  "properties": {
    "alertType": "string",
    "comment": "string",
    "expirationDateUtc": "string",
    "reason": "string",
    "state": "string",
    "suppressionAlertsScope": {
      "allOf": [
        {
          "field": "string"
        }
      ]
    }
  }
}

属性值

AlertsSuppressionRuleProperties

名字 描述 价值
alertType 要自动取消的警报的类型。 对于所有警报类型,请使用“*” string (必需)
评论 有关规则的任何注释 字符串
expirationDateUtc 规则的到期日期,如果未提供值或提供为 null,则根本不会过期 字符串
原因 消除警报的原因 string (必需)
规则的可能状态 “Disabled”
“Enabled”
“已过期”(必需)
suppressionAlertsScope 抑制条件 SuppressionAlertsScope

Microsoft.Security/alertsSuppressionRules

名字 描述 价值
apiVersion API 版本 '2019-01-01-preview'
名字 资源名称 string (必需)
性能 描述 AlertsSuppressionRule 属性 AlertsSuppressionRuleProperties
类型 资源类型 “Microsoft.Security/alertsSuppressionRules”

ScopeElement

名字 描述 价值
要禁止显示的警报实体类型。 字符串

SuppressionAlertsScope

名字 描述 价值
allOf 为了禁止显示警报,内部的所有条件都需要为 true ScopeElement[] (必需)

Terraform (AzAPI 提供程序)资源定义

可以使用目标操作部署 alertsSuppressionRules 资源类型:

  • 订阅

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.Security/alertsSuppressionRules 资源,请将以下 Terraform 添加到模板。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/alertsSuppressionRules@2019-01-01-preview"
  name = "string"
  body = jsonencode({
    properties = {
      alertType = "string"
      comment = "string"
      expirationDateUtc = "string"
      reason = "string"
      state = "string"
      suppressionAlertsScope = {
        allOf = [
          {
            field = "string"
          }
        ]
      }
    }
  })
}

属性值

AlertsSuppressionRuleProperties

名字 描述 价值
alertType 要自动取消的警报的类型。 对于所有警报类型,请使用“*” string (必需)
评论 有关规则的任何注释 字符串
expirationDateUtc 规则的到期日期,如果未提供值或提供为 null,则根本不会过期 字符串
原因 消除警报的原因 string (必需)
规则的可能状态 “Disabled”
“Enabled”
“已过期”(必需)
suppressionAlertsScope 抑制条件 SuppressionAlertsScope

Microsoft.Security/alertsSuppressionRules

名字 描述 价值
名字 资源名称 string (必需)
性能 描述 AlertsSuppressionRule 属性 AlertsSuppressionRuleProperties
类型 资源类型 “Microsoft.Security/alertsSuppressionRules@2019-01-01-preview”

ScopeElement

名字 描述 价值
要禁止显示的警报实体类型。 字符串

SuppressionAlertsScope

名字 描述 价值
allOf 为了禁止显示警报,内部的所有条件都需要为 true ScopeElement[] (必需)