Show / Hide Table of Contents

Class BranchArgs

Inheritance
System.Object
InputArgs
ResourceArgs
BranchArgs
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.Github
Assembly: Pulumi.Github.dll
Syntax
public sealed class BranchArgs : ResourceArgs

Constructors

View Source

BranchArgs()

Declaration
public BranchArgs()

Properties

View Source

BranchName

The repository branch to create.

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

Repository

The GitHub repository name.

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

SourceBranch

The branch name to start from. Defaults to master.

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

SourceSha

The commit hash to start from. Defaults to the tip of source_branch. If provided, source_branch is ignored.

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