Show / Hide Table of Contents

Class DataVerificationDetail

Summary/status information used to enable and drive the Data Verification UI.

Inheritance
object
DataVerificationDetail
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 DataVerificationDetail

Properties

LifecycleDetails

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

LifecycleState

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

Overall lifecycle state of Data Verification generation for the migration. This is a single, feature-level state (all Data Verification reports are generated as one batch).

Remarks

Required

MigrationId

Declaration
[Required(ErrorMessage = "MigrationId is required.")]
[JsonProperty(PropertyName = "migrationId")]
public string MigrationId { get; set; }
Property Value
Type Description
string

The OCID of the resource being referenced.

Remarks

Required

TimeCompleted

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

An RFC3339 formatted datetime string such as 2016-08-25T21:10:29.600Z.

TimeCreated

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

An RFC3339 formatted datetime string such as 2016-08-25T21:10:29.600Z.

TimeStarted

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

An RFC3339 formatted datetime string such as 2016-08-25T21:10:29.600Z.

TimeUpdated

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

An RFC3339 formatted datetime string such as 2016-08-25T21:10:29.600Z.

In this article
Back to top