Show / Hide Table of Contents

Class ConvertStandbyDatabaseTypeDetails

The convertStandbyDatabaseType request parameters.

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

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

SnapshotDurationInDays

Declaration
[JsonProperty(PropertyName = "snapshotDurationInDays")]
public int? SnapshotDurationInDays { get; set; }
Property Value
Type Description
int?

SnapshotDurationInDays is the duration in day(s) after which the Snapshot Standby Database will get converted back to Physical Standby. The minimum value of snapshotDurationInDays is 3 days and maximum value is 14 days. Default value will be 7 days if not provided in the Request.
This field is only applicable if the requested database role is snapshot standby.

StandbyConversionType

Declaration
[Required(ErrorMessage = "StandbyConversionType is required.")]
[JsonProperty(PropertyName = "standbyConversionType")]
[JsonConverter(typeof(StringEnumConverter))]
public ConvertStandbyDatabaseTypeDetails.StandbyConversionTypeEnum? StandbyConversionType { get; set; }
Property Value
Type Description
ConvertStandbyDatabaseTypeDetails.StandbyConversionTypeEnum?

Defines the conversion type of the standby database. Specify this to convert a physical standby to a snapshot standby and vice versa.
Valid standbyConversionType: - SNAPSHOT - PHYSICAL

Remarks

Required

In this article
Back to top