@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 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 +10 -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=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250528
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -540,7 +540,7 @@ declare namespace gapi.client {
|
|
|
540
540
|
revision?: string;
|
|
541
541
|
}
|
|
542
542
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
|
|
543
|
-
/** The Developer Connect Git repository link
|
|
543
|
+
/** The Developer Connect Git repository link formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
544
544
|
developerConnect?: string;
|
|
545
545
|
/** Location of the Git repository. */
|
|
546
546
|
url?: string;
|
|
@@ -840,6 +840,8 @@ declare namespace gapi.client {
|
|
|
840
840
|
continuousAnalysis?: string;
|
|
841
841
|
/** The CPE of the resource being scanned. */
|
|
842
842
|
cpe?: string;
|
|
843
|
+
/** Optional. Files that make up the resource described by the occurrence. */
|
|
844
|
+
files?: File[];
|
|
843
845
|
/** The last time this resource was scanned. */
|
|
844
846
|
lastScanTime?: string;
|
|
845
847
|
/** Output only. An operation that indicates the status of the current scan. This field is deprecated, do not use. */
|
|
@@ -941,6 +943,12 @@ declare namespace gapi.client {
|
|
|
941
943
|
/** Type of category (e.g. 'npm' for the PACKAGE_MANAGER category) */
|
|
942
944
|
type?: string;
|
|
943
945
|
}
|
|
946
|
+
interface File {
|
|
947
|
+
/** Optional. The digest(s) of the file. */
|
|
948
|
+
digest?: {[P in string]: string};
|
|
949
|
+
/** Optional. The name of the file. */
|
|
950
|
+
name?: string;
|
|
951
|
+
}
|
|
944
952
|
interface FileHashes {
|
|
945
953
|
/** Collection of file hashes. */
|
|
946
954
|
fileHash?: Hash[];
|