Show / Hide Table of Contents

Class RestoreAutonomousDatabaseDetails

Details to restore an Oracle Autonomous Database.

Inheritance
object
RestoreAutonomousDatabaseDetails
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 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
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

The time to restore the database to.

In this article
Back to top