SensitiveObjectSummary¶
- 
class oci.data_safe.models.SensitiveObjectSummary(**kwargs)¶
- Bases: - object- Summary of a sensitive object present in a sensitive data model. - Attributes - OBJECT_TYPE_EDITIONING_VIEW- A constant which can be used with the object_type property of a SensitiveObjectSummary. - OBJECT_TYPE_TABLE- A constant which can be used with the object_type property of a SensitiveObjectSummary. - object_name- [Required] Gets the object_name of this SensitiveObjectSummary. - object_type- [Required] Gets the object_type of this SensitiveObjectSummary. - schema_name- [Required] Gets the schema_name of this SensitiveObjectSummary. - Methods - __init__(**kwargs)- Initializes a new SensitiveObjectSummary 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 SensitiveObjectSummary. 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 SensitiveObjectSummary. This constant has a value of “TABLE” 
 - 
__init__(**kwargs)¶
- Initializes a new SensitiveObjectSummary 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 SensitiveObjectSummary.
- object_name (str) – The value to assign to the object_name property of this SensitiveObjectSummary.
- object_type (str) – The value to assign to the object_type property of this SensitiveObjectSummary. 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 SensitiveObjectSummary. The database object that contains the sensitive column. - Returns: - The object_name of this SensitiveObjectSummary. - Return type: - str 
 - 
object_type¶
- [Required] Gets the object_type of this SensitiveObjectSummary. The type of the database object that contains the sensitive 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 SensitiveObjectSummary. - Return type: - str 
 - 
schema_name¶
- [Required] Gets the schema_name of this SensitiveObjectSummary. The database schema that contains the sensitive column. - Returns: - The schema_name of this SensitiveObjectSummary. - Return type: - str 
 
-