@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.0.20240614 → 0.0.20240704
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 +12 -12
- 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: 20240704
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -502,23 +502,13 @@ declare namespace gapi.client {
|
|
|
502
502
|
/** Collection of file hashes. */
|
|
503
503
|
fileHash?: ContaineranalysisGoogleDevtoolsCloudbuildV1Hash[];
|
|
504
504
|
}
|
|
505
|
-
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GCSLocation {
|
|
506
|
-
/** Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#requirements */
|
|
507
|
-
bucket?: string;
|
|
508
|
-
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
509
|
-
generation?: string;
|
|
510
|
-
/** Cloud Storage object. See https://cloud.google.com/storage/docs/naming#objectnames */
|
|
511
|
-
object?: string;
|
|
512
|
-
}
|
|
513
505
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig {
|
|
514
506
|
/** Configuration for HTTP related git operations. */
|
|
515
507
|
http?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig;
|
|
516
508
|
}
|
|
517
509
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig {
|
|
518
|
-
/** SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format protocol://@]proxyhost[:port]
|
|
510
|
+
/** SecretVersion resource of the HTTP proxy URL. The Service Account used in the build (either the default Service Account or user-specified Service Account) should have `secretmanager.versions.access` permissions on this secret. The proxy URL should be in format `protocol://@]proxyhost[:port]`. */
|
|
519
511
|
proxySecretVersionName?: string;
|
|
520
|
-
/** Optional. Cloud Storage object storing the certificate to use with the HTTP proxy. */
|
|
521
|
-
proxySslCaInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1GCSLocation;
|
|
522
512
|
}
|
|
523
513
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource {
|
|
524
514
|
/** Optional. Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's `dir` is specified and is an absolute path, this value is ignored for that step's execution. */
|
|
@@ -791,6 +781,8 @@ declare namespace gapi.client {
|
|
|
791
781
|
operation?: Operation;
|
|
792
782
|
/** Output only. The status of an SBOM generation. */
|
|
793
783
|
sbomStatus?: SBOMStatus;
|
|
784
|
+
/** Output only. The status of a vulnerability attestation generation. */
|
|
785
|
+
vulnerabilityAttestation?: VulnerabilityAttestation;
|
|
794
786
|
}
|
|
795
787
|
interface Discovery {
|
|
796
788
|
/** The kind of analysis that is handled by this discovery. */
|
|
@@ -1758,6 +1750,14 @@ declare namespace gapi.client {
|
|
|
1758
1750
|
/** The title of the note. E.g. `Vex-Debian-11.4` */
|
|
1759
1751
|
title?: string;
|
|
1760
1752
|
}
|
|
1753
|
+
interface VulnerabilityAttestation {
|
|
1754
|
+
/** Output only. If failure, the error reason for why the attestation generation failed. */
|
|
1755
|
+
error?: string;
|
|
1756
|
+
/** Output only. The last time we attempted to generate an attestation. */
|
|
1757
|
+
lastAttemptTime?: string;
|
|
1758
|
+
/** Output only. The success/failure state of the latest attestation attempt. */
|
|
1759
|
+
state?: string;
|
|
1760
|
+
}
|
|
1761
1761
|
interface VulnerabilityDetails {
|
|
1762
1762
|
/** 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
1763
|
cvssScore?: number;
|