Show / Hide Table of Contents

Class TriggerGithubArgs

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

Constructors

View Source

TriggerGithubArgs()

Declaration
public TriggerGithubArgs()

Properties

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

Owner

Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".

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

PullRequest

filter to match changes in pull requests. Specify only one of pullRequest or push. Structure is documented below.

Declaration
public Input<TriggerGithubPullRequestArgs> PullRequest { get; set; }
Property Value
Type Description
Input<TriggerGithubPullRequestArgs>
View Source

Push

filter to match changes in refs, like branches or tags. Specify only one of pullRequest or push. Structure is documented below.

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