Show / Hide Table of Contents

Class GetReleaseArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetReleaseArgs
Inherited Members
InvokeArgs.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 GetReleaseArgs : InvokeArgs

Constructors

View Source

GetReleaseArgs()

Declaration
public GetReleaseArgs()

Properties

View Source

Owner

Owner of the repository.

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

ReleaseId

ID of the release to retrieve. Must be specified when retrieve_by = id.

Declaration
public int? ReleaseId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

ReleaseTag

Tag of the release to retrieve. Must be specified when retrieve_by = tag.

Declaration
public string ReleaseTag { get; set; }
Property Value
Type Description
System.String
View Source

Repository

Name of the repository to retrieve the release from.

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

RetrieveBy

Describes how to fetch the release. Valid values are id, tag, latest.

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