你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Microsoft.SecurityContacts 2020-01-01-preview
Bicep 资源定义
可以使用目标操作部署 securityContacts 资源类型:
- 订阅 - 请参阅 订阅部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Security/securityContacts 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.Security/securityContacts@2020-01-01-preview' = {
name: 'string'
properties: {
alertNotifications: {
minimalSeverity: 'string'
state: 'string'
}
emails: 'string'
notificationsByRole: {
roles: [
'string'
]
state: 'string'
}
phone: 'string'
}
}
属性值
Microsoft.Security/securityContacts
名字 | 描述 | 价值 |
---|---|---|
名字 | 资源名称 | string (必需) |
性能 | 安全联系人数据 | SecurityContactProperties |
SecurityContactProperties
名字 | 描述 | 价值 |
---|---|---|
alertNotifications | 定义是否发送有关新安全警报的电子邮件通知 | SecurityContactPropertiesAlertNotifications |
电子邮件 | 电子邮件地址列表,这些电子邮件地址将通过此安全联系人中定义的配置从 Microsoft Defender for Cloud 获取通知。 | 字符串 |
notificationsByRole | 定义是否将电子邮件通知从 Microsoft Defender for Cloud 发送给订阅中具有特定 RBAC 角色的人员。 | SecurityContactPropertiesNotificationsByRole |
电话 | 安全联系人的电话号码 | 字符串 |
SecurityContactPropertiesAlertNotifications
名字 | 描述 | 价值 |
---|---|---|
minimalSeverity | 定义将作为电子邮件通知发送的最小警报严重性 | “High” “Low” “Medium” |
州 | 定义是否发送有关新安全警报的电子邮件通知 | “关闭” “打开” |
SecurityContactPropertiesNotificationsByRole
名字 | 描述 | 价值 |
---|---|---|
角色 | 定义哪些 RBAC 角色将从 Microsoft Defender for Cloud 获取电子邮件通知。 允许的 RBAC 角色列表: | 包含任一项的字符串数组: “AccountAdmin” “参与者” “所有者” “ServiceAdmin” |
州 | 定义是否将电子邮件通知从 AMicrosoft Defender for Cloud 发送给订阅中具有特定 RBAC 角色的人员。 | “关闭” “打开” |
ARM 模板资源定义
可以使用目标操作部署 securityContacts 资源类型:
- 订阅 - 请参阅 订阅部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Security/securityContacts 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.Security/securityContacts",
"apiVersion": "2020-01-01-preview",
"name": "string",
"properties": {
"alertNotifications": {
"minimalSeverity": "string",
"state": "string"
},
"emails": "string",
"notificationsByRole": {
"roles": [ "string" ],
"state": "string"
},
"phone": "string"
}
}
属性值
Microsoft.Security/securityContacts
名字 | 描述 | 价值 |
---|---|---|
apiVersion | API 版本 | '2020-01-01-preview' |
名字 | 资源名称 | string (必需) |
性能 | 安全联系人数据 | SecurityContactProperties |
类型 | 资源类型 | “Microsoft.Security/securityContacts” |
SecurityContactProperties
名字 | 描述 | 价值 |
---|---|---|
alertNotifications | 定义是否发送有关新安全警报的电子邮件通知 | SecurityContactPropertiesAlertNotifications |
电子邮件 | 电子邮件地址列表,这些电子邮件地址将通过此安全联系人中定义的配置从 Microsoft Defender for Cloud 获取通知。 | 字符串 |
notificationsByRole | 定义是否将电子邮件通知从 Microsoft Defender for Cloud 发送给订阅中具有特定 RBAC 角色的人员。 | SecurityContactPropertiesNotificationsByRole |
电话 | 安全联系人的电话号码 | 字符串 |
SecurityContactPropertiesAlertNotifications
名字 | 描述 | 价值 |
---|---|---|
minimalSeverity | 定义将作为电子邮件通知发送的最小警报严重性 | “High” “Low” “Medium” |
州 | 定义是否发送有关新安全警报的电子邮件通知 | “关闭” “打开” |
SecurityContactPropertiesNotificationsByRole
名字 | 描述 | 价值 |
---|---|---|
角色 | 定义哪些 RBAC 角色将从 Microsoft Defender for Cloud 获取电子邮件通知。 允许的 RBAC 角色列表: | 包含任一项的字符串数组: “AccountAdmin” “参与者” “所有者” “ServiceAdmin” |
州 | 定义是否将电子邮件通知从 AMicrosoft Defender for Cloud 发送给订阅中具有特定 RBAC 角色的人员。 | “关闭” “打开” |
Terraform (AzAPI 提供程序)资源定义
可以使用目标操作部署 securityContacts 资源类型:
- 订阅
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Security/securityContacts 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Security/securityContacts@2020-01-01-preview"
name = "string"
body = jsonencode({
properties = {
alertNotifications = {
minimalSeverity = "string"
state = "string"
}
emails = "string"
notificationsByRole = {
roles = [
"string"
]
state = "string"
}
phone = "string"
}
})
}
属性值
Microsoft.Security/securityContacts
名字 | 描述 | 价值 |
---|---|---|
名字 | 资源名称 | string (必需) |
性能 | 安全联系人数据 | SecurityContactProperties |
类型 | 资源类型 | “Microsoft.Security/securityContacts@2020-01-01-preview” |
SecurityContactProperties
名字 | 描述 | 价值 |
---|---|---|
alertNotifications | 定义是否发送有关新安全警报的电子邮件通知 | SecurityContactPropertiesAlertNotifications |
电子邮件 | 电子邮件地址列表,这些电子邮件地址将通过此安全联系人中定义的配置从 Microsoft Defender for Cloud 获取通知。 | 字符串 |
notificationsByRole | 定义是否将电子邮件通知从 Microsoft Defender for Cloud 发送给订阅中具有特定 RBAC 角色的人员。 | SecurityContactPropertiesNotificationsByRole |
电话 | 安全联系人的电话号码 | 字符串 |
SecurityContactPropertiesAlertNotifications
名字 | 描述 | 价值 |
---|---|---|
minimalSeverity | 定义将作为电子邮件通知发送的最小警报严重性 | “High” “Low” “Medium” |
州 | 定义是否发送有关新安全警报的电子邮件通知 | “关闭” “打开” |
SecurityContactPropertiesNotificationsByRole
名字 | 描述 | 价值 |
---|---|---|
角色 | 定义哪些 RBAC 角色将从 Microsoft Defender for Cloud 获取电子邮件通知。 允许的 RBAC 角色列表: | 包含任一项的字符串数组: “AccountAdmin” “参与者” “所有者” “ServiceAdmin” |
州 | 定义是否将电子邮件通知从 AMicrosoft Defender for Cloud 发送给订阅中具有特定 RBAC 角色的人员。 | “关闭” “打开” |