Show / Hide Table of Contents

Class DataGuardGroup

Details of Data Guard setup that the given database is part of. Also includes information about databases part of this Data Guard group and properties for their Data Guard configuration.

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

Properties

Members

Declaration
[JsonProperty(PropertyName = "members")]
public List<DataGuardGroupMember> Members { get; set; }
Property Value
Type Description
List<DataGuardGroupMember>

List of Data Guard members, representing each database that is part of Data Guard.

ProtectionMode

Declaration
[JsonProperty(PropertyName = "protectionMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataGuardGroup.ProtectionModeEnum? ProtectionMode { get; set; }
Property Value
Type Description
DataGuardGroup.ProtectionModeEnum?

The protection mode of this Data Guard. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.

In this article
Back to top