Show / Hide Table of Contents

Class CreatePeerTargetDatabaseDetails

The details used to register the peer database of a database already registered in Data Safe.

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

Properties

DatabaseDetails

Declaration
[Required(ErrorMessage = "DatabaseDetails is required.")]
[JsonProperty(PropertyName = "databaseDetails")]
public DatabaseDetails DatabaseDetails { get; set; }
Property Value
Type Description
DatabaseDetails
Remarks

Required

DataguardAssociationId

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

The OCID of the Data Guard Association resource in which the database being registered is considered as peer database to the primary database.

Description

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

The description of the peer target database in Data Safe.

DisplayName

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

The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.

TlsConfig

Declaration
[JsonProperty(PropertyName = "tlsConfig")]
public TlsConfig TlsConfig { get; set; }
Property Value
Type Description
TlsConfig
In this article
Back to top