TestPipelineConnectionResult¶
-
class
oci.golden_gate.models.
TestPipelineConnectionResult
(**kwargs)¶ Bases:
object
Result of the connectivity test performed on a pipeline’s assigned connection.
Attributes
RESULT_TYPE_FAILED
A constant which can be used with the result_type property of a TestPipelineConnectionResult. RESULT_TYPE_SUCCEEDED
A constant which can be used with the result_type property of a TestPipelineConnectionResult. RESULT_TYPE_TIMED_OUT
A constant which can be used with the result_type property of a TestPipelineConnectionResult. error
Gets the error of this TestPipelineConnectionResult. result_type
[Required] Gets the result_type of this TestPipelineConnectionResult. Methods
__init__
(**kwargs)Initializes a new TestPipelineConnectionResult object with values from keyword arguments. -
RESULT_TYPE_FAILED
= 'FAILED'¶ A constant which can be used with the result_type property of a TestPipelineConnectionResult. This constant has a value of “FAILED”
-
RESULT_TYPE_SUCCEEDED
= 'SUCCEEDED'¶ A constant which can be used with the result_type property of a TestPipelineConnectionResult. This constant has a value of “SUCCEEDED”
-
RESULT_TYPE_TIMED_OUT
= 'TIMED_OUT'¶ A constant which can be used with the result_type property of a TestPipelineConnectionResult. This constant has a value of “TIMED_OUT”
-
__init__
(**kwargs)¶ Initializes a new TestPipelineConnectionResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - result_type (str) – The value to assign to the result_type property of this TestPipelineConnectionResult. Allowed values for this property are: “SUCCEEDED”, “FAILED”, “TIMED_OUT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- error (oci.golden_gate.models.TestPipelineConnectionError) – The value to assign to the error property of this TestPipelineConnectionResult.
-
error
¶ Gets the error of this TestPipelineConnectionResult.
Returns: The error of this TestPipelineConnectionResult. Return type: oci.golden_gate.models.TestPipelineConnectionError
-
result_type
¶ [Required] Gets the result_type of this TestPipelineConnectionResult. Type of result, either Succeeded, Failed, or Timed out.
Allowed values for this property are: “SUCCEEDED”, “FAILED”, “TIMED_OUT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The result_type of this TestPipelineConnectionResult. Return type: str
-