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'
}
}
屬性值
名字 |
描述 |
價值 |
failedDeployments |
補救失敗所需的部署數目。 |
int |
successfulDeployments |
補救成功所需的部署數目。 |
int |
totalDeployments |
補救所需的部署數目。 |
int |
名字 |
描述 |
價值 |
地點 |
將補救的資源位置。 |
string[] |
名字 |
描述 |
價值 |
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"
}
}
屬性值
名字 |
描述 |
價值 |
apiVersion |
API 版本 |
'2018-07-01-preview' |
名字 |
資源名稱 |
字串 (必要) |
性能 |
補救的屬性。 |
RemediationProperties |
類型 |
資源類型 |
'Microsoft.PolicyInsights/remediations' |
名字 |
描述 |
價值 |
failedDeployments |
補救失敗所需的部署數目。 |
int |
successfulDeployments |
補救成功所需的部署數目。 |
int |
totalDeployments |
補救所需的部署數目。 |
int |
名字 |
描述 |
價值 |
地點 |
將補救的資源位置。 |
string[] |
名字 |
描述 |
價值 |
deploymentStatus |
補救所建立之所有部署的部署狀態摘要。 |
RemediationDeploymentSummary |
過濾器 |
將套用以判斷要補救的資源的篩選條件。 |
RemediationFilters |
policyAssignmentId |
應補救之原則指派的資源標識符。 |
字串 |
policyDefinitionReferenceId |
應補救之個別定義的原則定義參考標識符。 當要補救的原則指派指派指派原則集定義時,即為必要專案。 |
字串 |
補救資源類型可以使用目標作業來部署:
如需每個 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"
}
})
}
屬性值
名字 |
描述 |
價值 |
名字 |
資源名稱 |
字串 (必要) |
parent_id |
要套用此延伸模組資源之資源的標識碼。 |
字串 (必要) |
性能 |
補救的屬性。 |
RemediationProperties |
類型 |
資源類型 |
“Microsoft.PolicyInsights/remediations@2018-07-01-preview” |
名字 |
描述 |
價值 |
failedDeployments |
補救失敗所需的部署數目。 |
int |
successfulDeployments |
補救成功所需的部署數目。 |
int |
totalDeployments |
補救所需的部署數目。 |
int |
名字 |
描述 |
價值 |
地點 |
將補救的資源位置。 |
string[] |
名字 |
描述 |
價值 |
deploymentStatus |
補救所建立之所有部署的部署狀態摘要。 |
RemediationDeploymentSummary |
過濾器 |
將套用以判斷要補救的資源的篩選條件。 |
RemediationFilters |
policyAssignmentId |
應補救之原則指派的資源標識符。 |
字串 |
policyDefinitionReferenceId |
應補救之個別定義的原則定義參考標識符。 當要補救的原則指派指派指派原則集定義時,即為必要專案。 |
字串 |