Show / Hide Table of Contents

Class TriggerBuildStepArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TriggerBuildStepArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.CloudBuild.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TriggerBuildStepArgs : ResourceArgs

Constructors

View Source

TriggerBuildStepArgs()

Declaration
public TriggerBuildStepArgs()

Properties

View Source

Args

A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.

Declaration
public InputList<string> Args { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Dir

Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.

Declaration
public Input<string> Dir { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Entrypoint

Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used

Declaration
public Input<string> Entrypoint { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Envs

A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".

Declaration
public InputList<string> Envs { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Id

Unique identifier for this build step, used in wait_for to reference this build step as a dependency.

Declaration
public Input<string> Id { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SecretEnvs

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.

Declaration
public InputList<string> SecretEnvs { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Timeout

Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.

Declaration
public Input<string> Timeout { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Timing

Output only. Stores timing information for executing this build step.

Declaration
public Input<string> Timing { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Volumes

List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration. Structure is documented below.

Declaration
public InputList<TriggerBuildStepVolumeArgs> Volumes { get; set; }
Property Value
Type Description
InputList<TriggerBuildStepVolumeArgs>
View Source

WaitFors

The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.

Declaration
public InputList<string> WaitFors { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.