Class TriggerGithubArgs
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 TriggerGithubArgs : ResourceArgs
Constructors
View SourceTriggerGithubArgs()
Declaration
public TriggerGithubArgs()
Properties
View SourceName
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> |
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> |
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> |
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> |