Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat(alertcenter): update the api
#### alertcenter:v1beta1

The following keys were added:
- schemas.AbuseDetected (Total Keys: 7)
- schemas.Entity (Total Keys: 13)
  • Loading branch information
yoshi-automation committed Oct 11, 2022
1 parent 29ffbea commit 99b94ee
Showing 1 changed file with 75 additions and 1 deletion.
Expand Up @@ -423,9 +423,36 @@
}
}
},
"revision": "20220926",
"revision": "20221004",
"rootUrl": "https://alertcenter.googleapis.com/",
"schemas": {
"AbuseDetected": {
"description": "A generic alert for abusive user activity occurring with a customer.",
"id": "AbuseDetected",
"properties": {
"additionalDetails": {
"$ref": "EntityList",
"description": "List of abusive users/entities to be displayed in a table in the alert."
},
"alertDescriptor": {
"description": "Displayed after Customer abuse detected - {alert_descriptor}. If missing, alert name will be displayed as Customer abuse detected.",
"type": "string"
},
"product": {
"description": "Product that the abuse is originating from.",
"type": "string"
},
"subAlertId": {
"description": "Unique identifier of each alert that is onboarded.",
"type": "string"
},
"summary": {
"description": "Customizable text to display in the summary section of the alert. Will be parsed as HTML to allow new paragraphs and hyperlinks.",
"type": "string"
}
},
"type": "object"
},
"AccountSuspensionDetails": {
"description": "Details about why an account is receiving an account suspension warning.",
"id": "AccountSuspensionDetails",
Expand Down Expand Up @@ -1111,6 +1138,53 @@
"properties": {},
"type": "object"
},
"Entity": {
"description": "Individual entity affected by, or related to, an alert.",
"id": "Entity",
"properties": {
"link": {
"description": "Link to a Security Investigation Tool search based on this entity, if available.",
"type": "string"
},
"name": {
"description": "Human-readable name of this entity, such as an email address, file ID, or device name.",
"type": "string"
},
"values": {
"description": "Extra values beyond name. The order of values should align with headers in EntityList.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"EntityList": {
"description": "EntityList stores entities in a format that can be translated to a table in the Alert Center UI.",
"id": "EntityList",
"properties": {
"entities": {
"description": "List of entities affected by the alert.",
"items": {
"$ref": "Entity"
},
"type": "array"
},
"headers": {
"description": "Headers of the values in entities. If no value is defined in Entity, this field should be empty.",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Name of the key detail used to display this entity list.",
"type": "string"
}
},
"type": "object"
},
"GmailMessageInfo": {
"description": "Details of a message in phishing spike alert.",
"id": "GmailMessageInfo",
Expand Down

0 comments on commit 99b94ee

Please sign in to comment.