Show / Hide Table of Contents

Class FailoverExecutionOptions

Options for failover execution.

Inheritance
object
DrPlanExecutionOptions
FailoverExecutionOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class FailoverExecutionOptions : DrPlanExecutionOptions

Properties

ArePrechecksEnabled

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

A flag indicating whether prechecks should be executed before the plan execution.
Example: true

AreWarningsIgnored

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

A flag indicating whether warnings should be ignored during the plan execution.
Example: false

In this article
Back to top