Show / Hide Table of Contents

Class PublishedObjectFromDataLoaderTask

The data loader task published object.

Inheritance
object
PublishedObject
PublishedObjectFromDataLoaderTask
Inherited Members
PublishedObject.Key
PublishedObject.ModelVersion
PublishedObject.ParentRef
PublishedObject.Name
PublishedObject.Description
PublishedObject.ObjectVersion
PublishedObject.ObjectStatus
PublishedObject.Identifier
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 PublishedObjectFromDataLoaderTask : PublishedObject

Properties

ConditionalCompositeFieldMap

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

ConfigProviderDelegate

Declaration
[JsonProperty(PropertyName = "configProviderDelegate")]
public ConfigProvider ConfigProviderDelegate { get; set; }
Property Value
Type Description
ConfigProvider

DataFlow

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

InputPorts

Declaration
[JsonProperty(PropertyName = "inputPorts")]
public List<InputPort> InputPorts { get; set; }
Property Value
Type Description
List<InputPort>

An array of input ports.

IsSingleLoad

Declaration
[JsonProperty(PropertyName = "isSingleLoad")]
public bool? IsSingleLoad { get; set; }
Property Value
Type Description
bool?

If true, defines a singular load.

OpConfigValues

Declaration
[JsonProperty(PropertyName = "opConfigValues")]
public ConfigValues OpConfigValues { get; set; }
Property Value
Type Description
ConfigValues

OutputPorts

Declaration
[JsonProperty(PropertyName = "outputPorts")]
public List<OutputPort> OutputPorts { get; set; }
Property Value
Type Description
List<OutputPort>

An array of output ports.

ParallelLoadLimit

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

If not a singular load, this defines the number of entities being loaded in parallel at a time for a Data Loader task.

Parameters

Declaration
[JsonProperty(PropertyName = "parameters")]
public List<Parameter> Parameters { get; set; }
Property Value
Type Description
List<Parameter>

An array of parameters.

In this article
Back to top