Class MySqlDataVerificationObjectTypeCountSummary
Object type count comparison summary line for MySQL migrations.
Inheritance
MySqlDataVerificationObjectTypeCountSummary
Inherited Members
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