Show / Hide Table of Contents

Class PitrDetails

Point-in-time recovery details

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

Properties

PitrState

Declaration
[Required(ErrorMessage = "PitrState is required.")]
[JsonProperty(PropertyName = "pitrState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PitrDetails.PitrStateEnum? PitrState { get; set; }
Property Value
Type Description
PitrDetails.PitrStateEnum?

The current state of the point-in-time recovery of the db system.

Remarks

Required

RecoveryTimeWindows

Declaration
[JsonProperty(PropertyName = "recoveryTimeWindows")]
public List<PitrTimeWindow> RecoveryTimeWindows { get; set; }
Property Value
Type Description
List<PitrTimeWindow>

List of point-in-time recovery windows.

In this article
Back to top