MaskingErrorSummary¶
-
class
oci.data_safe.models.
MaskingErrorSummary
(**kwargs)¶ Bases:
object
Summary of a masking error. A Masking error is an error seen during the masking run.
Attributes
STEP_NAME_EXECUTE_MASKING
A constant which can be used with the step_name property of a MaskingErrorSummary. STEP_NAME_POST_MASKING
A constant which can be used with the step_name property of a MaskingErrorSummary. STEP_NAME_PRE_MASKING
A constant which can be used with the step_name property of a MaskingErrorSummary. error
[Required] Gets the error of this MaskingErrorSummary. failed_statement
Gets the failed_statement of this MaskingErrorSummary. step_name
[Required] Gets the step_name of this MaskingErrorSummary. time_created
[Required] Gets the time_created of this MaskingErrorSummary. Methods
__init__
(**kwargs)Initializes a new MaskingErrorSummary object with values from keyword arguments. -
STEP_NAME_EXECUTE_MASKING
= 'EXECUTE_MASKING'¶ A constant which can be used with the step_name property of a MaskingErrorSummary. This constant has a value of “EXECUTE_MASKING”
-
STEP_NAME_POST_MASKING
= 'POST_MASKING'¶ A constant which can be used with the step_name property of a MaskingErrorSummary. This constant has a value of “POST_MASKING”
-
STEP_NAME_PRE_MASKING
= 'PRE_MASKING'¶ A constant which can be used with the step_name property of a MaskingErrorSummary. This constant has a value of “PRE_MASKING”
-
__init__
(**kwargs)¶ Initializes a new MaskingErrorSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - step_name (str) – The value to assign to the step_name property of this MaskingErrorSummary. Allowed values for this property are: “EXECUTE_MASKING”, “PRE_MASKING”, “POST_MASKING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- error (str) – The value to assign to the error property of this MaskingErrorSummary.
- failed_statement (str) – The value to assign to the failed_statement property of this MaskingErrorSummary.
- time_created (datetime) – The value to assign to the time_created property of this MaskingErrorSummary.
-
error
¶ [Required] Gets the error of this MaskingErrorSummary. The text of the masking error.
Returns: The error of this MaskingErrorSummary. Return type: str
-
failed_statement
¶ Gets the failed_statement of this MaskingErrorSummary. The statement resulting into the error.
Returns: The failed_statement of this MaskingErrorSummary. Return type: str
-
step_name
¶ [Required] Gets the step_name of this MaskingErrorSummary. The stepName of the masking error.
Allowed values for this property are: “EXECUTE_MASKING”, “PRE_MASKING”, “POST_MASKING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The step_name of this MaskingErrorSummary. Return type: str
-