@maxim_mazurok/gapi.client.threatintelligence-v1beta 0.0.20260118 → 0.0.20260120
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://threatintelligence.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260120
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -136,6 +136,12 @@ declare namespace gapi.client {
|
|
|
136
136
|
/** Required. Value for the seed asset. Could be an IP address, network service, email addresses, etc. */
|
|
137
137
|
seedValue?: string;
|
|
138
138
|
}
|
|
139
|
+
interface Association {
|
|
140
|
+
/** Required. The ID of the association. */
|
|
141
|
+
id?: string;
|
|
142
|
+
/** Required. The type of the association. */
|
|
143
|
+
type?: string;
|
|
144
|
+
}
|
|
139
145
|
interface Audit {
|
|
140
146
|
/** Output only. Time of creation. */
|
|
141
147
|
createTime?: string;
|
|
@@ -731,6 +737,8 @@ declare namespace gapi.client {
|
|
|
731
737
|
configuration?: string;
|
|
732
738
|
}
|
|
733
739
|
interface VulnerabilityMatch {
|
|
740
|
+
/** 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. */
|
|
741
|
+
associations?: Association[];
|
|
734
742
|
/** Output only. The collection ID of the vulnerability. Ex: "vulnerability--cve-2025-9876". */
|
|
735
743
|
collectionId?: string;
|
|
736
744
|
/** Output only. The CVE ID of the vulnerability. Ex: "CVE-2025-9876". See https://www.cve.org/ for more information. */
|