Show / Hide Table of Contents

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.

Inheritance
object
FormatEntry
RandomListFormatEntry
Inherited Members
FormatEntry.Description
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 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

In this article
Back to top