Show / Hide Table of Contents

Class RestoreDbSystemDetails

Backup details to restore the database system.

Inheritance
object
RestoreDbSystemDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class RestoreDbSystemDetails

Properties

Ad

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

The desired AD for regions with three ADs. This parameter is optional. If not set, the AD is chosen based on the database system's current AD.

BackupId

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

The OCID of the database system backup.

TimeToRestore

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

The target point-in-time that the database system restore can get started from, expressed in RFC 3339 timestamp format.
Example: 2016-08-25T21:10:29.600Z

In this article
Back to top