Microsoft.Security 설정

Bicep 리소스 정의

설정 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Security/settings 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.Security/settings@2022-05-01' = {
  name: 'string'
  kind: 'string'
  // For remaining properties, see settings objects
}

설정 개체

kind 속성을 설정하여 개체의 형식을 지정합니다.

AlertSyncSettings의 경우 다음을 사용합니다.

  kind: 'AlertSyncSettings'
  properties: {
    enabled: bool
  }

DataExportSettings의 경우 다음을 사용합니다.

  kind: 'DataExportSettings'
  properties: {
    enabled: bool
  }

속성 값

설정

Name Description
name 리소스 이름 string(필수)

문자 제한: 값 참조

유효한 문자:
다음 중 하나를 사용합니다.
MCAS
Sentinel
WDATP
WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW
kind 개체 형식 설정 AlertSyncSettings
DataExportSettings (필수)

AlertSyncSettings

Name Description
kind 설정 문자열의 종류 'AlertSyncSettings'(필수)
properties 경고 동기화 설정 데이터 AlertSyncSettingProperties

AlertSyncSettingProperties

Name Description
사용 경고 동기화 설정이 사용하도록 설정되어 있습니까? bool(필수)

DataExportSettings

Name Description
kind 설정 문자열의 종류 'DataExportSettings'(필수)
properties 데이터 내보내기 설정 데이터 DataExportSettingProperties

DataExportSettingProperties

Name Description
사용 데이터 내보내기 설정이 사용하도록 설정되어 있나요? bool(필수)

ARM 템플릿 리소스 정의

설정 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Security/settings 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.Security/settings",
  "apiVersion": "2022-05-01",
  "name": "string",
  "kind": "string",
  // For remaining properties, see settings objects
}

설정 개체

kind 속성을 설정하여 개체의 형식을 지정합니다.

AlertSyncSettings의 경우 다음을 사용합니다.

  "kind": "AlertSyncSettings",
  "properties": {
    "enabled": "bool"
  }

DataExportSettings의 경우 다음을 사용합니다.

  "kind": "DataExportSettings",
  "properties": {
    "enabled": "bool"
  }

속성 값

설정

Name Description
형식 리소스 종류 'Microsoft.Security/settings'
apiVersion 리소스 api 버전 '2022-05-01'
name 리소스 이름 string(필수)

문자 제한: 값 참조

유효한 문자:
다음 중 하나를 사용합니다.
MCAS
Sentinel
WDATP
WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW
kind 개체 형식 설정 AlertSyncSettings
DataExportSettings (필수)

AlertSyncSettings

Name Description
kind 설정 문자열의 종류 'AlertSyncSettings'(필수)
properties 경고 동기화 설정 데이터 AlertSyncSettingProperties

AlertSyncSettingProperties

Name Description
사용 경고 동기화 설정이 사용하도록 설정되어 있습니까? bool(필수)

DataExportSettings

Name Description
kind 설정 문자열의 종류 'DataExportSettings'(필수)
properties 데이터 내보내기 설정 데이터 DataExportSettingProperties

DataExportSettingProperties

Name Description
사용 데이터 내보내기 설정이 사용하도록 설정되어 있나요? bool(필수)

Terraform(AzAPI 공급자) 리소스 정의

설정 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

  • 구독

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Security/settings 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/settings@2022-05-01"
  name = "string"
  parent_id = "string"
  // For remaining properties, see settings objects
  body = jsonencode({
    kind = "string"
  })
}

설정 개체

kind 속성을 설정하여 개체의 형식을 지정합니다.

AlertSyncSettings의 경우 다음을 사용합니다.

  kind = "AlertSyncSettings"
  properties = {
    enabled = bool
  }

DataExportSettings의 경우 다음을 사용합니다.

  kind = "DataExportSettings"
  properties = {
    enabled = bool
  }

속성 값

설정

Name Description
형식 리소스 종류 "Microsoft.Security/settings@2022-05-01"
name 리소스 이름 string(필수)

문자 제한: 값 참조

유효한 문자:
다음 중 하나를 사용합니다.
MCAS
Sentinel
WDATP
WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW
parent_id 구독에 배포하려면 해당 구독의 ID를 사용합니다. string(필수)
kind 개체 형식 설정 AlertSyncSettings
DataExportSettings (필수)

AlertSyncSettings

Name Description
kind 설정 문자열의 종류 "AlertSyncSettings"(필수)
properties 경고 동기화 설정 데이터 AlertSyncSettingProperties

AlertSyncSettingProperties

Name Description
사용 경고 동기화 설정이 사용하도록 설정되어 있습니까? bool(필수)

DataExportSettings

Name Description
kind 설정 문자열의 종류 "DataExportSettings"(필수)
properties 데이터 내보내기 설정 데이터 DataExportSettingProperties

DataExportSettingProperties

Name Description
사용 데이터 내보내기 설정이 사용하도록 설정되어 있나요? bool(필수)