Skip to main content

alerts_password

Creates, updates, deletes, gets or lists an alerts_password resource.

Overview

Namealerts_password
TypeResource
Idgoogle.threatintelligence.alerts_password

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringIdentifier. Server generated name for the alert. format is projects/{project}/alerts/{alert}
aiSummarystringOptional. AI summary of the alert.
auditobjectOutput only. Audit information for the alert. (id: Audit)
configurationsarrayOutput only. The resource names of the Configurations bound to this alert. Format: projects/{project}/configurations/{configuration}
detailobjectOutput only. Details object for the alert, not all alerts will have a details object. (id: AlertDetail)
displayNamestringOutput only. A short title for the alert.
duplicateOfstringOutput only. alert name of the alert this alert is a duplicate of. Format: projects/{project}/alerts/{alert}
duplicatedByarrayOutput only. alert names of the alerts that are duplicates of this alert. Format: projects/{project}/alerts/{alert}
etagstringOptional. 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.
externalIdstringOutput only. External ID for the alert. This is used internally to provide protection against out of order updates.
findingCountstring (int64)Output only. The number of findings associated with this alert.
findingsarrayOutput only. Findings that are covered by this alert.
priorityAnalysisobjectOutput only. High-Precision Priority Analysis for the alert. (id: PriorityAnalysis)
relevanceAnalysisobjectOutput only. High-Precision Relevance Analysis verdict for the alert. (id: RelevanceAnalysis)
severityAnalysisobjectOutput only. High-Precision Severity Analysis for the alert. (id: SeverityAnalysis)
statestringOutput 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_passwordselectprojectsId, alertsIdGet 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.

NameDatatypeDescription
alertsIdstring
projectsIdstring

SELECT examples

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
;