Show / Hide Table of Contents

Class ScopeReference

The ScopeReference class is a base class for any model object that wraps a scope reference to a TypedObject.

Inheritance
object
ScopeReference
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 ScopeReference

Properties

RefObjectName

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

The referenced object name for this reference. Set to the field name if the referenceType is BOUND_ENTITY_SHAPE_FIELD, else set to null.

ReferenceObject

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

A key or shallow reference to an object. For direct reference, it points to the actual scope object. For BOUND_ENTITY_SHAPE or BOUND_ENTITY_SHAPE_FIELD, it points to the source or target operator. For OCI_FUNCTION_INPUT_SHAPE or OCI_FUNCTION_OUTPUT_SHAPE, it points to the OCI Function object.

Remarks

Required

ReferenceType

Declaration
[JsonProperty(PropertyName = "referenceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScopeReference.ReferenceTypeEnum? ReferenceType { get; set; }
Property Value
Type Description
ScopeReference.ReferenceTypeEnum?

The reference type for this reference. Set to null for a direct reference, for indirect references set to a type of association such as "BOUND_ENTITY_SHAPE". Current known reference type values are "BOUND_ENTITY_SHAPE", "BOUND_ENTITY_SHAPE_FIELD", "OCI_FUNCTION_INPUT_SHAPE", "OCI_FUNCTION_OUTPUT_SHAPE"

In this article
Back to top