@maxim_mazurok/gapi.client.containeranalysis-v1beta1 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.
- package/index.d.ts +29 -1
- 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: 20250207
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -315,6 +315,8 @@ declare namespace gapi.client {
|
|
|
315
315
|
buildTriggerId?: string;
|
|
316
316
|
/** Output only. Time at which the request to create the build was received. */
|
|
317
317
|
createTime?: string;
|
|
318
|
+
/** Optional. Dependencies that the Cloud Build worker will fetch before executing user steps. */
|
|
319
|
+
dependencies?: ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency[];
|
|
318
320
|
/** Output only. Contains information about the build when status=FAILURE. */
|
|
319
321
|
failureInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo;
|
|
320
322
|
/** 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. */
|
|
@@ -403,6 +405,8 @@ declare namespace gapi.client {
|
|
|
403
405
|
machineType?: string;
|
|
404
406
|
/** 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. */
|
|
405
407
|
pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
|
|
408
|
+
/** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
|
|
409
|
+
pubsubTopic?: string;
|
|
406
410
|
/** Requested verifiability options. */
|
|
407
411
|
requestedVerifyOption?: string;
|
|
408
412
|
/** 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. */
|
|
@@ -480,6 +484,30 @@ declare namespace gapi.client {
|
|
|
480
484
|
/** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
481
485
|
revision?: string;
|
|
482
486
|
}
|
|
487
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency {
|
|
488
|
+
/** If set to true disable all dependency fetching (ignoring the default source as well). */
|
|
489
|
+
empty?: boolean;
|
|
490
|
+
/** Represents a git repository as a build dependency. */
|
|
491
|
+
gitSource?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency;
|
|
492
|
+
}
|
|
493
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency {
|
|
494
|
+
/** Optional. How much history should be fetched for the build (default 1, -1 for all history). */
|
|
495
|
+
depth?: string;
|
|
496
|
+
/** Required. Where should the files be placed on the worker. */
|
|
497
|
+
destPath?: string;
|
|
498
|
+
/** Optional. True if submodules should be fetched too (default false). */
|
|
499
|
+
recurseSubmodules?: boolean;
|
|
500
|
+
/** Required. The kind of repo (url or dev connect). */
|
|
501
|
+
repository?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository;
|
|
502
|
+
/** Required. The revision that we will fetch the repo at. */
|
|
503
|
+
revision?: string;
|
|
504
|
+
}
|
|
505
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
|
|
506
|
+
/** The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
507
|
+
developerConnect?: string;
|
|
508
|
+
/** Location of the Git repository. */
|
|
509
|
+
url?: string;
|
|
510
|
+
}
|
|
483
511
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
|
|
484
512
|
/** Required. Directory, relative to the source root, in which to run the build. */
|
|
485
513
|
dir?: string;
|