@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 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=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250207
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -343,6 +343,8 @@ declare namespace gapi.client {
|
|
|
343
343
|
buildTriggerId?: string;
|
|
344
344
|
/** Output only. Time at which the request to create the build was received. */
|
|
345
345
|
createTime?: string;
|
|
346
|
+
/** Optional. Dependencies that the Cloud Build worker will fetch before executing user steps. */
|
|
347
|
+
dependencies?: ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency[];
|
|
346
348
|
/** Output only. Contains information about the build when status=FAILURE. */
|
|
347
349
|
failureInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo;
|
|
348
350
|
/** 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. */
|
|
@@ -431,6 +433,8 @@ declare namespace gapi.client {
|
|
|
431
433
|
machineType?: string;
|
|
432
434
|
/** 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. */
|
|
433
435
|
pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
|
|
436
|
+
/** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
|
|
437
|
+
pubsubTopic?: string;
|
|
434
438
|
/** Requested verifiability options. */
|
|
435
439
|
requestedVerifyOption?: string;
|
|
436
440
|
/** 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. */
|
|
@@ -508,6 +512,30 @@ declare namespace gapi.client {
|
|
|
508
512
|
/** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
509
513
|
revision?: string;
|
|
510
514
|
}
|
|
515
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency {
|
|
516
|
+
/** If set to true disable all dependency fetching (ignoring the default source as well). */
|
|
517
|
+
empty?: boolean;
|
|
518
|
+
/** Represents a git repository as a build dependency. */
|
|
519
|
+
gitSource?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency;
|
|
520
|
+
}
|
|
521
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency {
|
|
522
|
+
/** Optional. How much history should be fetched for the build (default 1, -1 for all history). */
|
|
523
|
+
depth?: string;
|
|
524
|
+
/** Required. Where should the files be placed on the worker. */
|
|
525
|
+
destPath?: string;
|
|
526
|
+
/** Optional. True if submodules should be fetched too (default false). */
|
|
527
|
+
recurseSubmodules?: boolean;
|
|
528
|
+
/** Required. The kind of repo (url or dev connect). */
|
|
529
|
+
repository?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository;
|
|
530
|
+
/** Required. The revision that we will fetch the repo at. */
|
|
531
|
+
revision?: string;
|
|
532
|
+
}
|
|
533
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
|
|
534
|
+
/** The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
535
|
+
developerConnect?: string;
|
|
536
|
+
/** Location of the Git repository. */
|
|
537
|
+
url?: string;
|
|
538
|
+
}
|
|
511
539
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
|
|
512
540
|
/** Required. Directory, relative to the source root, in which to run the build. */
|
|
513
541
|
dir?: string;
|