Class DataVerificationObjectTypeCountSummary
Object type count comparison summary line.
Inheritance
Inherited Members
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
[JsonConverter(typeof(DataVerificationObjectTypeCountSummaryModelConverter))]
public class DataVerificationObjectTypeCountSummary
Properties
DeltaPercent
Declaration
[Required(ErrorMessage = "DeltaPercent is required.")]
[JsonProperty(PropertyName = "deltaPercent")]
public double DeltaPercent { get; set; }
Property Value
| Type | Description |
|---|---|
| double | Percentage delta between source and target counts.
This value is expected to be non-negative.
|
Remarks
Required
SchemaName
Declaration
[JsonProperty(PropertyName = "schemaName")]
public string SchemaName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Schema/owner name.
|
SourceObjectCount
Declaration
[Required(ErrorMessage = "SourceObjectCount is required.")]
[JsonProperty(PropertyName = "sourceObjectCount")]
public int? SourceObjectCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Number of objects in source. |
Remarks
Required
TargetObjectCount
Declaration
[Required(ErrorMessage = "TargetObjectCount is required.")]
[JsonProperty(PropertyName = "targetObjectCount")]
public int? TargetObjectCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Number of objects in target. |
Remarks
Required