@maxim_mazurok/gapi.client.containeranalysis-v1beta1 0.0.20250129 → 0.0.20250228
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 +35 -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: 20250228
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -188,6 +188,7 @@ declare namespace gapi.client {
|
|
|
188
188
|
name?: string;
|
|
189
189
|
/** Output only. Stores timing information for pulling this build step's builder image only. */
|
|
190
190
|
pullTiming?: TimeSpan;
|
|
191
|
+
results?: StepResult[];
|
|
191
192
|
/** A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args. */
|
|
192
193
|
script?: string;
|
|
193
194
|
/** 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`. */
|
|
@@ -315,6 +316,8 @@ declare namespace gapi.client {
|
|
|
315
316
|
buildTriggerId?: string;
|
|
316
317
|
/** Output only. Time at which the request to create the build was received. */
|
|
317
318
|
createTime?: string;
|
|
319
|
+
/** Optional. Dependencies that the Cloud Build worker will fetch before executing user steps. */
|
|
320
|
+
dependencies?: ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency[];
|
|
318
321
|
/** Output only. Contains information about the build when status=FAILURE. */
|
|
319
322
|
failureInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo;
|
|
320
323
|
/** 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 +406,8 @@ declare namespace gapi.client {
|
|
|
403
406
|
machineType?: string;
|
|
404
407
|
/** 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
408
|
pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
|
|
409
|
+
/** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
|
|
410
|
+
pubsubTopic?: string;
|
|
406
411
|
/** Requested verifiability options. */
|
|
407
412
|
requestedVerifyOption?: string;
|
|
408
413
|
/** 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 +485,30 @@ declare namespace gapi.client {
|
|
|
480
485
|
/** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
481
486
|
revision?: string;
|
|
482
487
|
}
|
|
488
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency {
|
|
489
|
+
/** If set to true disable all dependency fetching (ignoring the default source as well). */
|
|
490
|
+
empty?: boolean;
|
|
491
|
+
/** Represents a git repository as a build dependency. */
|
|
492
|
+
gitSource?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency;
|
|
493
|
+
}
|
|
494
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency {
|
|
495
|
+
/** Optional. How much history should be fetched for the build (default 1, -1 for all history). */
|
|
496
|
+
depth?: string;
|
|
497
|
+
/** Required. Where should the files be placed on the worker. */
|
|
498
|
+
destPath?: string;
|
|
499
|
+
/** Optional. True if submodules should be fetched too (default false). */
|
|
500
|
+
recurseSubmodules?: boolean;
|
|
501
|
+
/** Required. The kind of repo (url or dev connect). */
|
|
502
|
+
repository?: ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository;
|
|
503
|
+
/** Required. The revision that we will fetch the repo at. */
|
|
504
|
+
revision?: string;
|
|
505
|
+
}
|
|
506
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
|
|
507
|
+
/** The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
508
|
+
developerConnect?: string;
|
|
509
|
+
/** Location of the Git repository. */
|
|
510
|
+
url?: string;
|
|
511
|
+
}
|
|
483
512
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
|
|
484
513
|
/** Required. Directory, relative to the source root, in which to run the build. */
|
|
485
514
|
dir?: string;
|
|
@@ -1520,6 +1549,11 @@ declare namespace gapi.client {
|
|
|
1520
1549
|
/** 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. */
|
|
1521
1550
|
message?: string;
|
|
1522
1551
|
}
|
|
1552
|
+
interface StepResult {
|
|
1553
|
+
attestationContentName?: string;
|
|
1554
|
+
attestationType?: string;
|
|
1555
|
+
name?: string;
|
|
1556
|
+
}
|
|
1523
1557
|
interface Subject {
|
|
1524
1558
|
/** `"": ""` Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/attestation/blob/main/spec/field_types.md#DigestSet */
|
|
1525
1559
|
digest?: {[P in string]: string};
|