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