@maxim_mazurok/gapi.client.containeranalysis-v1 0.1.20260521 → 0.1.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=v1
|
|
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
|
}
|
|
@@ -1261,12 +1261,14 @@ declare namespace gapi.client {
|
|
|
1261
1261
|
interface Finding {
|
|
1262
1262
|
/** Category of the finding. */
|
|
1263
1263
|
category?: string;
|
|
1264
|
+
/** Description of the finding category. */
|
|
1265
|
+
details?: string;
|
|
1264
1266
|
/** Location (path and line) where the finding was detected. */
|
|
1265
1267
|
location?: FindingLocation;
|
|
1266
1268
|
/** Scanner determines which engine (e.g. static, llm) emitted the finding. */
|
|
1267
|
-
scanner?:
|
|
1269
|
+
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM';
|
|
1268
1270
|
/** Severity of the finding. */
|
|
1269
|
-
severity?:
|
|
1271
|
+
severity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1270
1272
|
}
|
|
1271
1273
|
interface FindingLocation {
|
|
1272
1274
|
/** Relative path of the file containing the finding. */
|
|
@@ -2108,6 +2110,8 @@ declare namespace gapi.client {
|
|
|
2108
2110
|
cvssV2?: CVSS;
|
|
2109
2111
|
/** The full description of the CVSSv3 for this vulnerability. */
|
|
2110
2112
|
cvssV3?: CVSSv3;
|
|
2113
|
+
/** The full description of the v4 CVSS for this vulnerability. */
|
|
2114
|
+
cvssV4?: CVSS;
|
|
2111
2115
|
/** CVSS version used to populate cvss_score and severity. */
|
|
2112
2116
|
cvssVersion?:
|
|
2113
2117
|
| 'CVSS_VERSION_UNSPECIFIED'
|
|
@@ -2136,6 +2140,8 @@ declare namespace gapi.client {
|
|
|
2136
2140
|
cvssV2?: CVSS;
|
|
2137
2141
|
/** The cvss v3 score for the vulnerability. */
|
|
2138
2142
|
cvssv3?: CVSS;
|
|
2143
|
+
/** The cvss v4 score for the vulnerability. */
|
|
2144
|
+
cvssV4?: CVSS;
|
|
2139
2145
|
/** Output only. CVSS version used to populate cvss_score and severity. */
|
|
2140
2146
|
cvssVersion?:
|
|
2141
2147
|
| 'CVSS_VERSION_UNSPECIFIED'
|