Class RandomListFormatEntry
The Random List masking format randomly selects values from a list of values to replace the original values. To learn more, check Random List in the Data Safe documentation.
Inherited Members
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class RandomListFormatEntry : FormatEntry
Properties
RandomList
Declaration
[Required(ErrorMessage = "RandomList is required.")]
[JsonProperty(PropertyName = "randomList")]
public List<string> RandomList { get; set; }
Property Value
Type | Description |
---|---|
List<string> | A comma-separated list of values to be used to replace column values. The list can be of strings, numbers, or dates. The data type of each value in the list must be compatible with the data type of the column. The number of entries in the list cannot be more than 999. |
Remarks
Required