@maxim_mazurok/gapi.client.containeranalysis-v1beta1 0.0.20250425 → 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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250528
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -504,7 +504,7 @@ declare namespace gapi.client {
|
|
|
504
504
|
revision?: string;
|
|
505
505
|
}
|
|
506
506
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
|
|
507
|
-
/** The Developer Connect Git repository link
|
|
507
|
+
/** The Developer Connect Git repository link formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
508
508
|
developerConnect?: string;
|
|
509
509
|
/** Location of the Git repository. */
|
|
510
510
|
url?: string;
|
|
@@ -814,6 +814,8 @@ declare namespace gapi.client {
|
|
|
814
814
|
analysisStatusError?: Status;
|
|
815
815
|
/** Whether the resource is continuously analyzed. */
|
|
816
816
|
continuousAnalysis?: string;
|
|
817
|
+
/** Files that make up the resource described by the occurrence. */
|
|
818
|
+
files?: File[];
|
|
817
819
|
/** The last time continuous analysis was done for this resource. Deprecated, do not use. */
|
|
818
820
|
lastAnalysisTime?: string;
|
|
819
821
|
/** The last time this resource was scanned. */
|
|
@@ -903,6 +905,10 @@ declare namespace gapi.client {
|
|
|
903
905
|
/** Type of category (e.g. 'npm' for the PACKAGE_MANAGER category) */
|
|
904
906
|
type?: string;
|
|
905
907
|
}
|
|
908
|
+
interface File {
|
|
909
|
+
digest?: {[P in string]: string};
|
|
910
|
+
name?: string;
|
|
911
|
+
}
|
|
906
912
|
interface FileHashes {
|
|
907
913
|
/** Required. Collection of file hashes. */
|
|
908
914
|
fileHash?: Hash[];
|