Overview

Resource: Finding

A ‘stateless’ and a point in time event that a check produced a result of interest.

{
  "name": string,
  "provider": string,
  "displayName": string,
  "detail": {
    object (FindingDetail)
  },
  "severity": number,
  "reoccurrenceTimes": [
    string
  ],
  "relevanceAnalysis": {
    object (RelevanceAnalysis)
  },
  "severityAnalysis": {
    object (SeverityAnalysis)
  },
  "aiSummary": string,
  "audit": {
    object (Audit)
  },
  "alert": string,
  "configurations": [
    string
  ]
}
Fields
namestring

Identifier. Server generated name for the finding (leave clear during creation). Format: projects/{project}/findings/{finding}
providerstring

Required. Logical source of this finding (name of the sub-engine).
displayNamestring

Required. A short descriptive title for the finding <= 250 chars. EX: "Actor 'baddy' offering $1000 for credentials of 'goodguy'".
detailobject (FindingDetail )

Required. Holder of the domain specific details of the finding.
severity **(deprecated)**number

This item is deprecated!

Optional. Deprecated: Use the severityAnalysis field instead. Base severity score from the finding source.
reoccurrenceTimes[]string (Timestamp format)

Output only. When identical finding (same labels and same details) has re-occurred.

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".
relevanceAnalysisobject (RelevanceAnalysis )

Output only. High-Precision Relevance Analysis verdict for the finding.
severityAnalysisobject (SeverityAnalysis )

Output only. High-Precision Severity Analysis verdict for the finding.
aiSummarystring

Optional. AI summary of the finding.
auditobject (Audit )

Output only. Audit data about the finding.
alertstring

Optional. Name of the alert that this finding is bound to.
configurations[]string

Optional. Configuration names that are bound to this finding.

FindingDetail

Wrapper class that contains the union struct for all the various findings detail specific classes.

{
  "detailType": string,

  // Union field detail can be only one of the following:
  "initialAccessBroker": {
    object (InitialAccessBrokerFindingDetail)
  },
  "dataLeak": {
    object (DataLeakFindingDetail)
  },
  "insiderThreat": {
    object (InsiderThreatFindingDetail)
  }
  // End of list of possible types for union field detail.
}
Fields
detailTypestring

Output only. Name of the detail type. Will be set by the server during creation to the name of the field that is set in the detail union.
Union field detail. Domain specific details object which includes a high level summary of the finding for use in ATD contexts. detail can be only one of the following:
initialAccessBrokerobject (InitialAccessBrokerFindingDetail )

Initial Access Broker finding detail type.
dataLeakobject (DataLeakFindingDetail )

Data Leak finding detail type.
insiderThreatobject (InsiderThreatFindingDetail )

Insider Threat finding detail type.

InitialAccessBrokerFindingDetail

A detail object for an Initial Access Broker (IAB) finding.

{
  "matchScore": number,
  "severity": enum (Severity),
  "documentId": string
}

Fields
matchScorenumber

Required. Reference to the match score of the IAB finding. This is a float value between 0 and 1 calculated by the matching engine based on the similarity of the document and the user provided configurations.
severityenum (Severity )

Required. The severity of the IAB finding. This indicates the potential impact of the threat.
documentIdstring

Required. The unique identifier of the document that triggered the IAB finding. This ID can be used to retrieve the content of the document for further analysis.

Severity

Severity of the threat finding

Enums
SEVERITY_UNSPECIFIED
LOW
MEDIUM
HIGH
CRITICAL

DataLeakFindingDetail

A detail object for a Data Leak finding.

{
  "matchScore": number,
  "severity": enum (Severity),
  "documentId": string
}
Fields
matchScorenumber

Required. Reference to the match score of the Data Leak finding. This is a float value greater than 0 and less than or equal to 1 calculated by the matching engine based on the similarity of the document and the user provided configurations.
severityenum (Severity )

Required. The severity of the Data Leak finding. This indicates the potential impact of the threat.
documentIdstring

Required. The unique identifier of the document that triggered the Data Leak finding. This ID can be used to retrieve the content of the document for further analysis.

Severity

Severity of the threat finding.

Enums
SEVERITY_UNSPECIFIEDDefault value, should never be set.
LOWLow severity.
MEDIUMMedium severity.
HIGHHigh severity.
CRITICALCritical severity.

InsiderThreatFindingDetail

A detail object for a InsiderThreat finding.

{
  "matchScore": number,
  "severity": enum (Severity),
  "documentId": string
}

Fields
matchScorenumber

Required. Reference to the match score of the InsiderThreat finding. This is a float value greater than 0 and less than or equal to 1 calculated by the matching engine based on the similarity of the document and the user provided configurations.
severityenum (Severity )

Required. The severity of the InsiderThreat finding. This indicates the potential impact of the threat.
documentIdstring

Required. The unique identifier of the document that triggered the InsiderThreat finding. This ID can be used to retrieve the content of the document for further analysis.

Severity

Severity of the threat finding.

Enums
SEVERITY_UNSPECIFIEDDefault value, should never be set.
LOWLow severity.
MEDIUMMedium severity.
HIGHHigh severity.
CRITICALCritical severity.

Methods

getGet a finding by name.
listGet a list of findings that meet the filter criteria.
searchSearchFindings is a more powerful version of ListFindings that supports complex queries like "findings for alerts" using functions such as has_alert in the query string.