Class TriggerBuildArgs
Inherited Members
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 TriggerBuildArgs : ResourceArgs
Constructors
View SourceTriggerBuildArgs()
Declaration
public TriggerBuildArgs()
Properties
View SourceImages
A list of images to be pushed upon the successful completion of all build steps. The images are 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 status is marked FAILURE.
Declaration
public InputList<string> Images { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
Steps
The operations to be performed on the workspace. Structure is documented below.
Declaration
public InputList<TriggerBuildStepArgs> Steps { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<TriggerBuildStepArgs> |
Tags
Tags for annotation of a Build. These are not docker tags.
Declaration
public InputList<string> Tags { 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> |