Show / Hide Table of Contents

Class UDFFormatEntry

The User Defined Function masking format lets you define your own logic to mask column data. The return value of the user-defined function is used to replace the original values. The user-defined function has a fixed signature and is a PL/SQL function that can be invoked in a SELECT statement. To learn more, check User Defined Function in the Data Safe documentation.

Inheritance
object
FormatEntry
UDFFormatEntry
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 UDFFormatEntry : FormatEntry

Properties

UserDefinedFunction

Declaration
[Required(ErrorMessage = "UserDefinedFunction is required.")]
[JsonProperty(PropertyName = "userDefinedFunction")]
public string UserDefinedFunction { get; set; }
Property Value
Type Description
string

The user-defined function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a standalone or packaged function, so PACKAGE_NAME is optional.

Remarks

Required

In this article
Back to top