Show / Hide Table of Contents

Class AdvisorReportCheckSummary

Pre-Migration extended advisor report check item.

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

Properties

Action

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

Fixing the issue.

Remarks

Required

Columns

Declaration
[Required(ErrorMessage = "Columns is required.")]
[JsonProperty(PropertyName = "columns")]
public List<AdvisorReportCheckColumn> Columns { get; set; }
Property Value
Type Description
List<AdvisorReportCheckColumn>

Array of the column of the objects table.

Remarks

Required

DisplayName

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

Pre-Migration \u0441heck display name.

Remarks

Required

FixupScriptLocation

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

The path to the fixup script for this check.

Impact

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

Impact of the issue on data migration.

Remarks

Required

IsExclusionAllowed

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

If false, objects cannot be excluded from migration.

Remarks

Required

IsReviewed

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

User flag for advisor report check.

Remarks

Required

Issue

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

Description of the issue.

Remarks

Required

Key

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

Pre-Migration \u0441heck id.

Remarks

Required

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public ObjectMetadata Metadata { get; set; }
Property Value
Type Description
ObjectMetadata

ObjectCount

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

Number of database objects to migrate.

Remarks

Required

ResultType

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

Pre-Migration advisor result.

Remarks

Required

In this article
Back to top