Show / Hide Table of Contents

Class AdvisorCheckSummary

Pre-Migration extended advisor report summary.

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

Properties

BlockerResultsTotalCount

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

Number of BLOCKER results in the extended advisor report.

Remarks

Required

FatalResultsTotalCount

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

Number of FATAL results in the extended advisor report.

Remarks

Required

InformationalResultsTotalCount

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

Number of INFORMATIONAL results in the extended advisor report.

Remarks

Required

PassResultsTotalCount

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

Number of PASS results in the extended advisor report.

Remarks

Required

WarningResultsTotalCount

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

Number of WARNING results in the extended advisor report.

Remarks

Required

In this article
Back to top