Show / Hide Table of Contents

Class ReinstateDataGuardDetails

The Data Guard reinstate parameters.

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

Properties

DatabaseAdminPassword

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

The administrator password of the primary database in this Data Guard association.
The password MUST be the same as the primary admin password.

Remarks

Required

SourceDatabaseId

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

The OCID of the source (primary) database in the Data Guard group.

Remarks

Required

In this article
Back to top