Class TriggerBuildStepArgs
Inherited Members
Namespace: Pulumi.Gcp.CloudBuild.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TriggerBuildStepArgs : ResourceArgs
Constructors
View SourceTriggerBuildStepArgs()
Declaration
public TriggerBuildStepArgs()
Properties
View SourceArgs
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |