@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.2.20260521 → 0.2.20260529
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 +10 -4
- 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://containeranalysis.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260529
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -33,7 +33,7 @@ declare namespace gapi.client {
|
|
|
33
33
|
/** Optional. Findings produced by the analysis. */
|
|
34
34
|
findings?: Finding[];
|
|
35
35
|
/** Optional. Maximum severity found among findings. */
|
|
36
|
-
maxSeverity?:
|
|
36
|
+
maxSeverity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
37
37
|
/** Optional. Name of the skill that produced this analysis. */
|
|
38
38
|
skillName?: string;
|
|
39
39
|
}
|
|
@@ -1312,12 +1312,14 @@ declare namespace gapi.client {
|
|
|
1312
1312
|
interface Finding {
|
|
1313
1313
|
/** Optional. Category of the finding. */
|
|
1314
1314
|
category?: string;
|
|
1315
|
+
/** Optional. Description of the finding category. */
|
|
1316
|
+
details?: string;
|
|
1315
1317
|
/** Optional. Location (path and line) where the finding was detected. */
|
|
1316
1318
|
location?: FindingLocation;
|
|
1317
1319
|
/** Optional. Scanner determines which engine (e.g. static, llm) emitted the finding. */
|
|
1318
|
-
scanner?:
|
|
1320
|
+
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM';
|
|
1319
1321
|
/** Optional. Severity of the finding. */
|
|
1320
|
-
severity?:
|
|
1322
|
+
severity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1321
1323
|
}
|
|
1322
1324
|
interface FindingLocation {
|
|
1323
1325
|
/** Optional. Relative path of the file containing the finding. */
|
|
@@ -2431,6 +2433,8 @@ declare namespace gapi.client {
|
|
|
2431
2433
|
cvssV2?: CVSS;
|
|
2432
2434
|
/** The CVSS v3 score of this vulnerability. */
|
|
2433
2435
|
cvssV3?: CVSS;
|
|
2436
|
+
/** Optional. The CVSS v4 score of this vulnerability. */
|
|
2437
|
+
cvssV4?: CVSS;
|
|
2434
2438
|
/** Output only. CVSS version used to populate cvss_score and severity. */
|
|
2435
2439
|
cvssVersion?:
|
|
2436
2440
|
| 'CVSS_VERSION_UNSPECIFIED'
|
|
@@ -2481,6 +2485,8 @@ declare namespace gapi.client {
|
|
|
2481
2485
|
cvssScore?: number;
|
|
2482
2486
|
/** The full description of the CVSS for version 2. */
|
|
2483
2487
|
cvssV2?: CVSS;
|
|
2488
|
+
/** Optional. The full description of the CVSS for version 4. */
|
|
2489
|
+
cvssV4?: CVSS;
|
|
2484
2490
|
/** CVSS version used to populate cvss_score and severity. */
|
|
2485
2491
|
cvssVersion?:
|
|
2486
2492
|
| 'CVSS_VERSION_UNSPECIFIED'
|