Show / Hide Table of Contents

Class AutoFailoverConfiguration

The properties for defining auto failover configuration.

Inheritance
object
AutoFailoverConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class AutoFailoverConfiguration

Properties

FailoverTargets

Declaration
[JsonProperty(PropertyName = "failoverTargets")]
public List<string> FailoverTargets { get; set; }
Property Value
Type Description
List<string>

Specifies the DB_UNIQUE_NAME of the data guard group member databases.

ManagedAutoFailover

Declaration
[JsonProperty(PropertyName = "managedAutoFailover")]
[JsonConverter(typeof(StringEnumConverter))]
public AutoFailoverConfiguration.ManagedAutoFailoverEnum? ManagedAutoFailover { get; set; }
Property Value
Type Description
AutoFailoverConfiguration.ManagedAutoFailoverEnum?

The state of managed auto failover.

In this article
Back to top