Show / Hide Table of Contents

Class MySqlDataVerificationObjectTypeCountSummary

Object type count comparison summary line for MySQL migrations.

Inheritance
object
DataVerificationObjectTypeCountSummary
MySqlDataVerificationObjectTypeCountSummary
Inherited Members
DataVerificationObjectTypeCountSummary.SchemaName
DataVerificationObjectTypeCountSummary.SourceObjectCount
DataVerificationObjectTypeCountSummary.TargetObjectCount
DataVerificationObjectTypeCountSummary.DeltaPercent
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 MySqlDataVerificationObjectTypeCountSummary : DataVerificationObjectTypeCountSummary

Properties

ObjectType

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

MySQL database object type.

Remarks

Required

SourceInvalidCount

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

Number of invalid objects in source.

Remarks

Required

TargetInvalidCount

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

Number of invalid objects in target.

Remarks

Required

In this article
Back to top