Show / Hide Table of Contents

Class AdvisorReport

Premigration Advisor report details.

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

Properties

NumberOfFatal

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

Number of Fatal results in the advisor report.

Remarks

Required

NumberOfFatalBlockers

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

Number of Fatal Blocker results in the advisor report.

Remarks

Required

NumberOfInformationalResults

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

Number of Informational results in the advisor report.

Remarks

Required

NumberOfWarnings

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

Number of Warning results in the advisor report.

Remarks

Required

ReportLocationDetails

Declaration
[JsonProperty(PropertyName = "reportLocationDetails")]
public AdvisorReportLocationDetails ReportLocationDetails { get; set; }
Property Value
Type Description
AdvisorReportLocationDetails

Result

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

Premigration Advisor result.

Remarks

Required

In this article
Back to top