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).
Inherited Members
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.
|
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.
|
Remarks
Required