OperationExecResult¶
-
class
oci.data_connectivity.models.
OperationExecResult
(**kwargs)¶ Bases:
object
Operation execution result for a single input set.
Attributes
EXECUTION_STATUS_FAILED
A constant which can be used with the execution_status property of a OperationExecResult. EXECUTION_STATUS_QUEUED
A constant which can be used with the execution_status property of a OperationExecResult. EXECUTION_STATUS_RUNNING
A constant which can be used with the execution_status property of a OperationExecResult. EXECUTION_STATUS_SUCCESS
A constant which can be used with the execution_status property of a OperationExecResult. error_message
Gets the error_message of this OperationExecResult. execution_status
Gets the execution_status of this OperationExecResult. is_whitelisted_error_message
Gets the is_whitelisted_error_message of this OperationExecResult. metrics
Gets the metrics of this OperationExecResult. output_values
Gets the output_values of this OperationExecResult. Methods
__init__
(**kwargs)Initializes a new OperationExecResult object with values from keyword arguments. -
EXECUTION_STATUS_FAILED
= 'FAILED'¶ A constant which can be used with the execution_status property of a OperationExecResult. This constant has a value of “FAILED”
-
EXECUTION_STATUS_QUEUED
= 'QUEUED'¶ A constant which can be used with the execution_status property of a OperationExecResult. This constant has a value of “QUEUED”
-
EXECUTION_STATUS_RUNNING
= 'RUNNING'¶ A constant which can be used with the execution_status property of a OperationExecResult. This constant has a value of “RUNNING”
-
EXECUTION_STATUS_SUCCESS
= 'SUCCESS'¶ A constant which can be used with the execution_status property of a OperationExecResult. This constant has a value of “SUCCESS”
-
__init__
(**kwargs)¶ Initializes a new OperationExecResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - execution_status (str) – The value to assign to the execution_status property of this OperationExecResult. Allowed values for this property are: “FAILED”, “SUCCESS”, “QUEUED”, “RUNNING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- error_message (str) – The value to assign to the error_message property of this OperationExecResult.
- metrics (object) – The value to assign to the metrics property of this OperationExecResult.
- output_values (list[list[object]]) – The value to assign to the output_values property of this OperationExecResult.
- is_whitelisted_error_message (bool) – The value to assign to the is_whitelisted_error_message property of this OperationExecResult.
-
error_message
¶ Gets the error_message of this OperationExecResult. Error message if execution of operation is failed.
Returns: The error_message of this OperationExecResult. Return type: str
-
execution_status
¶ Gets the execution_status of this OperationExecResult. Status of the operation job for particular set of input.
Allowed values for this property are: “FAILED”, “SUCCESS”, “QUEUED”, “RUNNING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The execution_status of this OperationExecResult. Return type: str
-
is_whitelisted_error_message
¶ Gets the is_whitelisted_error_message of this OperationExecResult. True, if error message should be displayed on UI.
Returns: The is_whitelisted_error_message of this OperationExecResult. Return type: bool
-
metrics
¶ Gets the metrics of this OperationExecResult. Metrics of operation execution job.
Returns: The metrics of this OperationExecResult. Return type: object
-
output_values
¶ Gets the output_values of this OperationExecResult. List of emitted rows for each OUT/INOUT param.
Returns: The output_values of this OperationExecResult. Return type: list[list[object]]
-