Class ChangeRoleToStandaloneDetails
The information required to change a replica database system's role to standalone.
Inherited Members
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