@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.2.20260521 → 0.2.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=v1alpha1
|
|
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
|
/** 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
|
}
|
|
@@ -535,7 +535,8 @@ declare namespace gapi.client {
|
|
|
535
535
|
| 'N1_HIGHCPU_32'
|
|
536
536
|
| 'E2_HIGHCPU_8'
|
|
537
537
|
| 'E2_HIGHCPU_32'
|
|
538
|
-
| 'E2_MEDIUM'
|
|
538
|
+
| 'E2_MEDIUM'
|
|
539
|
+
| 'E2_STANDARD_2';
|
|
539
540
|
/** 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. */
|
|
540
541
|
pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
|
|
541
542
|
/** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
|
|
@@ -1312,12 +1313,14 @@ declare namespace gapi.client {
|
|
|
1312
1313
|
interface Finding {
|
|
1313
1314
|
/** Optional. Category of the finding. */
|
|
1314
1315
|
category?: string;
|
|
1316
|
+
/** Optional. Description of the finding category. */
|
|
1317
|
+
details?: string;
|
|
1315
1318
|
/** Optional. Location (path and line) where the finding was detected. */
|
|
1316
1319
|
location?: FindingLocation;
|
|
1317
1320
|
/** Optional. Scanner determines which engine (e.g. static, llm) emitted the finding. */
|
|
1318
|
-
scanner?:
|
|
1321
|
+
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM';
|
|
1319
1322
|
/** Optional. Severity of the finding. */
|
|
1320
|
-
severity?:
|
|
1323
|
+
severity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1321
1324
|
}
|
|
1322
1325
|
interface FindingLocation {
|
|
1323
1326
|
/** Optional. Relative path of the file containing the finding. */
|
|
@@ -2431,6 +2434,8 @@ declare namespace gapi.client {
|
|
|
2431
2434
|
cvssV2?: CVSS;
|
|
2432
2435
|
/** The CVSS v3 score of this vulnerability. */
|
|
2433
2436
|
cvssV3?: CVSS;
|
|
2437
|
+
/** Optional. The CVSS v4 score of this vulnerability. */
|
|
2438
|
+
cvssV4?: CVSS;
|
|
2434
2439
|
/** Output only. CVSS version used to populate cvss_score and severity. */
|
|
2435
2440
|
cvssVersion?:
|
|
2436
2441
|
| 'CVSS_VERSION_UNSPECIFIED'
|
|
@@ -2481,6 +2486,8 @@ declare namespace gapi.client {
|
|
|
2481
2486
|
cvssScore?: number;
|
|
2482
2487
|
/** The full description of the CVSS for version 2. */
|
|
2483
2488
|
cvssV2?: CVSS;
|
|
2489
|
+
/** Optional. The full description of the CVSS for version 4. */
|
|
2490
|
+
cvssV4?: CVSS;
|
|
2484
2491
|
/** CVSS version used to populate cvss_score and severity. */
|
|
2485
2492
|
cvssVersion?:
|
|
2486
2493
|
| 'CVSS_VERSION_UNSPECIFIED'
|