Show / Hide Table of Contents

Class UpdateReferenceDetails

Application references that need to be updated.

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

Properties

ChildReferences

Declaration
[JsonProperty(PropertyName = "childReferences")]
public List<ChildReferenceDetail> ChildReferences { get; set; }
Property Value
Type Description
List<ChildReferenceDetail>

The list of child references that also need to be updated.

Options

Declaration
[JsonProperty(PropertyName = "options")]
public Dictionary<string, string> Options { get; set; }
Property Value
Type Description
Dictionary<string, string>

A list of options such as ignoreObjectOnError.

TargetObject

Declaration
[JsonProperty(PropertyName = "targetObject")]
public object TargetObject { get; set; }
Property Value
Type Description
object

The new target object to reference. This can be of type DataAsset, Schema or Task. In case of DataAsset, the child references can be of type Connection.

In this article
Back to top