@maxim_mazurok/gapi.client.containeranalysis-v1beta1 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=v1beta1
|
|
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
|
/** Findings produced by the analysis. */
|
|
34
34
|
findings?: Finding[];
|
|
35
35
|
/** Maximum severity found among findings. */
|
|
36
|
-
maxSeverity?:
|
|
36
|
+
maxSeverity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
37
37
|
/** Name of the skill that produced this analysis. */
|
|
38
38
|
skillName?: string;
|
|
39
39
|
}
|
|
@@ -1275,12 +1275,14 @@ declare namespace gapi.client {
|
|
|
1275
1275
|
interface Finding {
|
|
1276
1276
|
/** Category of the finding. */
|
|
1277
1277
|
category?: string;
|
|
1278
|
+
/** Description of the finding category. */
|
|
1279
|
+
details?: string;
|
|
1278
1280
|
/** Location (path and line) where the finding was detected. */
|
|
1279
1281
|
location?: FindingLocation;
|
|
1280
1282
|
/** Scanner determines which engine (e.g. static, llm) emitted the finding. */
|
|
1281
|
-
scanner?:
|
|
1283
|
+
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM';
|
|
1282
1284
|
/** Severity of the finding. */
|
|
1283
|
-
severity?:
|
|
1285
|
+
severity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1284
1286
|
}
|
|
1285
1287
|
interface FindingLocation {
|
|
1286
1288
|
/** Relative path of the file containing the finding. */
|
|
@@ -1393,6 +1395,8 @@ declare namespace gapi.client {
|
|
|
1393
1395
|
cvssV2?: CVSS;
|
|
1394
1396
|
/** The cvss v3 score for the vulnerability. */
|
|
1395
1397
|
cvssV3?: CVSS;
|
|
1398
|
+
/** The cvss v4 score of this vulnerability. */
|
|
1399
|
+
cvssV4?: CVSS;
|
|
1396
1400
|
/** Output only. CVSS version used to populate cvss_score and severity. */
|
|
1397
1401
|
cvssVersion?:
|
|
1398
1402
|
| 'CVSS_VERSION_UNSPECIFIED'
|
|
@@ -2220,6 +2224,8 @@ declare namespace gapi.client {
|
|
|
2220
2224
|
cvssV2?: CVSS;
|
|
2221
2225
|
/** The full description of the CVSS for version 3. */
|
|
2222
2226
|
cvssV3?: CVSSv3;
|
|
2227
|
+
/** The full description of the CVSS for version 4. */
|
|
2228
|
+
cvssV4?: CVSS;
|
|
2223
2229
|
/** CVSS version used to populate cvss_score and severity. */
|
|
2224
2230
|
cvssVersion?:
|
|
2225
2231
|
| 'CVSS_VERSION_UNSPECIFIED'
|