Show / Hide Table of Contents

Class DisasterRecoveryPrecheckReport

DR precheck result for standby peer in the specified placement (availabilityDomain and faultDomain).

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

Properties

Checks

Declaration
[Required(ErrorMessage = "Checks is required.")]
[JsonProperty(PropertyName = "checks")]
public List<DisasterRecoveryPrecheckResult> Checks { get; set; }
Property Value
Type Description
List<DisasterRecoveryPrecheckResult>

A list of precheck results.

Remarks

Required

PrecheckStatus

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

Status of the DR precheck result.

Remarks

Required

TimePrecheckFinished

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

The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.

Remarks

Required

TimePrecheckStarted

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

The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.

Remarks

Required

In this article
Back to top