Share via


Microsoft.Security customAssessmentAutomations

Bicep リソース定義

customAssessmentAutomations リソースの種類は、次を対象とする操作でデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Security/customAssessmentAutomations リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.Security/customAssessmentAutomations@2021-07-01-preview' = {
  name: 'string'
  properties: {
    compressedQuery: 'string'
    description: 'string'
    displayName: 'string'
    remediationDescription: 'string'
    severity: 'string'
    supportedCloud: 'string'
  }
}

プロパティ値

customAssessmentAutomations

名前 説明
name リソース名 string (必須)
properties では、Custom Assessment Automation 要求のプロパティについて説明します。 CustomAssessmentAutomationRequestPropertiesOrCustomA...

CustomAssessmentAutomationRequestPropertiesOrCustomA...

名前 説明
compressedQuery 必要な評価自動化結果を表す Base 64 でエンコードされた KQL クエリ。 string
description この評価自動化によって生成された評価に関連する説明。 string
displayName この評価自動化によって生成された評価の表示名。 string
remediationDescription この評価の自動化によって生成される評価に関連する修復の説明。 string
severity この評価の自動化によって生成される評価に関連する重大度。 'High'
'Low'
'Medium'
supportedCloud カスタム評価の自動化に関連するクラウド。 'AWS'
'GCP'

ARM テンプレート リソース定義

customAssessmentAutomations リソースの種類は、次を対象とする操作でデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Security/customAssessmentAutomations リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.Security/customAssessmentAutomations",
  "apiVersion": "2021-07-01-preview",
  "name": "string",
  "properties": {
    "compressedQuery": "string",
    "description": "string",
    "displayName": "string",
    "remediationDescription": "string",
    "severity": "string",
    "supportedCloud": "string"
  }
}

プロパティ値

customAssessmentAutomations

名前 説明
type リソースの種類 'Microsoft.Security/customAssessmentAutomations'
apiVersion リソース API のバージョン '2021-07-01-preview'
name リソース名 string (必須)
properties では、Custom Assessment Automation 要求のプロパティについて説明します。 CustomAssessmentAutomationRequestPropertiesOrCustomA...

CustomAssessmentAutomationRequestPropertiesOrCustomA...

名前 説明
compressedQuery 必要な評価自動化結果を表す Base 64 でエンコードされた KQL クエリ。 string
description この評価自動化によって生成された評価に関連する説明。 string
displayName この評価自動化によって生成された評価の表示名。 string
remediationDescription この評価の自動化によって生成される評価に関連する修復の説明。 string
severity この評価の自動化によって生成される評価に関連する重大度。 'High'
'Low'
'Medium'
supportedCloud カスタム評価の自動化に関連するクラウド。 'AWS'
'GCP'

Terraform (AzAPI プロバイダー) リソース定義

customAssessmentAutomations リソースの種類は、次を対象とする操作でデプロイできます。

  • リソース グループ

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Security/customAssessmentAutomations リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/customAssessmentAutomations@2021-07-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      compressedQuery = "string"
      description = "string"
      displayName = "string"
      remediationDescription = "string"
      severity = "string"
      supportedCloud = "string"
    }
  })
}

プロパティ値

customAssessmentAutomations

名前 説明
type リソースの種類 "Microsoft.Security/customAssessmentAutomations@2021-07-01-preview"
name リソース名 string (必須)
parent_id リソース グループにデプロイするには、そのリソース グループの ID を使用します。 string (必須)
properties では、Custom Assessment Automation 要求のプロパティについて説明します。 CustomAssessmentAutomationRequestPropertiesOrCustomA...

CustomAssessmentAutomationRequestPropertiesOrCustomA...

名前 説明
compressedQuery 必要な評価の自動化結果を表す Base 64 でエンコードされた KQL クエリ。 string
description この評価の自動化によって生成された評価に関連する説明。 string
displayName この評価の自動化によって生成された評価の表示名。 string
remediationDescription この評価の自動化によって生成された評価に関連する修復の説明。 string
severity この評価の自動化によって生成された評価に関連する重大度。 "High"
"Low"
"Medium"
supportedCloud カスタム評価の自動化に関連するクラウド。 "AWS"
"GCP"