Class TestPipelineConnectionResult
Result of the connectivity test performed on a pipeline's assigned connection.
Inherited Members
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