@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20250129 → 0.0.20250207

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 +30 -2
  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: 20250129
12
+ // Revision: 20250207
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -355,6 +355,8 @@ declare namespace gapi.client {
355
355
  buildTriggerId?: string;
356
356
  /** Output only. Time at which the request to create the build was received. */
357
357
  createTime?: string;
358
+ /** Optional. Dependencies that the Cloud Build worker will fetch before executing user steps. */
359
+ dependencies?: ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency[];
358
360
  /** Output only. Contains information about the build when status=FAILURE. */
359
361
  failureInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo;
360
362
  /** Output only. Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution. */
@@ -443,6 +445,8 @@ declare namespace gapi.client {
443
445
  machineType?: string;
444
446
  /** Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information. */
445
447
  pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
448
+ /** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
449
+ pubsubTopic?: string;
446
450
  /** Requested verifiability options. */
447
451
  requestedVerifyOption?: string;
448
452
  /** A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's `Secret`. These variables will be available to all build steps in this build. */
@@ -520,6 +524,30 @@ declare namespace gapi.client {
520
524
  /** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
521
525
  revision?: string;
522
526
  }
527
+ interface ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency {
528
+ /** If set to true disable all dependency fetching (ignoring the default source as well). */
529
+ empty?: boolean;
530
+ /** Represents a git repository as a build dependency. */
531
+ gitSource?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency;
532
+ }
533
+ interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency {
534
+ /** Optional. How much history should be fetched for the build (default 1, -1 for all history). */
535
+ depth?: string;
536
+ /** Required. Where should the files be placed on the worker. */
537
+ destPath?: string;
538
+ /** Optional. True if submodules should be fetched too (default false). */
539
+ recurseSubmodules?: boolean;
540
+ /** Required. The kind of repo (url or dev connect). */
541
+ repository?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository;
542
+ /** Required. The revision that we will fetch the repo at. */
543
+ revision?: string;
544
+ }
545
+ interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
546
+ /** The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*` */
547
+ developerConnect?: string;
548
+ /** Location of the Git repository. */
549
+ url?: string;
550
+ }
523
551
  interface ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
524
552
  /** Required. Directory, relative to the source root, in which to run the build. */
525
553
  dir?: string;
@@ -858,7 +886,7 @@ declare namespace gapi.client {
858
886
  sig?: string;
859
887
  }
860
888
  interface ExportSBOMRequest {
861
- /** Empty placeholder to denote that this is a Google Cloud Storage export request. */
889
+ /** Optional. Empty placeholder to denote that this is a Google Cloud Storage export request. */
862
890
  cloudStorageLocation?: any;
863
891
  }
864
892
  interface ExportSBOMResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.containeranalysis-v1",
3
- "version": "0.0.20250129",
3
+ "version": "0.0.20250207",
4
4
  "description": "TypeScript typings for Container Analysis API v1",
5
5
  "repository": {
6
6
  "type": "git",