Show / Hide Table of Contents

Class CreateDataGuardAssociationToExistingDbSystemDetails

The configuration details for creating a Data Guard association for a bare metal or Exadata DB system database. For these types of DB system databases, the creationType should be ExistingDbSystem. A standby database will be created in the DB system you specify.
To create a Data Guard association for a database in a virtual machine DB system, use the {@link #createDataGuardAssociationWithNewDbSystemDetails(CreateDataGuardAssociationWithNewDbSystemDetailsRequest) createDataGuardAssociationWithNewDbSystemDetails} subtype instead.

Inheritance
object
CreateDataGuardAssociationDetails
CreateDataGuardAssociationToExistingDbSystemDetails
Inherited Members
CreateDataGuardAssociationDetails.DatabaseSoftwareImageId
CreateDataGuardAssociationDetails.DatabaseAdminPassword
CreateDataGuardAssociationDetails.SourceEncryptionKeyLocationDetails
CreateDataGuardAssociationDetails.ProtectionMode
CreateDataGuardAssociationDetails.TransportType
CreateDataGuardAssociationDetails.IsActiveDataGuardEnabled
CreateDataGuardAssociationDetails.PeerDbUniqueName
CreateDataGuardAssociationDetails.PeerSidPrefix
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 CreateDataGuardAssociationToExistingDbSystemDetails : CreateDataGuardAssociationDetails

Properties

PeerDbHomeId

Declaration
[JsonProperty(PropertyName = "peerDbHomeId")]
public string PeerDbHomeId { get; set; }
Property Value
Type Description
string

The OCID of the DB home in which to create the standby database. You must supply this value to create standby database with an existing DB home

PeerDbSystemId

Declaration
[JsonProperty(PropertyName = "peerDbSystemId")]
public string PeerDbSystemId { get; set; }
Property Value
Type Description
string

The OCID of the DB system in which to create the standby database. You must supply this value if creationType is ExistingDbSystem.

In this article
Back to top