Show / Hide Table of Contents

Class UpdateOracleAdvisorSettings

Optional Pre-Migration advisor settings.

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

Properties

IsIgnoreErrors

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

True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.

IsSkipAdvisor

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

True to skip the Pre-Migration Advisor execution. Default is false.

In this article
Back to top