Class ConvertStandbyDatabaseTypeDetails
The convertStandbyDatabaseType request parameters.
Inherited Members
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.
|
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.
|
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.
|
Remarks
Required