Show / Hide Table of Contents

Class ReplicationProgress

Progress of a migration asset's replication process.

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

Properties

LastReplicationError

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

Error message if the last finished replication failed.

LastReplicationStatus

Declaration
[JsonProperty(PropertyName = "lastReplicationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReplicationProgress.LastReplicationStatusEnum? LastReplicationStatus { get; set; }
Property Value
Type Description
ReplicationProgress.LastReplicationStatusEnum?

Status of the last replication task. It can be Completed or Failed.

Percentage

Declaration
[Required(ErrorMessage = "Percentage is required.")]
[JsonProperty(PropertyName = "percentage")]
public int? Percentage { get; set; }
Property Value
Type Description
int?

Percentage of the current replication progress from 0 to 100.

Remarks

Required

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReplicationProgress.StatusEnum? Status { get; set; }
Property Value
Type Description
ReplicationProgress.StatusEnum?

Status of the current replication progress. It can be None or InProgress.

TimeOfLastReplicationEnd

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

End time of the last replication process. It can be Completed or Failed.

TimeOfLastReplicationSuccess

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

End time of the last successful replication process, which has been completed.

TimeOflastReplicationStart

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

Start time of the last replication process. It can be Completed or Failed.

TimeStarted

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

Start time of the current replication process

In this article
Back to top