Show / Hide Table of Contents

Class RestoreDatabaseDetails

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

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. This field is applicable for both use cases - Restoring Container Database or Restoring specific Pluggable Database.

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.

PluggableDatabaseName

Declaration
[JsonProperty(PropertyName = "pluggableDatabaseName")]
public string PluggableDatabaseName { get; set; }
Property Value
Type Description
string

Restores only the Pluggable Database (if specified) using the inputs provided in request.

Timestamp

Declaration
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

Restores to the timestamp specified.

In this article
Back to top