@maxim_mazurok/gapi.client.containeranalysis-v1 0.1.20260521 → 0.1.20260604
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 +12 -5
- 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: 20260604
|
|
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
|
}
|
|
@@ -547,7 +547,8 @@ declare namespace gapi.client {
|
|
|
547
547
|
| 'N1_HIGHCPU_32'
|
|
548
548
|
| 'E2_HIGHCPU_8'
|
|
549
549
|
| 'E2_HIGHCPU_32'
|
|
550
|
-
| 'E2_MEDIUM'
|
|
550
|
+
| 'E2_MEDIUM'
|
|
551
|
+
| 'E2_STANDARD_2';
|
|
551
552
|
/** Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information. */
|
|
552
553
|
pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
|
|
553
554
|
/** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
|
|
@@ -1261,12 +1262,14 @@ declare namespace gapi.client {
|
|
|
1261
1262
|
interface Finding {
|
|
1262
1263
|
/** Category of the finding. */
|
|
1263
1264
|
category?: string;
|
|
1265
|
+
/** Description of the finding category. */
|
|
1266
|
+
details?: string;
|
|
1264
1267
|
/** Location (path and line) where the finding was detected. */
|
|
1265
1268
|
location?: FindingLocation;
|
|
1266
1269
|
/** Scanner determines which engine (e.g. static, llm) emitted the finding. */
|
|
1267
|
-
scanner?:
|
|
1270
|
+
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM';
|
|
1268
1271
|
/** Severity of the finding. */
|
|
1269
|
-
severity?:
|
|
1272
|
+
severity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1270
1273
|
}
|
|
1271
1274
|
interface FindingLocation {
|
|
1272
1275
|
/** Relative path of the file containing the finding. */
|
|
@@ -2108,6 +2111,8 @@ declare namespace gapi.client {
|
|
|
2108
2111
|
cvssV2?: CVSS;
|
|
2109
2112
|
/** The full description of the CVSSv3 for this vulnerability. */
|
|
2110
2113
|
cvssV3?: CVSSv3;
|
|
2114
|
+
/** The full description of the v4 CVSS for this vulnerability. */
|
|
2115
|
+
cvssV4?: CVSS;
|
|
2111
2116
|
/** CVSS version used to populate cvss_score and severity. */
|
|
2112
2117
|
cvssVersion?:
|
|
2113
2118
|
| 'CVSS_VERSION_UNSPECIFIED'
|
|
@@ -2136,6 +2141,8 @@ declare namespace gapi.client {
|
|
|
2136
2141
|
cvssV2?: CVSS;
|
|
2137
2142
|
/** The cvss v3 score for the vulnerability. */
|
|
2138
2143
|
cvssv3?: CVSS;
|
|
2144
|
+
/** The cvss v4 score for the vulnerability. */
|
|
2145
|
+
cvssV4?: CVSS;
|
|
2139
2146
|
/** Output only. CVSS version used to populate cvss_score and severity. */
|
|
2140
2147
|
cvssVersion?:
|
|
2141
2148
|
| 'CVSS_VERSION_UNSPECIFIED'
|