@maxim_mazurok/gapi.client.run-v1 0.0.20250103 → 0.0.20250117
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://run.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250117
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -344,6 +344,8 @@ declare namespace gapi.client {
|
|
|
344
344
|
timing?: GoogleDevtoolsCloudbuildV1TimeSpan;
|
|
345
345
|
}
|
|
346
346
|
interface GoogleDevtoolsCloudbuildV1Artifacts {
|
|
347
|
+
/** Optional. A list of Go modules to be uploaded to Artifact Registry upon successful completion of all build steps. If any objects fail to be pushed, the build is marked FAILURE. */
|
|
348
|
+
goModules?: GoogleDevtoolsCloudbuildV1GoModule[];
|
|
347
349
|
/** A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE. */
|
|
348
350
|
images?: string[];
|
|
349
351
|
/** A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE. */
|
|
@@ -438,6 +440,8 @@ declare namespace gapi.client {
|
|
|
438
440
|
diskSizeGb?: string;
|
|
439
441
|
/** Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file. */
|
|
440
442
|
dynamicSubstitutions?: boolean;
|
|
443
|
+
/** Optional. Option to specify whether structured logging is enabled. If true, JSON-formatted logs are parsed as structured logs. */
|
|
444
|
+
enableStructuredLogging?: boolean;
|
|
441
445
|
/** A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE". */
|
|
442
446
|
env?: string[];
|
|
443
447
|
/** Option to specify the logging mode, which determines if and where build logs are stored. */
|
|
@@ -545,6 +549,20 @@ declare namespace gapi.client {
|
|
|
545
549
|
/** Required. Location of the Git repo to build. This will be used as a `git remote`, see https://git-scm.com/docs/git-remote. */
|
|
546
550
|
url?: string;
|
|
547
551
|
}
|
|
552
|
+
interface GoogleDevtoolsCloudbuildV1GoModule {
|
|
553
|
+
/** Optional. The Go module's "module path". e.g. example.com/foo/v2 */
|
|
554
|
+
modulePath?: string;
|
|
555
|
+
/** Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-release identifiers can also be added by appending a dash and dot separated ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5 */
|
|
556
|
+
moduleVersion?: string;
|
|
557
|
+
/** Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults to the build’s location. */
|
|
558
|
+
repositoryLocation?: string;
|
|
559
|
+
/** Optional. Artifact Registry repository name. Specified Go modules will be zipped and uploaded to Artifact Registry with this location as a prefix. e.g. my-go-repo */
|
|
560
|
+
repositoryName?: string;
|
|
561
|
+
/** Optional. Project ID of the Artifact Registry repository. Defaults to the build project. */
|
|
562
|
+
repositoryProjectId?: string;
|
|
563
|
+
/** Optional. Source path of the go.mod file in the build's workspace. If not specified, this will default to the current directory. e.g. ~/code/go/mypackage */
|
|
564
|
+
sourcePath?: string;
|
|
565
|
+
}
|
|
548
566
|
interface GoogleDevtoolsCloudbuildV1Hash {
|
|
549
567
|
/** The type of hash that was performed. */
|
|
550
568
|
type?: string;
|
|
@@ -616,6 +634,8 @@ declare namespace gapi.client {
|
|
|
616
634
|
buildStepImages?: string[];
|
|
617
635
|
/** List of build step outputs, produced by builder images, in the order corresponding to build step indices. [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders) can produce this output by writing to `$BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$BUILDER_OUTPUT` variable is read-only and can't be substituted. */
|
|
618
636
|
buildStepOutputs?: string[];
|
|
637
|
+
/** Optional. Go module artifacts uploaded to Artifact Registry at the end of the build. */
|
|
638
|
+
goModules?: GoogleDevtoolsCloudbuildV1UploadedGoModule[];
|
|
619
639
|
/** Container images that were built as a part of the build. */
|
|
620
640
|
images?: GoogleDevtoolsCloudbuildV1BuiltImage[];
|
|
621
641
|
/** Maven artifacts uploaded to Artifact Registry at the end of the build. */
|
|
@@ -697,6 +717,14 @@ declare namespace gapi.client {
|
|
|
697
717
|
/** Start of time span. */
|
|
698
718
|
startTime?: string;
|
|
699
719
|
}
|
|
720
|
+
interface GoogleDevtoolsCloudbuildV1UploadedGoModule {
|
|
721
|
+
/** Hash types and values of the Go Module Artifact. */
|
|
722
|
+
fileHashes?: GoogleDevtoolsCloudbuildV1FileHashes;
|
|
723
|
+
/** Output only. Stores timing information for pushing the specified artifact. */
|
|
724
|
+
pushTiming?: GoogleDevtoolsCloudbuildV1TimeSpan;
|
|
725
|
+
/** URI of the uploaded artifact. */
|
|
726
|
+
uri?: string;
|
|
727
|
+
}
|
|
700
728
|
interface GoogleDevtoolsCloudbuildV1UploadedMavenArtifact {
|
|
701
729
|
/** Hash types and values of the Maven Artifact. */
|
|
702
730
|
fileHashes?: GoogleDevtoolsCloudbuildV1FileHashes;
|