Package version:

Copy activity.

interface CopyActivity {
    dataIntegrationUnits?: any;
    dependsOn?: ActivityDependency[];
    description?: string;
    enableSkipIncompatibleRow?: any;
    enableStaging?: any;
    inputs?: DatasetReference[];
    linkedServiceName?: LinkedServiceReference;
    logSettings?: LogSettings;
    logStorageSettings?: LogStorageSettings;
    name: string;
    onInactiveMarkAs?: string;
    outputs?: DatasetReference[];
    parallelCopies?: any;
    policy?: ActivityPolicy;
    preserve?: any[];
    preserveRules?: any[];
    redirectIncompatibleRowSettings?: RedirectIncompatibleRowSettings;
    sink: CopySinkUnion;
    skipErrorFile?: SkipErrorFile;
    source: CopySourceUnion;
    stagingSettings?: StagingSettings;
    state?: string;
    translator?: any;
    type: "Copy";
    userProperties?: UserProperty[];
    validateDataConsistency?: any;
}

Hierarchy (view full)

Properties

dataIntegrationUnits?: any

Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

enableSkipIncompatibleRow?: any

Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).

enableStaging?: any

Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).

inputs?: DatasetReference[]

List of inputs for the activity.

linkedServiceName?: LinkedServiceReference

Linked service reference.

logSettings?: LogSettings

Log settings customer needs provide when enabling log.

logStorageSettings?: LogStorageSettings

(Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.

name: string

Activity name.

onInactiveMarkAs?: string

Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.

outputs?: DatasetReference[]

List of outputs for the activity.

parallelCopies?: any

Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.

Activity policy.

preserve?: any[]

Preserve rules.

preserveRules?: any[]

Preserve Rules.

redirectIncompatibleRowSettings?: RedirectIncompatibleRowSettings

Redirect incompatible row settings when EnableSkipIncompatibleRow is true.

Copy activity sink.

skipErrorFile?: SkipErrorFile

Specify the fault tolerance for data consistency.

Copy activity source.

stagingSettings?: StagingSettings

Specifies interim staging settings when EnableStaging is true.

state?: string

Activity state. This is an optional property and if not provided, the state will be Active by default.

translator?: any

Copy activity translator. If not specified, tabular translator is used.

type

Polymorphic discriminator, which specifies the different types this object can be

userProperties?: UserProperty[]

Activity user properties.

validateDataConsistency?: any

Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).