Show / Hide Table of Contents

Class UserDefinedFunctionDetails

The information about a user defined function.

Inheritance
object
UserDefinedFunctionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class UserDefinedFunctionDetails

Properties

Description

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

Detailed description for the object.

Expr

Declaration
[JsonProperty(PropertyName = "expr")]
public Expression Expr { get; set; }
Property Value
Type Description
Expression

Identifier

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

Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.

Key

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

Generated key that can be used in API calls to identify user defined function. On scenarios where reference to the user defined function is needed, a value can be passed in create.

Remarks

Required

ModelType

Declaration
[Required(ErrorMessage = "ModelType is required.")]
[JsonProperty(PropertyName = "modelType")]
[JsonConverter(typeof(StringEnumConverter))]
public UserDefinedFunctionDetails.ModelTypeEnum? ModelType { get; set; }
Property Value
Type Description
UserDefinedFunctionDetails.ModelTypeEnum?

The type of the object.

Remarks

Required

ModelVersion

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

The model version of an object.

Name

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

Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.

ObjectStatus

Declaration
[JsonProperty(PropertyName = "objectStatus")]
public int? ObjectStatus { get; set; }
Property Value
Type Description
int?

The status of an object that can be set to value 1 for shallow references across objects, other values reserved.

ObjectVersion

Declaration
[Required(ErrorMessage = "ObjectVersion is required.")]
[JsonProperty(PropertyName = "objectVersion")]
public int? ObjectVersion { get; set; }
Property Value
Type Description
int?

The version of the object that is used to track changes in the object instance.

Remarks

Required

ParentRef

Declaration
[JsonProperty(PropertyName = "parentRef")]
public ParentReference ParentRef { get; set; }
Property Value
Type Description
ParentReference

RegistryMetadata

Declaration
[JsonProperty(PropertyName = "registryMetadata")]
public RegistryMetadata RegistryMetadata { get; set; }
Property Value
Type Description
RegistryMetadata

Signatures

Declaration
[JsonProperty(PropertyName = "signatures")]
public List<FunctionSignature> Signatures { get; set; }
Property Value
Type Description
List<FunctionSignature>

An array of function signature.

In this article
Back to top