@maxim_mazurok/gapi.client.containeranalysis-v1 0.1.20260619 → 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 +10 -30
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -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[];
|
|
@@ -1060,24 +1051,15 @@ declare namespace gapi.client {
|
|
|
1060
1051
|
| 'ATTACK_VECTOR_LOCAL'
|
|
1061
1052
|
| 'ATTACK_VECTOR_PHYSICAL';
|
|
1062
1053
|
availabilityImpact?:
|
|
1063
|
-
| '
|
|
1064
|
-
| 'IMPACT_HIGH'
|
|
1065
|
-
| 'IMPACT_LOW'
|
|
1066
|
-
| 'IMPACT_NONE';
|
|
1054
|
+
'IMPACT_UNSPECIFIED' | 'IMPACT_HIGH' | 'IMPACT_LOW' | 'IMPACT_NONE';
|
|
1067
1055
|
/** The base score is a function of the base metric scores. */
|
|
1068
1056
|
baseScore?: number;
|
|
1069
1057
|
confidentialityImpact?:
|
|
1070
|
-
| '
|
|
1071
|
-
| 'IMPACT_HIGH'
|
|
1072
|
-
| 'IMPACT_LOW'
|
|
1073
|
-
| 'IMPACT_NONE';
|
|
1058
|
+
'IMPACT_UNSPECIFIED' | 'IMPACT_HIGH' | 'IMPACT_LOW' | 'IMPACT_NONE';
|
|
1074
1059
|
exploitabilityScore?: number;
|
|
1075
1060
|
impactScore?: number;
|
|
1076
1061
|
integrityImpact?:
|
|
1077
|
-
| '
|
|
1078
|
-
| 'IMPACT_HIGH'
|
|
1079
|
-
| 'IMPACT_LOW'
|
|
1080
|
-
| 'IMPACT_NONE';
|
|
1062
|
+
'IMPACT_UNSPECIFIED' | 'IMPACT_HIGH' | 'IMPACT_LOW' | 'IMPACT_NONE';
|
|
1081
1063
|
privilegesRequired?:
|
|
1082
1064
|
| 'PRIVILEGES_REQUIRED_UNSPECIFIED'
|
|
1083
1065
|
| 'PRIVILEGES_REQUIRED_NONE'
|
|
@@ -1183,9 +1165,7 @@ declare namespace gapi.client {
|
|
|
1183
1165
|
archiveTime?: string;
|
|
1184
1166
|
/** Whether the resource is continuously analyzed. */
|
|
1185
1167
|
continuousAnalysis?:
|
|
1186
|
-
| '
|
|
1187
|
-
| 'ACTIVE'
|
|
1188
|
-
| 'INACTIVE';
|
|
1168
|
+
'CONTINUOUS_ANALYSIS_UNSPECIFIED' | 'ACTIVE' | 'INACTIVE';
|
|
1189
1169
|
/** The CPE of the resource being scanned. */
|
|
1190
1170
|
cpe?: string;
|
|
1191
1171
|
/** Files that make up the resource described by the occurrence. */
|