Class RestoreDatabaseDetails
Inherited Members
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. |