Show / Hide Table of Contents

Class TestConnectionAssignmentResult

The result of the connectivity test performed between the GoldenGate deployment and the associated database / service. The 'error' property is deprecated and will not contain values in the future. So, the error(s) will be returned in just the 'errors' property.

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

Properties

Error

Declaration
[JsonProperty(PropertyName = "error")]
public TestConnectionAssignmentError Error { get; set; }
Property Value
Type Description
TestConnectionAssignmentError

Errors

Declaration
[JsonProperty(PropertyName = "errors")]
public List<TestConnectionAssignmentError> Errors { get; set; }
Property Value
Type Description
List<TestConnectionAssignmentError>

List of test connection assignment error objects.

ResultType

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

Type of the result (i.e. Success, Failure or Timeout).

Remarks

Required

In this article
Back to top