Show / Hide Table of Contents

Class UpdateDataGuardDetails

The properties for updating a standby database.

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

Properties

DatabaseAdminPassword

Declaration
[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.

IsActiveDataGuardEnabled

Declaration
[JsonProperty(PropertyName = "isActiveDataGuardEnabled")]
public bool? IsActiveDataGuardEnabled { get; set; }
Property Value
Type Description
bool?

True if active Data Guard is enabled.

ProtectionMode

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

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

TransportType

Declaration
[JsonProperty(PropertyName = "transportType")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateDataGuardDetails.TransportTypeEnum? TransportType { get; set; }
Property Value
Type Description
UpdateDataGuardDetails.TransportTypeEnum?

The redo transport type to use for this Data Guard association. Valid values depend on the specified protectionMode:

  • MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
  • MAXIMUM_PERFORMANCE - ASYNC
  • MAXIMUM_PROTECTION - SYNC
    For more information, see Redo Transport Services in the Oracle Data Guard documentation.
    IMPORTANT - The only transport type currently supported by the Database service is ASYNC.
In this article
Back to top