Show / Hide Table of Contents

Class TriggerBuildArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TriggerBuildArgs
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 TriggerBuildArgs : ResourceArgs

Constructors

View Source

TriggerBuildArgs()

Declaration
public TriggerBuildArgs()

Properties

View Source

Images

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>
View Source

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>
View Source

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>
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
Back to top Copyright 2016-2020, Pulumi Corporation.