Show / Hide Table of Contents

Class MigrationJobProgressSummary

Summary of the progress of a Migration Job.

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

Properties

CurrentPhase

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

Current phase of the job.

Remarks

Required

CurrentStatus

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

Current status of the job.

Remarks

Required

JobProgress

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

Job progress percentage (0 - 100)

Remarks

Required

In this article
Back to top