Show / Hide Table of Contents

Class AssessorCheck

Assessor Check

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

Properties

Action

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

Fixing the issue.

AssessorCheckGroup

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

Required

AssessorCheckState

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

The current state of the Assessor Check.

Remarks

Required

CheckAction

Declaration
[JsonProperty(PropertyName = "checkAction")]
public AssessorCheckAction CheckAction { get; set; }
Property Value
Type Description
AssessorCheckAction

Columns

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

Array of the column of the objects table.

Description

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

A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

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.

HelpLinkText

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

The Help link text.

HelpLinkUrl

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

The Help URL.

Impact

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

Impact of the issue on data migration.

IsExclusionAllowed

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

If false, objects cannot be excluded from migration.

Issue

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

Description of the issue.

Key

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

Pre-Migration \u0441heck id.

LogLocation

Declaration
[JsonProperty(PropertyName = "logLocation")]
public LogLocationBucketDetails LogLocation { get; set; }
Property Value
Type Description
LogLocationBucketDetails

Metadata

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

Name

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

The Name of the Check.

Remarks

Required

ObjectCount

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

Number of database objects to migrate.

ObjectsDisplayName

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

The objects display name.

In this article
Back to top