@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.0.20240607 → 0.0.20240625
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 +11 -1
- 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: 20240625
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -791,6 +791,8 @@ declare namespace gapi.client {
|
|
|
791
791
|
operation?: Operation;
|
|
792
792
|
/** Output only. The status of an SBOM generation. */
|
|
793
793
|
sbomStatus?: SBOMStatus;
|
|
794
|
+
/** Output only. The status of a vulnerability attestation generation. */
|
|
795
|
+
vulnerabilityAttestation?: VulnerabilityAttestation;
|
|
794
796
|
}
|
|
795
797
|
interface Discovery {
|
|
796
798
|
/** The kind of analysis that is handled by this discovery. */
|
|
@@ -1758,6 +1760,14 @@ declare namespace gapi.client {
|
|
|
1758
1760
|
/** The title of the note. E.g. `Vex-Debian-11.4` */
|
|
1759
1761
|
title?: string;
|
|
1760
1762
|
}
|
|
1763
|
+
interface VulnerabilityAttestation {
|
|
1764
|
+
/** Output only. If failure, the error reason for why the attestation generation failed. */
|
|
1765
|
+
error?: string;
|
|
1766
|
+
/** Output only. The last time we attempted to generate an attestation. */
|
|
1767
|
+
lastAttemptTime?: string;
|
|
1768
|
+
/** Output only. The success/failure state of the latest attestation attempt. */
|
|
1769
|
+
state?: string;
|
|
1770
|
+
}
|
|
1761
1771
|
interface VulnerabilityDetails {
|
|
1762
1772
|
/** Output only. The CVSS score of this vulnerability. CVSS score is on a scale of 0-10 where 0 indicates low severity and 10 indicates high severity. */
|
|
1763
1773
|
cvssScore?: number;
|