@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20250509 → 0.0.20250528
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 +8 -2
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250528
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -552,7 +552,7 @@ declare namespace gapi.client {
|
|
|
552
552
|
revision?: string;
|
|
553
553
|
}
|
|
554
554
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
|
|
555
|
-
/** The Developer Connect Git repository link
|
|
555
|
+
/** The Developer Connect Git repository link formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
556
556
|
developerConnect?: string;
|
|
557
557
|
/** Location of the Git repository. */
|
|
558
558
|
url?: string;
|
|
@@ -852,6 +852,8 @@ declare namespace gapi.client {
|
|
|
852
852
|
continuousAnalysis?: string;
|
|
853
853
|
/** The CPE of the resource being scanned. */
|
|
854
854
|
cpe?: string;
|
|
855
|
+
/** Files that make up the resource described by the occurrence. */
|
|
856
|
+
files?: File[];
|
|
855
857
|
/** The last time this resource was scanned. */
|
|
856
858
|
lastScanTime?: string;
|
|
857
859
|
/** The status of an SBOM generation. */
|
|
@@ -912,6 +914,10 @@ declare namespace gapi.client {
|
|
|
912
914
|
/** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
|
|
913
915
|
title?: string;
|
|
914
916
|
}
|
|
917
|
+
interface File {
|
|
918
|
+
digest?: {[P in string]: string};
|
|
919
|
+
name?: string;
|
|
920
|
+
}
|
|
915
921
|
interface FileHashes {
|
|
916
922
|
/** Required. Collection of file hashes. */
|
|
917
923
|
fileHash?: Hash[];
|