Show / Hide Table of Contents

Class TestPipelineConnectionResult

Result of the connectivity test performed on a pipeline's assigned connection.

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

Properties

Error

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

ResultType

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

Type of result, either Succeeded, Failed, or Timed out.

Remarks

Required

In this article
Back to top