alerts_password
Creates, updates, deletes, gets or lists an alerts_password resource.
Overview
| Name | alerts_password |
| Type | Resource |
| Id | google.threatintelligence.alerts_password |
Fields
The following fields are returned by SELECT queries:
- get_password
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. Server generated name for the alert. format is projects/{project}/alerts/{alert} |
aiSummary | string | Optional. AI summary of the alert. |
audit | object | Output only. Audit information for the alert. (id: Audit) |
configurations | array | Output only. The resource names of the Configurations bound to this alert. Format: projects/{project}/configurations/{configuration} |
detail | object | Output only. Details object for the alert, not all alerts will have a details object. (id: AlertDetail) |
displayName | string | Output only. A short title for the alert. |
duplicateOf | string | Output only. alert name of the alert this alert is a duplicate of. Format: projects/{project}/alerts/{alert} |
duplicatedBy | array | Output only. alert names of the alerts that are duplicates of this alert. Format: projects/{project}/alerts/{alert} |
etag | string | Optional. If included when updating an alert, this should be set to the current etag of the alert. If the etags do not match, the update will be rejected and an ABORTED error will be returned. |
externalId | string | Output only. External ID for the alert. This is used internally to provide protection against out of order updates. |
findingCount | string (int64) | Output only. The number of findings associated with this alert. |
findings | array | Output only. Findings that are covered by this alert. |
priorityAnalysis | object | Output only. High-Precision Priority Analysis for the alert. (id: PriorityAnalysis) |
relevanceAnalysis | object | Output only. High-Precision Relevance Analysis verdict for the alert. (id: RelevanceAnalysis) |
severityAnalysis | object | Output only. High-Precision Severity Analysis for the alert. (id: SeverityAnalysis) |
state | string | Output only. State of the alert. (STATE_UNSPECIFIED, NEW, READ, TRIAGED, ESCALATED, RESOLVED, DUPLICATE, FALSE_POSITIVE, NOT_ACTIONABLE, BENIGN, TRACKED_EXTERNALLY) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_password | select | projectsId, alertsId | Get the decrypted password of an alert. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
alertsId | string | |
projectsId | string |
SELECT examples
- get_password
Get the decrypted password of an alert.
SELECT
name,
aiSummary,
audit,
configurations,
detail,
displayName,
duplicateOf,
duplicatedBy,
etag,
externalId,
findingCount,
findings,
priorityAnalysis,
relevanceAnalysis,
severityAnalysis,
state
FROM google.threatintelligence.alerts_password
WHERE projectsId = '{{ projectsId }}' -- required
AND alertsId = '{{ alertsId }}' -- required
;