Show / Hide Table of Contents

Class RepositoryMirrorRecord

Object containing information about a mirror record.

Inheritance
object
RepositoryMirrorRecord
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class RepositoryMirrorRecord

Properties

MirrorStatus

Declaration
[Required(ErrorMessage = "MirrorStatus is required.")]
[JsonProperty(PropertyName = "mirrorStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RepositoryMirrorRecord.MirrorStatusEnum? MirrorStatus { get; set; }
Property Value
Type Description
RepositoryMirrorRecord.MirrorStatusEnum?

Mirror status of current mirror entry. QUEUED - Mirroring Queued RUNNING - Mirroring is Running PASSED - Mirroring Passed FAILED - Mirroring Failed

Remarks

Required

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

The time taken to complete a mirror operation. Value is null if not completed.

TimeEnqueued

Declaration
[JsonProperty(PropertyName = "timeEnqueued")]
public DateTime? TimeEnqueued { get; set; }
Property Value
Type Description
DateTime?

The time to enqueue a mirror operation.

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The time to start a mirror operation.

WorkRequestId

Declaration
[JsonProperty(PropertyName = "workRequestId")]
public string WorkRequestId { get; set; }
Property Value
Type Description
string

Workrequest ID to track current mirror operation.

In this article
Back to top