@maxim_mazurok/gapi.client.ondemandscanning-v1 0.0.20240603 → 0.0.20240624
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://ondemandscanning.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240624
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -241,6 +241,8 @@ declare namespace gapi.client {
|
|
|
241
241
|
lastScanTime?: string;
|
|
242
242
|
/** The status of an SBOM generation. */
|
|
243
243
|
sbomStatus?: SBOMStatus;
|
|
244
|
+
/** The status of an vulnerability attestation generation. */
|
|
245
|
+
vulnerabilityAttestation?: VulnerabilityAttestation;
|
|
244
246
|
}
|
|
245
247
|
interface DSSEAttestationOccurrence {
|
|
246
248
|
/** If doing something security critical, make sure to verify the signatures in this metadata. */
|
|
@@ -815,6 +817,14 @@ declare namespace gapi.client {
|
|
|
815
817
|
/** The vulnerability identifier for this Assessment. Will hold one of common identifiers e.g. CVE, GHSA etc. */
|
|
816
818
|
vulnerabilityId?: string;
|
|
817
819
|
}
|
|
820
|
+
interface VulnerabilityAttestation {
|
|
821
|
+
/** If failure, the error reason for why the attestation generation failed. */
|
|
822
|
+
error?: string;
|
|
823
|
+
/** The last time we attempted to generate an attestation. */
|
|
824
|
+
lastAttemptTime?: string;
|
|
825
|
+
/** The success/failure state of the latest attestation attempt. */
|
|
826
|
+
state?: string;
|
|
827
|
+
}
|
|
818
828
|
interface VulnerabilityOccurrence {
|
|
819
829
|
/** 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. */
|
|
820
830
|
cvssScore?: number;
|