Class CreateReleaseOptions
Parameters for creating a release.
Namespace: Unity.Services.Ccd.Management
Syntax
public class CreateReleaseOptions : object
Constructors
CreateReleaseOptions(Guid)
Create parameters for creating a release.
Declaration
public CreateReleaseOptions(Guid bucketId)
Parameters
Type | Name | Description |
---|---|---|
Guid | bucketId | Id of the bucket. |
Properties
BucketId
Id of the bucket to release.
Declaration
public Guid BucketId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Entries
List of entries to create a release for. If left empty, all entries will be included.
Declaration
public List<CcdReleaseEntryCreate> Entries { get; set; }
Property Value
Type | Description |
---|---|
List<CcdReleaseEntryCreate> |
Metadata
Metadata of the release.
Declaration
public JsonObject Metadata { get; set; }
Property Value
Type | Description |
---|---|
JsonObject |
Notes
Notes of the release.
Declaration
public string Notes { get; set; }
Property Value
Type | Description |
---|---|
String |
Snapshot
Snapshot of the release.
Declaration
public DateTime Snapshot { get; set; }
Property Value
Type | Description |
---|---|
DateTime |