Show / Hide Table of Contents

Class DataVerificationObjectStatusSummary

Per-object status comparison line.

Inheritance
object
DataVerificationObjectStatusSummary
MySqlDataVerificationObjectStatusSummary
OracleDataVerificationObjectStatusSummary
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
[JsonConverter(typeof(DataVerificationObjectStatusSummaryModelConverter))]
public class DataVerificationObjectStatusSummary

Properties

ObjectName

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

Database object name.

Remarks

Required

Owner

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

Schema/owner name.
This field is omitted (null/empty depending on backend serialization) for database-wide object types that are not schema-scoped.
Oracle non-schema-scoped object types: USER, ROLE, PROFILE, TABLESPACE, DATABASE_LINK, CONTROLFILE, DATAFILE, REDO_LOG, DIRECTORY, LIBRARY, CONTEXT.
MySQL non-schema-scoped object types: USER, ROLE, SERVER, TABLESPACE, LOGFILE_GROUP.

StatusInSource

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

Object status in source.

Remarks

Required

StatusInTarget

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

Object status in target.

Remarks

Required

In this article
Back to top