Microsoft.Security securityContacts 2017-08-01-preview
Bicep リソース定義
securityContacts リソースの種類は、次をターゲットとする操作と共にデプロイできます。
- サブスクリプションの - サブスクリプションのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Security/securityContacts リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.Security/securityContacts@2017-08-01-preview' = {
name: 'string'
properties: {
alertNotifications: 'string'
alertsToAdmins: 'string'
email: 'string'
phone: 'string'
}
}
プロパティ値
Microsoft.Security/securityContacts
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
プロパティ | セキュリティ連絡先データ | SecurityContactProperties の |
SecurityContactProperties
名前 | 形容 | 価値 |
---|---|---|
alertNotifications | セキュリティの警告通知をセキュリティ連絡先に送信するかどうか | 'Off' 'On' (必須) |
alertsToAdmins | サブスクリプション管理者にセキュリティ アラート通知を送信するかどうか | 'Off' 'On' (必須) |
電子メール | このセキュリティ連絡先の電子メール | string (必須) |
電話 | このセキュリティ連絡先の電話番号 | 糸 |
ARM テンプレート リソース定義
securityContacts リソースの種類は、次をターゲットとする操作と共にデプロイできます。
- サブスクリプションの - サブスクリプションのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Security/securityContacts リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.Security/securityContacts",
"apiVersion": "2017-08-01-preview",
"name": "string",
"properties": {
"alertNotifications": "string",
"alertsToAdmins": "string",
"email": "string",
"phone": "string"
}
}
プロパティ値
Microsoft.Security/securityContacts
名前 | 形容 | 価値 |
---|---|---|
apiVersion | API のバージョン | '2017-08-01-preview' |
名前 | リソース名 | string (必須) |
プロパティ | セキュリティ連絡先データ | SecurityContactProperties の |
種類 | リソースの種類 | 'Microsoft.Security/securityContacts' |
SecurityContactProperties
名前 | 形容 | 価値 |
---|---|---|
alertNotifications | セキュリティの警告通知をセキュリティ連絡先に送信するかどうか | 'Off' 'On' (必須) |
alertsToAdmins | サブスクリプション管理者にセキュリティ アラート通知を送信するかどうか | 'Off' 'On' (必須) |
電子メール | このセキュリティ連絡先の電子メール | string (必須) |
電話 | このセキュリティ連絡先の電話番号 | 糸 |
Terraform (AzAPI プロバイダー) リソース定義
securityContacts リソースの種類は、次をターゲットとする操作と共にデプロイできます。
- サブスクリプションの
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Security/securityContacts リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Security/securityContacts@2017-08-01-preview"
name = "string"
body = jsonencode({
properties = {
alertNotifications = "string"
alertsToAdmins = "string"
email = "string"
phone = "string"
}
})
}
プロパティ値
Microsoft.Security/securityContacts
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
プロパティ | セキュリティ連絡先データ | SecurityContactProperties の |
種類 | リソースの種類 | "Microsoft.Security/securityContacts@2017-08-01-preview" |
SecurityContactProperties
名前 | 形容 | 価値 |
---|---|---|
alertNotifications | セキュリティの警告通知をセキュリティ連絡先に送信するかどうか | 'Off' 'On' (必須) |
alertsToAdmins | サブスクリプション管理者にセキュリティ アラート通知を送信するかどうか | 'Off' 'On' (必須) |
電子メール | このセキュリティ連絡先の電子メール | string (必須) |
電話 | このセキュリティ連絡先の電話番号 | 糸 |