Class DisasterRecoveryPrecheckReport
DR precheck result for standby peer in the specified placement (availabilityDomain and faultDomain).
Inherited Members
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 |
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 |
Remarks
Required