@maxim_mazurok/gapi.client.containeranalysis-v1 0.1.20260610 → 0.2.20260619
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 +19 -32
- 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: 20260619
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -495,11 +495,7 @@ declare namespace gapi.client {
|
|
|
495
495
|
result?: ContaineranalysisGoogleDevtoolsCloudbuildV1ApprovalResult;
|
|
496
496
|
/** Output only. The state of this build's approval. */
|
|
497
497
|
state?:
|
|
498
|
-
| '
|
|
499
|
-
| 'PENDING'
|
|
500
|
-
| 'APPROVED'
|
|
501
|
-
| 'REJECTED'
|
|
502
|
-
| 'CANCELLED';
|
|
498
|
+
'STATE_UNSPECIFIED' | 'PENDING' | 'APPROVED' | 'REJECTED' | 'CANCELLED';
|
|
503
499
|
}
|
|
504
500
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo {
|
|
505
501
|
/** Explains the failure issue in more detail using hard-coded text. */
|
|
@@ -645,9 +641,7 @@ declare namespace gapi.client {
|
|
|
645
641
|
name?: string;
|
|
646
642
|
/** Output only. The OCI media type of the artifact. Non-OCI images, such as Docker images, will have an unspecified value. */
|
|
647
643
|
ociMediaType?:
|
|
648
|
-
| '
|
|
649
|
-
| 'IMAGE_MANIFEST'
|
|
650
|
-
| 'IMAGE_INDEX';
|
|
644
|
+
'OCI_MEDIA_TYPE_UNSPECIFIED' | 'IMAGE_MANIFEST' | 'IMAGE_INDEX';
|
|
651
645
|
/** Output only. Stores timing information for pushing the specified image. */
|
|
652
646
|
pushTiming?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
653
647
|
}
|
|
@@ -722,12 +716,7 @@ declare namespace gapi.client {
|
|
|
722
716
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Hash {
|
|
723
717
|
/** The type of hash that was performed. */
|
|
724
718
|
type?:
|
|
725
|
-
| '
|
|
726
|
-
| 'SHA256'
|
|
727
|
-
| 'MD5'
|
|
728
|
-
| 'GO_MODULE_H1'
|
|
729
|
-
| 'SHA512'
|
|
730
|
-
| 'DIRSUM_SHA256';
|
|
719
|
+
'NONE' | 'SHA256' | 'MD5' | 'GO_MODULE_H1' | 'SHA512' | 'DIRSUM_SHA256';
|
|
731
720
|
/** The hash value. */
|
|
732
721
|
value?: string;
|
|
733
722
|
}
|
|
@@ -766,7 +755,9 @@ declare namespace gapi.client {
|
|
|
766
755
|
buildStepOutputs?: string[];
|
|
767
756
|
/** Results for build steps. step_id -> */
|
|
768
757
|
buildStepResults?: {
|
|
769
|
-
[
|
|
758
|
+
[
|
|
759
|
+
P in string
|
|
760
|
+
]: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults;
|
|
770
761
|
};
|
|
771
762
|
/** Output only. Generic artifacts uploaded to Artifact Registry at the end of the build. */
|
|
772
763
|
genericArtifacts?: ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact[];
|
|
@@ -967,6 +958,13 @@ declare namespace gapi.client {
|
|
|
967
958
|
| 'IMPACT_PARTIAL'
|
|
968
959
|
| 'IMPACT_COMPLETE';
|
|
969
960
|
exploitabilityScore?: number;
|
|
961
|
+
/** Exploit Maturity (E). Defined in CVSS v4. */
|
|
962
|
+
exploitMaturity?:
|
|
963
|
+
| 'EXPLOIT_MATURITY_UNSPECIFIED'
|
|
964
|
+
| 'EXPLOIT_MATURITY_NOT_DEFINED'
|
|
965
|
+
| 'EXPLOIT_MATURITY_ATTACKED'
|
|
966
|
+
| 'EXPLOIT_MATURITY_POC'
|
|
967
|
+
| 'EXPLOIT_MATURITY_UNREPORTED';
|
|
970
968
|
impactScore?: number;
|
|
971
969
|
/** Integrity Impact (I). Defined in CVSS v2, v3. */
|
|
972
970
|
integrityImpact?:
|
|
@@ -1053,24 +1051,15 @@ declare namespace gapi.client {
|
|
|
1053
1051
|
| 'ATTACK_VECTOR_LOCAL'
|
|
1054
1052
|
| 'ATTACK_VECTOR_PHYSICAL';
|
|
1055
1053
|
availabilityImpact?:
|
|
1056
|
-
| '
|
|
1057
|
-
| 'IMPACT_HIGH'
|
|
1058
|
-
| 'IMPACT_LOW'
|
|
1059
|
-
| 'IMPACT_NONE';
|
|
1054
|
+
'IMPACT_UNSPECIFIED' | 'IMPACT_HIGH' | 'IMPACT_LOW' | 'IMPACT_NONE';
|
|
1060
1055
|
/** The base score is a function of the base metric scores. */
|
|
1061
1056
|
baseScore?: number;
|
|
1062
1057
|
confidentialityImpact?:
|
|
1063
|
-
| '
|
|
1064
|
-
| 'IMPACT_HIGH'
|
|
1065
|
-
| 'IMPACT_LOW'
|
|
1066
|
-
| 'IMPACT_NONE';
|
|
1058
|
+
'IMPACT_UNSPECIFIED' | 'IMPACT_HIGH' | 'IMPACT_LOW' | 'IMPACT_NONE';
|
|
1067
1059
|
exploitabilityScore?: number;
|
|
1068
1060
|
impactScore?: number;
|
|
1069
1061
|
integrityImpact?:
|
|
1070
|
-
| '
|
|
1071
|
-
| 'IMPACT_HIGH'
|
|
1072
|
-
| 'IMPACT_LOW'
|
|
1073
|
-
| 'IMPACT_NONE';
|
|
1062
|
+
'IMPACT_UNSPECIFIED' | 'IMPACT_HIGH' | 'IMPACT_LOW' | 'IMPACT_NONE';
|
|
1074
1063
|
privilegesRequired?:
|
|
1075
1064
|
| 'PRIVILEGES_REQUIRED_UNSPECIFIED'
|
|
1076
1065
|
| 'PRIVILEGES_REQUIRED_NONE'
|
|
@@ -1176,9 +1165,7 @@ declare namespace gapi.client {
|
|
|
1176
1165
|
archiveTime?: string;
|
|
1177
1166
|
/** Whether the resource is continuously analyzed. */
|
|
1178
1167
|
continuousAnalysis?:
|
|
1179
|
-
| '
|
|
1180
|
-
| 'ACTIVE'
|
|
1181
|
-
| 'INACTIVE';
|
|
1168
|
+
'CONTINUOUS_ANALYSIS_UNSPECIFIED' | 'ACTIVE' | 'INACTIVE';
|
|
1182
1169
|
/** The CPE of the resource being scanned. */
|
|
1183
1170
|
cpe?: string;
|
|
1184
1171
|
/** Files that make up the resource described by the occurrence. */
|
|
@@ -1267,7 +1254,7 @@ declare namespace gapi.client {
|
|
|
1267
1254
|
/** Location (path and line) where the finding was detected. */
|
|
1268
1255
|
location?: FindingLocation;
|
|
1269
1256
|
/** Scanner determines which engine (e.g. static, llm) emitted the finding. */
|
|
1270
|
-
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM';
|
|
1257
|
+
scanner?: 'SCANNER_UNSPECIFIED' | 'STATIC' | 'LLM' | 'WS_POLICY';
|
|
1271
1258
|
/** Severity of the finding. */
|
|
1272
1259
|
severity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1273
1260
|
}
|