Show / Hide Table of Contents

Class PointInTimeRecoveryDetails

Point-in-time Recovery details like earliest and latest recovery time point for the DB System.

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

Properties

TimeEarliestRecoveryPoint

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

Earliest recovery time point for the DB System, as described by RFC 3339.

Remarks

Required

TimeLatestRecoveryPoint

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

Latest recovery time point for the DB System, as described by RFC 3339.

Remarks

Required

In this article
Back to top