Show / Hide Table of Contents

Class TriggerTriggerTemplateArgs

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

Constructors

View Source

TriggerTriggerTemplateArgs()

Declaration
public TriggerTriggerTemplateArgs()

Properties

View Source

BranchName

Name of the branch to build. Exactly one a of branch name, tag, or commit SHA must be provided. This field is a regular expression.

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

CommitSha

Explicit commit SHA to build. Exactly one of a branch name, tag, or commit SHA must be provided.

Declaration
public Input<string> CommitSha { get; set; }
Property Value
Type Description
Input<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

ProjectId

ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.

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

RepoName

Name of the Cloud Source Repository. If omitted, the name "default" is assumed.

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

TagName

Name of the tag to build. Exactly one of a branch name, tag, or commit SHA must be provided. This field is a regular expression.

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