Show / Hide Table of Contents

Class PitrTimeWindow

Time interval for which point-in-time recovery (PITR) is supported. The database can be restored to any timestamp between timeRecoveryWindowStart and timeRecoveryWindowEnd (inclusive).

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

Properties

TimeRecoveryWindowEnd

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

Latest timestamp in the PITR window to which the database can be restored. Timestamps later than this are not recoverable. The value must be an RFC 3339 timestamp.
Example: 2016-08-25T21:10:29Z

Remarks

Required

TimeRecoveryWindowStart

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

Earliest timestamp in the PITR window to which the database can be restored. Timestamps earlier than this are not recoverable. The value must be an RFC 3339 timestamp.
Example: 2016-08-25T21:10:29Z

Remarks

Required

In this article
Back to top