AbuseDetected
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
字段 |
subAlertId |
string
每个已引入的子提醒的唯一标识符。
|
product |
string
滥用行为的来源产品。
|
additionalDetails |
object (EntityList )
要显示在提醒中的表格中的滥用行为用户/实体列表。
|
variationType |
enum (AbuseDetectedVariationType )
“检测到滥用行为”提醒的变体。variationType 决定了提醒详情中显示的文本。这与 subAlertId 不同,因为每个子提醒可以有多个 variation_type,表示提醒的不同阶段。
|
EntityList
EntityList 以可在提醒中心界面中转换为表格的格式存储实体。
JSON 表示法 |
{
"name": string,
"headers": [
string
],
"entities": [
{
object (Entity )
}
]
} |
字段 |
name |
string
用于显示此实体列表的键详细信息的名称。
|
entities[] |
object (Entity )
受提醒影响的实体列表。
|
实体
JSON 表示法 |
{
"name": string,
"link": string,
"values": [
string
]
} |
字段 |
name |
string
此实体的人类可读名称,例如电子邮件地址、文件 ID 或设备名称。
|
link |
string
指向根据此实体进行的安全调查工具搜索的链接(如果有)。
|
values[] |
string
除了名称之外的其他值。值的顺序应与 EntityList 中的标题一致。
|
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-03-25。
[null,null,["最后更新时间 (UTC):2025-03-25。"],[],[],null,["# AbuseDetected\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [EntityList](#EntityList)\n - [JSON representation](#EntityList.SCHEMA_REPRESENTATION)\n- [Entity](#Entity)\n - [JSON representation](#Entity.SCHEMA_REPRESENTATION)\n\nA generic alert for abusive user activity occurring with a customer.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"subAlertId\": string, \"product\": string, \"additionalDetails\": { object (/workspace/admin/alertcenter/reference/rest/v1beta1/AbuseDetected#EntityList) }, \"variationType\": enum (/workspace/admin/alertcenter/reference/rest/v1beta1/AbuseDetectedVariationType) } ``` |\n\n| Fields ||\n|---------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `subAlertId` | `string` Unique identifier of each sub alert that is onboarded. |\n| `product` | `string` Product that the abuse is originating from. |\n| `additionalDetails` | `object (`[EntityList](/workspace/admin/alertcenter/reference/rest/v1beta1/AbuseDetected#EntityList)`)` List of abusive users/entities to be displayed in a table in the alert. |\n| `variationType` | `enum (`[AbuseDetectedVariationType](/workspace/admin/alertcenter/reference/rest/v1beta1/AbuseDetectedVariationType)`)` Variation of AbuseDetected alerts. The variationType determines the texts displayed the alert details. This differs from subAlertId because each sub alert can have multiple variation_types, representing different stages of the alert. |\n\nEntityList\n----------\n\nEntityList stores entities in a format that can be translated to a table in the Alert Center UI.\n\n| JSON representation |\n|----------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"headers\": [ string ], \"entities\": [ { object (/workspace/admin/alertcenter/reference/rest/v1beta1/AbuseDetected#Entity) } ] } ``` |\n\n| Fields ||\n|--------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Name of the key detail used to display this entity list. |\n| `headers[]` | `string` Headers of the values in entities. If no value is defined in Entity, this field should be empty. |\n| `entities[]` | `object (`[Entity](/workspace/admin/alertcenter/reference/rest/v1beta1/AbuseDetected#Entity)`)` List of entities affected by the alert. |\n\nEntity\n------\n\nIndividual entity affected by, or related to, an alert.\n\n| JSON representation |\n|------------------------------------------------------------------|\n| ``` { \"name\": string, \"link\": string, \"values\": [ string ] } ``` |\n\n| Fields ||\n|------------|-------------------------------------------------------------------------------------------------|\n| `name` | `string` Human-readable name of this entity, such as an email address, file ID, or device name. |\n| `link` | `string` Link to a Security Investigation Tool search based on this entity, if available. |\n| `values[]` | `string` Extra values beyond name. The order of values should align with headers in EntityList. |"]]