Class RestoreAutonomousDatabaseDetails
Details to restore an Oracle Autonomous Database.
Inherited Members
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class RestoreAutonomousDatabaseDetails
Properties
DatabaseSCN
Declaration
[JsonProperty(PropertyName = "databaseSCN")]
public string DatabaseSCN { get; set; }
Property Value
Type | Description |
---|---|
string | Restores using the backup with the System Change Number (SCN) specified. |
Latest
Declaration
[JsonProperty(PropertyName = "latest")]
public bool? Latest { get; set; }
Property Value
Type | Description |
---|---|
bool? | Restores to the last known good state with the least possible data loss. |
Timestamp
Declaration
[Required(ErrorMessage = "Timestamp is required.")]
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The time to restore the database to. |
Remarks
Required