MaskingObjectSummary¶
-
class
oci.data_safe.models.
MaskingObjectSummary
(**kwargs)¶ Bases:
object
Summary of a masking object present in a masking policy.
Attributes
OBJECT_TYPE_EDITIONING_VIEW
A constant which can be used with the object_type property of a MaskingObjectSummary. OBJECT_TYPE_TABLE
A constant which can be used with the object_type property of a MaskingObjectSummary. object_name
[Required] Gets the object_name of this MaskingObjectSummary. object_type
[Required] Gets the object_type of this MaskingObjectSummary. schema_name
[Required] Gets the schema_name of this MaskingObjectSummary. Methods
__init__
(**kwargs)Initializes a new MaskingObjectSummary object with values from keyword arguments. -
OBJECT_TYPE_EDITIONING_VIEW
= 'EDITIONING_VIEW'¶ A constant which can be used with the object_type property of a MaskingObjectSummary. This constant has a value of “EDITIONING_VIEW”
-
OBJECT_TYPE_TABLE
= 'TABLE'¶ A constant which can be used with the object_type property of a MaskingObjectSummary. This constant has a value of “TABLE”
-
__init__
(**kwargs)¶ Initializes a new MaskingObjectSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - schema_name (str) – The value to assign to the schema_name property of this MaskingObjectSummary.
- object_name (str) – The value to assign to the object_name property of this MaskingObjectSummary.
- object_type (str) – The value to assign to the object_type property of this MaskingObjectSummary. Allowed values for this property are: “TABLE”, “EDITIONING_VIEW”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
object_name
¶ [Required] Gets the object_name of this MaskingObjectSummary. The database object that contains the masking column.
Returns: The object_name of this MaskingObjectSummary. Return type: str
-
object_type
¶ [Required] Gets the object_type of this MaskingObjectSummary. The type of the database object that contains the masking column.
Allowed values for this property are: “TABLE”, “EDITIONING_VIEW”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The object_type of this MaskingObjectSummary. Return type: str
-
schema_name
¶ [Required] Gets the schema_name of this MaskingObjectSummary. The database schema that contains the masking column.
Returns: The schema_name of this MaskingObjectSummary. Return type: str
-