Show / Hide Table of Contents

Class UpdateMaskingColumnDetails

Details to update a masking column.

Inheritance
object
UpdateMaskingColumnDetails
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 UpdateMaskingColumnDetails

Properties

IsMaskingEnabled

Declaration
[JsonProperty(PropertyName = "isMaskingEnabled")]
public bool? IsMaskingEnabled { get; set; }
Property Value
Type Description
bool?

Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.

MaskingColumnGroup

Declaration
[JsonProperty(PropertyName = "maskingColumnGroup")]
public string MaskingColumnGroup { get; set; }
Property Value
Type Description
string

MaskingFormats

Declaration
[JsonProperty(PropertyName = "maskingFormats")]
public List<MaskingFormat> MaskingFormats { get; set; }
Property Value
Type Description
List<MaskingFormat>

ObjectType

Declaration
[JsonProperty(PropertyName = "objectType")]
[JsonConverter(typeof(StringEnumConverter))]
public ObjectType? ObjectType { get; set; }
Property Value
Type Description
ObjectType?

The type of the object that contains the database column.

SensitiveTypeId

Declaration
[JsonProperty(PropertyName = "sensitiveTypeId")]
public string SensitiveTypeId { get; set; }
Property Value
Type Description
string

The OCID of the sensitive type to be associated with the masking column. Note that there will be no change in assigned masking format when sensitive type is changed.

In this article
Back to top