共用方式為


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 要自動隱藏的警示類型。 針對所有警示類型,請使用 '*' 字串 (必要)
評論 任何有關規則的批注 字串
expirationDateUtc 規則的到期日,如果未提供值或提供為 null,則完全不會到期 字串
原因 關閉警示的原因 字串 (必要)
規則的可能狀態 'Disabled'
'Enabled'
'Expired' (必要)
suppressionAlertsScope 歸併條件 SuppressionAlertsScope

Microsoft.Security/alertsSuppressionRules

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 描述 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 要自動隱藏的警示類型。 針對所有警示類型,請使用 '*' 字串 (必要)
評論 任何有關規則的批注 字串
expirationDateUtc 規則的到期日,如果未提供值或提供為 null,則完全不會到期 字串
原因 關閉警示的原因 字串 (必要)
規則的可能狀態 'Disabled'
'Enabled'
'Expired' (必要)
suppressionAlertsScope 歸併條件 SuppressionAlertsScope

Microsoft.Security/alertsSuppressionRules

名字 描述 價值
apiVersion API 版本 '2019-01-01-preview'
名字 資源名稱 字串 (必要)
性能 描述 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 要自動隱藏的警示類型。 針對所有警示類型,請使用 '*' 字串 (必要)
評論 任何有關規則的批注 字串
expirationDateUtc 規則的到期日,如果未提供值或提供為 null,則完全不會到期 字串
原因 關閉警示的原因 字串 (必要)
規則的可能狀態 'Disabled'
'Enabled'
'Expired' (必要)
suppressionAlertsScope 歸併條件 SuppressionAlertsScope

Microsoft.Security/alertsSuppressionRules

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 描述 AlertsSuppressionRule 屬性 AlertsSuppressionRuleProperties
類型 資源類型 “Microsoft.Security/alertsSuppressionRules@2019-01-01-preview”

ScopeElement

名字 描述 價值
要隱藏的警示實體類型。 字串

SuppressionAlertsScope

名字 描述 價值
allOf 內部的所有條件都必須為 true,才能隱藏警示 ScopeElement[] (必要)