@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.0.20250207 → 0.0.20250307

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.
Files changed (2) hide show
  1. package/index.d.ts +27 -1
  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: 20250207
12
+ // Revision: 20250307
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -72,6 +72,14 @@ declare namespace gapi.client {
72
72
  /** The human readable name of this Attestation Authority, for example "qa". */
73
73
  humanReadableName?: string;
74
74
  }
75
+ interface BaseImage {
76
+ /** The number of layers that the base image is composed of. */
77
+ layerCount?: number;
78
+ /** The name of the base image. */
79
+ name?: string;
80
+ /** The repository name in which the base image is from. */
81
+ repository?: string;
82
+ }
75
83
  interface Basis {
76
84
  /** The fingerprint of the base image. */
77
85
  fingerprint?: Fingerprint;
@@ -173,6 +181,7 @@ declare namespace gapi.client {
173
181
  name?: string;
174
182
  /** Output only. Stores timing information for pulling this build step's builder image only. */
175
183
  pullTiming?: TimeSpan;
184
+ results?: StepResult[];
176
185
  /** A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args. */
177
186
  script?: string;
178
187
  /** A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's `Secret`. */
@@ -939,6 +948,8 @@ declare namespace gapi.client {
939
948
  interface FileLocation {
940
949
  /** For jars that are contained inside .war files, this filepath can indicate the path to war file combined with the path to jar file. */
941
950
  filePath?: string;
951
+ /** Each package found in a file should have its own layer metadata (that is, information from the origin layer of the package). */
952
+ layerDetails?: LayerDetails;
942
953
  }
943
954
  interface FileNote {
944
955
  /** Provide a unique identifier to match analysis information on each specific file in a package */
@@ -1160,6 +1171,16 @@ declare namespace gapi.client {
1160
1171
  /** The recovered Dockerfile directive used to construct this layer. */
1161
1172
  directive?: string;
1162
1173
  }
1174
+ interface LayerDetails {
1175
+ /** The base images the layer is found within. */
1176
+ baseImages?: BaseImage[];
1177
+ /** The layer build command that was used to build the layer. This may not be found in all layers depending on how the container image is built. */
1178
+ command?: string;
1179
+ /** The diff ID (sha256 hash) of the layer in the container image. */
1180
+ diffId?: string;
1181
+ /** The index of the layer in the container image. */
1182
+ index?: number;
1183
+ }
1163
1184
  interface License {
1164
1185
  /** Comments */
1165
1186
  comments?: string;
@@ -1688,6 +1709,11 @@ declare namespace gapi.client {
1688
1709
  /** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
1689
1710
  message?: string;
1690
1711
  }
1712
+ interface StepResult {
1713
+ attestationContentName?: string;
1714
+ attestationType?: string;
1715
+ name?: string;
1716
+ }
1691
1717
  interface StorageSource {
1692
1718
  /** Google Cloud Storage bucket containing source (see [Bucket Name Requirements] (https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
1693
1719
  bucket?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.containeranalysis-v1alpha1",
3
- "version": "0.0.20250207",
3
+ "version": "0.0.20250307",
4
4
  "description": "TypeScript typings for Container Analysis API v1alpha1",
5
5
  "repository": {
6
6
  "type": "git",