Show / Hide Table of Contents

Class PointInTimeDbSystemSourceDetails

Details of database system point-in-time recovery.

Inheritance
object
SourceDetails
PointInTimeDbSystemSourceDetails
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 PointInTimeDbSystemSourceDetails : SourceDetails

Properties

DbSystemId

Declaration
[Required(ErrorMessage = "DbSystemId is required.")]
[JsonProperty(PropertyName = "dbSystemId")]
public string DbSystemId { get; set; }
Property Value
Type Description
string

The OCID of the source database system which will be used to perform point-in-time recovery.

Remarks

Required

TimeToRestore

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

The target point-in-time of the source database system that will be restored, expressed in RFC 3339 timestamp format.
Point-in-time recovery can only performed in granularity of seconds. Example: 2016-08-25T21:10:29Z

Remarks

Required

In this article
Back to top