blob: 50582d7534cd0f2cc6b1707e09ed60972cca59e0 [file] [edit]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="threatintelligence_v1beta.html">Threat Intelligence API</a> . <a href="threatintelligence_v1beta.projects.html">projects</a> . <a href="threatintelligence_v1beta.projects.findings.html">findings</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Get a finding by name. The `name` field should have the format: `projects/{project}/findings/{finding}`</p>
<p class="toc_element">
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Get a list of findings that meet the filter criteria. The `parent` field in ListFindingsRequest should have the format: projects/{project}</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#search">search(parent, orderBy=None, pageSize=None, pageToken=None, query=None, x__xgafv=None)</a></code></p>
<p class="firstline">SearchFindings 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. The `parent` field in SearchFindingsRequest should have the format: projects/{project} Example to search for findings for a specific issue: `has_alert("name=\"projects/gti-12345/alerts/alert-12345\"")`</p>
<p class="toc_element">
<code><a href="#search_next">search_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Get a finding by name. The `name` field should have the format: `projects/{project}/findings/{finding}`
Args:
name: string, Required. Name of the finding to get. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A ‘stateless’ and a point in time event that a check produced a result of interest.
&quot;aiSummary&quot;: &quot;A String&quot;, # Optional. AI summary of the finding.
&quot;alert&quot;: &quot;A String&quot;, # Optional. Name of the alert that this finding is bound to.
&quot;audit&quot;: { # Tracks basic CRUD facts. # Output only. Audit data about the finding.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Time of creation.
&quot;creator&quot;: &quot;A String&quot;, # Output only. Agent that created or updated the record, could be a UserId or a JobId.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. Time of creation or last update.
&quot;updater&quot;: &quot;A String&quot;, # Output only. Agent that last updated the record, could be a UserId or a JobId.
},
&quot;configurations&quot;: [ # Optional. Configuration names that are bound to this finding.
&quot;A String&quot;,
],
&quot;detail&quot;: { # Wrapper class that contains the union struct for all the various findings detail specific classes. # Required. Holder of the domain specific details of the finding.
&quot;dataLeak&quot;: { # A detail object for a Data Leak finding. # Data Leak finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the Data Leak finding. This indicates the potential impact of the threat.
},
&quot;detailType&quot;: &quot;A String&quot;, # 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.
&quot;initialAccessBroker&quot;: { # A detail object for an Initial Access Broker (IAB) finding. # Initial Access Broker finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the IAB finding. This indicates the potential impact of the threat.
},
&quot;insiderThreat&quot;: { # A detail object for a InsiderThreat finding. # Insider Threat finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the InsiderThreat finding. This indicates the potential impact of the threat.
},
&quot;targetTechnology&quot;: { # Contains details for a technology watchlist finding. # Technology Watchlist finding detail type.
&quot;vulnerabilityMatch&quot;: { # Contains details about a vulnerability match. # Optional. The vulnerability match details.
&quot;associations&quot;: [ # Optional. Associated threat actors, malware, etc. This is embedded as a snapshot because the details of the association at the time of the vulnerability match are important for context and reporting.
{ # Represents an association with a vulnerability.
&quot;id&quot;: &quot;A String&quot;, # Required. The ID of the association.
&quot;type&quot;: &quot;A String&quot;, # Required. The type of the association.
},
],
&quot;collectionId&quot;: &quot;A String&quot;, # Required. The collection ID of the vulnerability. Ex: &quot;vulnerability--cve-2025-9876&quot;.
&quot;cveId&quot;: &quot;A String&quot;, # Required. The CVE ID of the vulnerability. Ex: &quot;CVE-2025-9876&quot;. See https://www.cve.org/ for more information.
&quot;cvss3Score&quot;: 3.14, # Required. The CVSS score of the vulnerability. Evaluates to CVSS v3 when available with a fallback to v2 and v4. Example: 6.4.
&quot;description&quot;: &quot;A String&quot;, # Required. A description of the vulnerability.
&quot;disclosureTime&quot;: &quot;A String&quot;, # Optional. The disclosure time of the vulnerability.
&quot;epssScore&quot;: 3.14, # Optional. The EPSS score, representing the probability of exploitation. Example: 0.87.
&quot;exploitationConsequences&quot;: [ # Optional. List of exploitation consequences for the vulnerability.
&quot;A String&quot;,
],
&quot;exploitationState&quot;: &quot;A String&quot;, # Required. The exploitation state of the vulnerability.
&quot;exploitationVectors&quot;: [ # Optional. List of exploitation vectors for the vulnerability.
&quot;A String&quot;,
],
&quot;matchedTechnologies&quot;: [ # Optional. The specific technologies from the configured watchlist that triggered the match. Ex: &quot;Apache Struts&quot;.
&quot;A String&quot;,
],
&quot;priority&quot;: &quot;A String&quot;, # Optional. The priority level of the vulnerability data. Ex: &quot;P1&quot;.
&quot;productFixes&quot;: [ # Optional. List of product fixes for the vulnerability.
{ # Contains details about a product fix.
&quot;displayName&quot;: &quot;A String&quot;, # Required. The name of the fix. Ex: &quot;Magento&quot;.
&quot;publishTime&quot;: &quot;A String&quot;, # Optional. The published time of the fix.
&quot;sourceId&quot;: &quot;A String&quot;, # Required. The source ID of the fix. Ex: &quot;APPSEC-1420&quot;.
&quot;uri&quot;: &quot;A String&quot;, # Optional. The URI of the fix.
},
],
&quot;publicExploits&quot;: [ # Optional. List of public exploits.
{ # Contains details about a public exploit.
&quot;exploitGrade&quot;: &quot;A String&quot;, # Optional. The grade of the exploit. Ex: &quot;non-weaponized&quot;.
&quot;exploitName&quot;: &quot;A String&quot;, # Required. The name of the exploit. Ex: &quot;Magentounauth.php.txt&quot;.
&quot;exploitReliability&quot;: &quot;A String&quot;, # Optional. The reliability of the exploit. Ex: &quot;Unreviewed&quot;.
&quot;releaseTime&quot;: &quot;A String&quot;, # Optional. The release time of the exploit.
&quot;sizeBytes&quot;: &quot;A String&quot;, # Optional. The size of the exploit.
&quot;uri&quot;: &quot;A String&quot;, # Optional. The URI of the exploit.
},
],
&quot;publiclyAvailableExploit&quot;: True or False, # Output only. Whether a publicly available exploit exists.
&quot;riskRating&quot;: &quot;A String&quot;, # Required. The risk rating of the vulnerability.
&quot;technologies&quot;: [ # Required. All technologies affected by the vulnerability. Ex: &quot;Apache Struts&quot;.
&quot;A String&quot;,
],
},
},
},
&quot;displayName&quot;: &quot;A String&quot;, # Required. A short descriptive title for the finding &lt;= 250 chars. EX: &quot;Actor &#x27;baddy&#x27; offering $1000 for credentials of &#x27;goodguy&#x27;&quot;.
&quot;name&quot;: &quot;A String&quot;, # Identifier. Server generated name for the finding (leave clear during creation). Format: projects/{project}/findings/{finding}
&quot;provider&quot;: &quot;A String&quot;, # Required. Logical source of this finding (name of the sub-engine).
&quot;relevanceAnalysis&quot;: { # Structured relevance analysis for a threat. # Output only. High-Precision Relevance Analysis verdict for the finding.
&quot;confidence&quot;: &quot;A String&quot;, # The level of confidence in the given verdict.
&quot;evidence&quot;: { # Details the evidence used to determine the relevance verdict. # Evidence supporting the verdict, including matched and unmatched items.
&quot;commonThemes&quot;: [ # A list of semantic themes or concepts found to be common, related, or aligned between the sources, supporting the verdict.
&quot;A String&quot;,
],
&quot;distinctThemes&quot;: [ # A list of semantic themes or descriptions unique to one source or semantically distant.
&quot;A String&quot;,
],
},
&quot;reasoning&quot;: &quot;A String&quot;, # Human-readable explanation from the matcher, detailing why a particular result is considered relevant or not relevant.
&quot;relevanceLevel&quot;: &quot;A String&quot;, # The level of relevance.
&quot;relevant&quot;: True or False, # Indicates whether the threat is considered relevant.
},
&quot;reoccurrenceTimes&quot;: [ # Output only. When identical finding (same labels and same details) has re-occurred.
&quot;A String&quot;,
],
&quot;severity&quot;: 3.14, # Optional. Deprecated: Use the `severity_analysis` field instead. Base severity score from the finding source.
&quot;severityAnalysis&quot;: { # Structured severity analysis for a threat. # Output only. High-Precision Severity Analysis verdict for the finding.
&quot;confidence&quot;: &quot;A String&quot;, # The level of confidence in the given verdict.
&quot;reasoning&quot;: &quot;A String&quot;, # Human-readable explanation from the model, detailing why a particular result is considered to have a certain severity.
&quot;severityLevel&quot;: &quot;A String&quot;, # The level of severity.
},
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Get a list of findings that meet the filter criteria. The `parent` field in ListFindingsRequest should have the format: projects/{project}
Args:
parent: string, Required. Parent of the findings. (required)
filter: string, Optional. Filter criteria.
orderBy: string, Optional. Order by criteria in the csv format: &quot;field1,field2 desc&quot; or &quot;field1,field2&quot; or &quot;field1 asc, field2&quot;.
pageSize: integer, Optional. Page size.
pageToken: string, Optional. Page token.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response message for ListFindings.
&quot;findings&quot;: [ # List of findings.
{ # A ‘stateless’ and a point in time event that a check produced a result of interest.
&quot;aiSummary&quot;: &quot;A String&quot;, # Optional. AI summary of the finding.
&quot;alert&quot;: &quot;A String&quot;, # Optional. Name of the alert that this finding is bound to.
&quot;audit&quot;: { # Tracks basic CRUD facts. # Output only. Audit data about the finding.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Time of creation.
&quot;creator&quot;: &quot;A String&quot;, # Output only. Agent that created or updated the record, could be a UserId or a JobId.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. Time of creation or last update.
&quot;updater&quot;: &quot;A String&quot;, # Output only. Agent that last updated the record, could be a UserId or a JobId.
},
&quot;configurations&quot;: [ # Optional. Configuration names that are bound to this finding.
&quot;A String&quot;,
],
&quot;detail&quot;: { # Wrapper class that contains the union struct for all the various findings detail specific classes. # Required. Holder of the domain specific details of the finding.
&quot;dataLeak&quot;: { # A detail object for a Data Leak finding. # Data Leak finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the Data Leak finding. This indicates the potential impact of the threat.
},
&quot;detailType&quot;: &quot;A String&quot;, # 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.
&quot;initialAccessBroker&quot;: { # A detail object for an Initial Access Broker (IAB) finding. # Initial Access Broker finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the IAB finding. This indicates the potential impact of the threat.
},
&quot;insiderThreat&quot;: { # A detail object for a InsiderThreat finding. # Insider Threat finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the InsiderThreat finding. This indicates the potential impact of the threat.
},
&quot;targetTechnology&quot;: { # Contains details for a technology watchlist finding. # Technology Watchlist finding detail type.
&quot;vulnerabilityMatch&quot;: { # Contains details about a vulnerability match. # Optional. The vulnerability match details.
&quot;associations&quot;: [ # Optional. Associated threat actors, malware, etc. This is embedded as a snapshot because the details of the association at the time of the vulnerability match are important for context and reporting.
{ # Represents an association with a vulnerability.
&quot;id&quot;: &quot;A String&quot;, # Required. The ID of the association.
&quot;type&quot;: &quot;A String&quot;, # Required. The type of the association.
},
],
&quot;collectionId&quot;: &quot;A String&quot;, # Required. The collection ID of the vulnerability. Ex: &quot;vulnerability--cve-2025-9876&quot;.
&quot;cveId&quot;: &quot;A String&quot;, # Required. The CVE ID of the vulnerability. Ex: &quot;CVE-2025-9876&quot;. See https://www.cve.org/ for more information.
&quot;cvss3Score&quot;: 3.14, # Required. The CVSS score of the vulnerability. Evaluates to CVSS v3 when available with a fallback to v2 and v4. Example: 6.4.
&quot;description&quot;: &quot;A String&quot;, # Required. A description of the vulnerability.
&quot;disclosureTime&quot;: &quot;A String&quot;, # Optional. The disclosure time of the vulnerability.
&quot;epssScore&quot;: 3.14, # Optional. The EPSS score, representing the probability of exploitation. Example: 0.87.
&quot;exploitationConsequences&quot;: [ # Optional. List of exploitation consequences for the vulnerability.
&quot;A String&quot;,
],
&quot;exploitationState&quot;: &quot;A String&quot;, # Required. The exploitation state of the vulnerability.
&quot;exploitationVectors&quot;: [ # Optional. List of exploitation vectors for the vulnerability.
&quot;A String&quot;,
],
&quot;matchedTechnologies&quot;: [ # Optional. The specific technologies from the configured watchlist that triggered the match. Ex: &quot;Apache Struts&quot;.
&quot;A String&quot;,
],
&quot;priority&quot;: &quot;A String&quot;, # Optional. The priority level of the vulnerability data. Ex: &quot;P1&quot;.
&quot;productFixes&quot;: [ # Optional. List of product fixes for the vulnerability.
{ # Contains details about a product fix.
&quot;displayName&quot;: &quot;A String&quot;, # Required. The name of the fix. Ex: &quot;Magento&quot;.
&quot;publishTime&quot;: &quot;A String&quot;, # Optional. The published time of the fix.
&quot;sourceId&quot;: &quot;A String&quot;, # Required. The source ID of the fix. Ex: &quot;APPSEC-1420&quot;.
&quot;uri&quot;: &quot;A String&quot;, # Optional. The URI of the fix.
},
],
&quot;publicExploits&quot;: [ # Optional. List of public exploits.
{ # Contains details about a public exploit.
&quot;exploitGrade&quot;: &quot;A String&quot;, # Optional. The grade of the exploit. Ex: &quot;non-weaponized&quot;.
&quot;exploitName&quot;: &quot;A String&quot;, # Required. The name of the exploit. Ex: &quot;Magentounauth.php.txt&quot;.
&quot;exploitReliability&quot;: &quot;A String&quot;, # Optional. The reliability of the exploit. Ex: &quot;Unreviewed&quot;.
&quot;releaseTime&quot;: &quot;A String&quot;, # Optional. The release time of the exploit.
&quot;sizeBytes&quot;: &quot;A String&quot;, # Optional. The size of the exploit.
&quot;uri&quot;: &quot;A String&quot;, # Optional. The URI of the exploit.
},
],
&quot;publiclyAvailableExploit&quot;: True or False, # Output only. Whether a publicly available exploit exists.
&quot;riskRating&quot;: &quot;A String&quot;, # Required. The risk rating of the vulnerability.
&quot;technologies&quot;: [ # Required. All technologies affected by the vulnerability. Ex: &quot;Apache Struts&quot;.
&quot;A String&quot;,
],
},
},
},
&quot;displayName&quot;: &quot;A String&quot;, # Required. A short descriptive title for the finding &lt;= 250 chars. EX: &quot;Actor &#x27;baddy&#x27; offering $1000 for credentials of &#x27;goodguy&#x27;&quot;.
&quot;name&quot;: &quot;A String&quot;, # Identifier. Server generated name for the finding (leave clear during creation). Format: projects/{project}/findings/{finding}
&quot;provider&quot;: &quot;A String&quot;, # Required. Logical source of this finding (name of the sub-engine).
&quot;relevanceAnalysis&quot;: { # Structured relevance analysis for a threat. # Output only. High-Precision Relevance Analysis verdict for the finding.
&quot;confidence&quot;: &quot;A String&quot;, # The level of confidence in the given verdict.
&quot;evidence&quot;: { # Details the evidence used to determine the relevance verdict. # Evidence supporting the verdict, including matched and unmatched items.
&quot;commonThemes&quot;: [ # A list of semantic themes or concepts found to be common, related, or aligned between the sources, supporting the verdict.
&quot;A String&quot;,
],
&quot;distinctThemes&quot;: [ # A list of semantic themes or descriptions unique to one source or semantically distant.
&quot;A String&quot;,
],
},
&quot;reasoning&quot;: &quot;A String&quot;, # Human-readable explanation from the matcher, detailing why a particular result is considered relevant or not relevant.
&quot;relevanceLevel&quot;: &quot;A String&quot;, # The level of relevance.
&quot;relevant&quot;: True or False, # Indicates whether the threat is considered relevant.
},
&quot;reoccurrenceTimes&quot;: [ # Output only. When identical finding (same labels and same details) has re-occurred.
&quot;A String&quot;,
],
&quot;severity&quot;: 3.14, # Optional. Deprecated: Use the `severity_analysis` field instead. Base severity score from the finding source.
&quot;severityAnalysis&quot;: { # Structured severity analysis for a threat. # Output only. High-Precision Severity Analysis verdict for the finding.
&quot;confidence&quot;: &quot;A String&quot;, # The level of confidence in the given verdict.
&quot;reasoning&quot;: &quot;A String&quot;, # Human-readable explanation from the model, detailing why a particular result is considered to have a certain severity.
&quot;severityLevel&quot;: &quot;A String&quot;, # The level of severity.
},
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # Page token.
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next(previous_request, previous_response)</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
<div class="method">
<code class="details" id="search">search(parent, orderBy=None, pageSize=None, pageToken=None, query=None, x__xgafv=None)</code>
<pre>SearchFindings is a more powerful version of ListFindings that supports complex queries like &quot;findings for alerts&quot; using functions such as `has_alert` in the query string. The `parent` field in SearchFindingsRequest should have the format: projects/{project} Example to search for findings for a specific issue: `has_alert(&quot;name=\&quot;projects/gti-12345/alerts/alert-12345\&quot;&quot;)`
Args:
parent: string, Required. Parent of the findings. Format: vaults/{vault} (required)
orderBy: string, Optional. Order by criteria in the csv format: &quot;field1,field2 desc&quot; or &quot;field1,field2&quot; or &quot;field1 asc, field2&quot;.
pageSize: integer, Optional. Page size.
pageToken: string, Optional. Page token.
query: string, Optional. Query on what findings will be returned. This supports the same filter criteria as FindingService.ListFindings as well as the following relationship query `has_alert`. Example: - `has_alert(&quot;name=\&quot;projects/gti-12345/alerts/alert-12345\&quot;&quot;)`
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response message for SearchFindings.
&quot;findings&quot;: [ # List of findings.
{ # A ‘stateless’ and a point in time event that a check produced a result of interest.
&quot;aiSummary&quot;: &quot;A String&quot;, # Optional. AI summary of the finding.
&quot;alert&quot;: &quot;A String&quot;, # Optional. Name of the alert that this finding is bound to.
&quot;audit&quot;: { # Tracks basic CRUD facts. # Output only. Audit data about the finding.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Time of creation.
&quot;creator&quot;: &quot;A String&quot;, # Output only. Agent that created or updated the record, could be a UserId or a JobId.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. Time of creation or last update.
&quot;updater&quot;: &quot;A String&quot;, # Output only. Agent that last updated the record, could be a UserId or a JobId.
},
&quot;configurations&quot;: [ # Optional. Configuration names that are bound to this finding.
&quot;A String&quot;,
],
&quot;detail&quot;: { # Wrapper class that contains the union struct for all the various findings detail specific classes. # Required. Holder of the domain specific details of the finding.
&quot;dataLeak&quot;: { # A detail object for a Data Leak finding. # Data Leak finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the Data Leak finding. This indicates the potential impact of the threat.
},
&quot;detailType&quot;: &quot;A String&quot;, # 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.
&quot;initialAccessBroker&quot;: { # A detail object for an Initial Access Broker (IAB) finding. # Initial Access Broker finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the IAB finding. This indicates the potential impact of the threat.
},
&quot;insiderThreat&quot;: { # A detail object for a InsiderThreat finding. # Insider Threat finding detail type.
&quot;documentId&quot;: &quot;A String&quot;, # 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.
&quot;matchScore&quot;: 3.14, # 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.
&quot;severity&quot;: &quot;A String&quot;, # Required. The severity of the InsiderThreat finding. This indicates the potential impact of the threat.
},
&quot;targetTechnology&quot;: { # Contains details for a technology watchlist finding. # Technology Watchlist finding detail type.
&quot;vulnerabilityMatch&quot;: { # Contains details about a vulnerability match. # Optional. The vulnerability match details.
&quot;associations&quot;: [ # Optional. Associated threat actors, malware, etc. This is embedded as a snapshot because the details of the association at the time of the vulnerability match are important for context and reporting.
{ # Represents an association with a vulnerability.
&quot;id&quot;: &quot;A String&quot;, # Required. The ID of the association.
&quot;type&quot;: &quot;A String&quot;, # Required. The type of the association.
},
],
&quot;collectionId&quot;: &quot;A String&quot;, # Required. The collection ID of the vulnerability. Ex: &quot;vulnerability--cve-2025-9876&quot;.
&quot;cveId&quot;: &quot;A String&quot;, # Required. The CVE ID of the vulnerability. Ex: &quot;CVE-2025-9876&quot;. See https://www.cve.org/ for more information.
&quot;cvss3Score&quot;: 3.14, # Required. The CVSS score of the vulnerability. Evaluates to CVSS v3 when available with a fallback to v2 and v4. Example: 6.4.
&quot;description&quot;: &quot;A String&quot;, # Required. A description of the vulnerability.
&quot;disclosureTime&quot;: &quot;A String&quot;, # Optional. The disclosure time of the vulnerability.
&quot;epssScore&quot;: 3.14, # Optional. The EPSS score, representing the probability of exploitation. Example: 0.87.
&quot;exploitationConsequences&quot;: [ # Optional. List of exploitation consequences for the vulnerability.
&quot;A String&quot;,
],
&quot;exploitationState&quot;: &quot;A String&quot;, # Required. The exploitation state of the vulnerability.
&quot;exploitationVectors&quot;: [ # Optional. List of exploitation vectors for the vulnerability.
&quot;A String&quot;,
],
&quot;matchedTechnologies&quot;: [ # Optional. The specific technologies from the configured watchlist that triggered the match. Ex: &quot;Apache Struts&quot;.
&quot;A String&quot;,
],
&quot;priority&quot;: &quot;A String&quot;, # Optional. The priority level of the vulnerability data. Ex: &quot;P1&quot;.
&quot;productFixes&quot;: [ # Optional. List of product fixes for the vulnerability.
{ # Contains details about a product fix.
&quot;displayName&quot;: &quot;A String&quot;, # Required. The name of the fix. Ex: &quot;Magento&quot;.
&quot;publishTime&quot;: &quot;A String&quot;, # Optional. The published time of the fix.
&quot;sourceId&quot;: &quot;A String&quot;, # Required. The source ID of the fix. Ex: &quot;APPSEC-1420&quot;.
&quot;uri&quot;: &quot;A String&quot;, # Optional. The URI of the fix.
},
],
&quot;publicExploits&quot;: [ # Optional. List of public exploits.
{ # Contains details about a public exploit.
&quot;exploitGrade&quot;: &quot;A String&quot;, # Optional. The grade of the exploit. Ex: &quot;non-weaponized&quot;.
&quot;exploitName&quot;: &quot;A String&quot;, # Required. The name of the exploit. Ex: &quot;Magentounauth.php.txt&quot;.
&quot;exploitReliability&quot;: &quot;A String&quot;, # Optional. The reliability of the exploit. Ex: &quot;Unreviewed&quot;.
&quot;releaseTime&quot;: &quot;A String&quot;, # Optional. The release time of the exploit.
&quot;sizeBytes&quot;: &quot;A String&quot;, # Optional. The size of the exploit.
&quot;uri&quot;: &quot;A String&quot;, # Optional. The URI of the exploit.
},
],
&quot;publiclyAvailableExploit&quot;: True or False, # Output only. Whether a publicly available exploit exists.
&quot;riskRating&quot;: &quot;A String&quot;, # Required. The risk rating of the vulnerability.
&quot;technologies&quot;: [ # Required. All technologies affected by the vulnerability. Ex: &quot;Apache Struts&quot;.
&quot;A String&quot;,
],
},
},
},
&quot;displayName&quot;: &quot;A String&quot;, # Required. A short descriptive title for the finding &lt;= 250 chars. EX: &quot;Actor &#x27;baddy&#x27; offering $1000 for credentials of &#x27;goodguy&#x27;&quot;.
&quot;name&quot;: &quot;A String&quot;, # Identifier. Server generated name for the finding (leave clear during creation). Format: projects/{project}/findings/{finding}
&quot;provider&quot;: &quot;A String&quot;, # Required. Logical source of this finding (name of the sub-engine).
&quot;relevanceAnalysis&quot;: { # Structured relevance analysis for a threat. # Output only. High-Precision Relevance Analysis verdict for the finding.
&quot;confidence&quot;: &quot;A String&quot;, # The level of confidence in the given verdict.
&quot;evidence&quot;: { # Details the evidence used to determine the relevance verdict. # Evidence supporting the verdict, including matched and unmatched items.
&quot;commonThemes&quot;: [ # A list of semantic themes or concepts found to be common, related, or aligned between the sources, supporting the verdict.
&quot;A String&quot;,
],
&quot;distinctThemes&quot;: [ # A list of semantic themes or descriptions unique to one source or semantically distant.
&quot;A String&quot;,
],
},
&quot;reasoning&quot;: &quot;A String&quot;, # Human-readable explanation from the matcher, detailing why a particular result is considered relevant or not relevant.
&quot;relevanceLevel&quot;: &quot;A String&quot;, # The level of relevance.
&quot;relevant&quot;: True or False, # Indicates whether the threat is considered relevant.
},
&quot;reoccurrenceTimes&quot;: [ # Output only. When identical finding (same labels and same details) has re-occurred.
&quot;A String&quot;,
],
&quot;severity&quot;: 3.14, # Optional. Deprecated: Use the `severity_analysis` field instead. Base severity score from the finding source.
&quot;severityAnalysis&quot;: { # Structured severity analysis for a threat. # Output only. High-Precision Severity Analysis verdict for the finding.
&quot;confidence&quot;: &quot;A String&quot;, # The level of confidence in the given verdict.
&quot;reasoning&quot;: &quot;A String&quot;, # Human-readable explanation from the model, detailing why a particular result is considered to have a certain severity.
&quot;severityLevel&quot;: &quot;A String&quot;, # The level of severity.
},
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # Page token.
}</pre>
</div>
<div class="method">
<code class="details" id="search_next">search_next(previous_request, previous_response)</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
</body></html>