Show / Hide Table of Contents

Class ModifiedAttributes

The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.

Inheritance
object
ModifiedAttributes
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class ModifiedAttributes

Properties

AppDefinedChildColumnKeys

Declaration
[JsonProperty(PropertyName = "appDefinedChildColumnKeys")]
public List<string> AppDefinedChildColumnKeys { get; set; }
Property Value
Type Description
List<string>

Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.

DbDefinedChildColumnKeys

Declaration
[JsonProperty(PropertyName = "dbDefinedChildColumnKeys")]
public List<string> DbDefinedChildColumnKeys { get; set; }
Property Value
Type Description
List<string>

Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.

In this article
Back to top