Show / Hide Table of Contents

Class DisasterRecoveryPrecheckResult

A single precheck result.

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

Properties

Code

Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type Description
string

The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2

Remarks

Required

CorrectiveAction

Declaration
[JsonProperty(PropertyName = "correctiveAction")]
public string CorrectiveAction { get; set; }
Property Value
Type Description
string

The corrective action for non-passing checks. Null for passed checks.

Description

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

Metadata about this specific object.

Remarks

Required

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

An object's Display Name.

Remarks

Required

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

UUID to uniquely identify the each check result.

Remarks

Required

RelatedResourceId

Declaration
[Required(ErrorMessage = "RelatedResourceId is required.")]
[JsonProperty(PropertyName = "relatedResourceId")]
public string RelatedResourceId { get; set; }
Property Value
Type Description
string

The OCID of the resource related to the corresponding check.

Remarks

Required

RelatedResourceType

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

Type of resource related to corresponding check.

Remarks

Required

Status

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

Status of the DR precheck result.

Remarks

Required

In this article
Back to top