Class ReleaseDiffOptions
Parameters for retrieving the diff between two releases. Either FromReleaseId or FromReleaseNum and ToReleaseId or ToReleaseNum should be specified.
Namespace: Unity.Services.Ccd.Management
Syntax
public class ReleaseDiffOptions : object
Constructors
ReleaseDiffOptions(Guid, Guid, Guid)
Create parameters for retrieving diff.
Declaration
public ReleaseDiffOptions(Guid bucketId, Guid fromReleaseId, Guid toReleaseId)
Parameters
Type | Name | Description |
---|---|---|
Guid | bucketId | Id of the bucket. |
Guid | fromReleaseId | Id of the release to start from. |
Guid | toReleaseId | Id of the release to end at. |
ReleaseDiffOptions(Guid, Int32, Int32)
Create parameters for retrieving diff.
Declaration
public ReleaseDiffOptions(Guid bucketId, int fromReleaseNum, int toReleaseNum)
Parameters
Type | Name | Description |
---|---|---|
Guid | bucketId | Id of the bucket. |
Int32 | fromReleaseNum | Release number to start from. |
Int32 | toReleaseNum | Release number to end at. |
Properties
BucketId
Id of the bucket of the release.
Declaration
public Guid BucketId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
FromReleaseId
The Id of the release to start from.
Declaration
public Guid FromReleaseId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
FromReleaseNum
The release number to start from.
Declaration
public int? FromReleaseNum { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Include_States
The states of entries to include.
Declaration
public List<string> Include_States { get; set; }
Property Value
Type | Description |
---|---|
List<String> |
Path
The path to filter to.
Declaration
public string Path { get; set; }
Property Value
Type | Description |
---|---|
String |
ToReleaseId
The Id of the release to end at.
Declaration
public Guid ToReleaseId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ToReleaseNum
The release number to end at.
Declaration
public int? ToReleaseNum { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |