Show / Hide Table of Contents

Class ChangeRoleToStandaloneDetails

The information required to change a replica database system's role to standalone.

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

Properties

ChangeMode

Declaration
[Required(ErrorMessage = "ChangeMode is required.")]
[JsonProperty(PropertyName = "changeMode")]
[JsonConverter(typeof(StringEnumConverter))]
public ChangeRoleToStandaloneDetails.ChangeModeEnum? ChangeMode { get; set; }
Property Value
Type Description
ChangeRoleToStandaloneDetails.ChangeModeEnum?

Type of the mode choose during change role operation. REPLAY_PENDING_UPDATES (Default value): In this mode, the role change is delayed until replica database system has processed all Write-Ahead log (WAL) records that were archived before this API call is made. IMMEDIATELY: In this mode, the role change is applied right away, without waiting for any pending WAL records to be processed. This allows for an immediate transition.

Remarks

Required

In this article
Back to top