Show / Hide Table of Contents

Class TaskFromDataLoaderTaskDetails

The information about a data flow task.

Inheritance
object
Task
TaskFromDataLoaderTaskDetails
Inherited Members
Task.Key
Task.ModelVersion
Task.ParentRef
Task.Name
Task.Description
Task.ObjectVersion
Task.ObjectStatus
Task.Identifier
Task.InputPorts
Task.OutputPorts
Task.Parameters
Task.OpConfigValues
Task.ConfigProviderDelegate
Task.IsConcurrentAllowed
Task.Metadata
Task.KeyMap
Task.RegistryMetadata
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 TaskFromDataLoaderTaskDetails : Task

Properties

ConditionalCompositeFieldMap

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

DataFlow

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

IsSingleLoad

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

Defines whether Data Loader task is used for single load or multiple

ParallelLoadLimit

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

Defines the number of entities being loaded in parallel at a time for a Data Loader task

In this article
Back to top