共用方式為


Microsoft.PolicyInsights 補救 2018-07-01-preview

Bicep 資源定義

補救資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.PolicyInsights/remediations 資源,請將下列 Bicep 新增至範本。

resource symbolicname 'Microsoft.PolicyInsights/remediations@2018-07-01-preview' = {
  scope: resourceSymbolicName or scope
  name: 'string'
  properties: {
    deploymentStatus: {
      failedDeployments: int
      successfulDeployments: int
      totalDeployments: int
    }
    filters: {
      locations: [
        'string'
      ]
    }
    policyAssignmentId: 'string'
    policyDefinitionReferenceId: 'string'
  }
}

屬性值

Microsoft.PolicyInsights/remediations

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 補救的屬性。 RemediationProperties
範圍 在與部署範圍不同的範圍內建立資源時,請使用 。 將此屬性設定為資源的符號名稱,以套用 擴充資源

RemediationDeploymentSummary

名字 描述 價值
failedDeployments 補救失敗所需的部署數目。 int
successfulDeployments 補救成功所需的部署數目。 int
totalDeployments 補救所需的部署數目。 int

RemediationFilters

名字 描述 價值
地點 將補救的資源位置。 string[]

RemediationProperties

名字 描述 價值
deploymentStatus 補救所建立之所有部署的部署狀態摘要。 RemediationDeploymentSummary
過濾器 將套用以判斷要補救的資源的篩選條件。 RemediationFilters
policyAssignmentId 應補救之原則指派的資源標識符。 字串
policyDefinitionReferenceId 應補救之個別定義的原則定義參考標識符。 當要補救的原則指派指派指派原則集定義時,即為必要專案。 字串

ARM 樣本資源定義

補救資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.PolicyInsights/remediations 資源,請將下列 JSON 新增至範本。

{
  "type": "Microsoft.PolicyInsights/remediations",
  "apiVersion": "2018-07-01-preview",
  "name": "string",
  "properties": {
    "deploymentStatus": {
      "failedDeployments": "int",
      "successfulDeployments": "int",
      "totalDeployments": "int"
    },
    "filters": {
      "locations": [ "string" ]
    },
    "policyAssignmentId": "string",
    "policyDefinitionReferenceId": "string"
  }
}

屬性值

Microsoft.PolicyInsights/remediations

名字 描述 價值
apiVersion API 版本 '2018-07-01-preview'
名字 資源名稱 字串 (必要)
性能 補救的屬性。 RemediationProperties
類型 資源類型 'Microsoft.PolicyInsights/remediations'

RemediationDeploymentSummary

名字 描述 價值
failedDeployments 補救失敗所需的部署數目。 int
successfulDeployments 補救成功所需的部署數目。 int
totalDeployments 補救所需的部署數目。 int

RemediationFilters

名字 描述 價值
地點 將補救的資源位置。 string[]

RemediationProperties

名字 描述 價值
deploymentStatus 補救所建立之所有部署的部署狀態摘要。 RemediationDeploymentSummary
過濾器 將套用以判斷要補救的資源的篩選條件。 RemediationFilters
policyAssignmentId 應補救之原則指派的資源標識符。 字串
policyDefinitionReferenceId 應補救之個別定義的原則定義參考標識符。 當要補救的原則指派指派指派原則集定義時,即為必要專案。 字串

Terraform (AzAPI 提供者) 資源定義

補救資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.PolicyInsights/remediations 資源,請將下列 Terraform 新增至範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.PolicyInsights/remediations@2018-07-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      deploymentStatus = {
        failedDeployments = int
        successfulDeployments = int
        totalDeployments = int
      }
      filters = {
        locations = [
          "string"
        ]
      }
      policyAssignmentId = "string"
      policyDefinitionReferenceId = "string"
    }
  })
}

屬性值

Microsoft.PolicyInsights/remediations

名字 描述 價值
名字 資源名稱 字串 (必要)
parent_id 要套用此延伸模組資源之資源的標識碼。 字串 (必要)
性能 補救的屬性。 RemediationProperties
類型 資源類型 “Microsoft.PolicyInsights/remediations@2018-07-01-preview”

RemediationDeploymentSummary

名字 描述 價值
failedDeployments 補救失敗所需的部署數目。 int
successfulDeployments 補救成功所需的部署數目。 int
totalDeployments 補救所需的部署數目。 int

RemediationFilters

名字 描述 價值
地點 將補救的資源位置。 string[]

RemediationProperties

名字 描述 價值
deploymentStatus 補救所建立之所有部署的部署狀態摘要。 RemediationDeploymentSummary
過濾器 將套用以判斷要補救的資源的篩選條件。 RemediationFilters
policyAssignmentId 應補救之原則指派的資源標識符。 字串
policyDefinitionReferenceId 應補救之個別定義的原則定義參考標識符。 當要補救的原則指派指派指派原則集定義時,即為必要專案。 字串