Class GetReleaseArgs
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.Github
Assembly: Pulumi.Github.dll
Syntax
public sealed class GetReleaseArgs : InvokeArgs
Constructors
View SourceGetReleaseArgs()
Declaration
public GetReleaseArgs()
Properties
View SourceOwner
Owner of the repository.
Declaration
public string Owner { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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> |
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 |
Repository
Name of the repository to retrieve the release from.
Declaration
public string Repository { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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 |