Class UpdateMaskingColumnDetails
Details to update a masking column.
Inheritance
UpdateMaskingColumnDetails
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
Declaration
[JsonProperty(PropertyName = "maskingFormats")]
public List<MaskingFormat> MaskingFormats { get; set; }
Property Value
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.
|