Package version:

Interface LookupActivity

Lookup activity.

interface LookupActivity {
    dataset: DatasetReference;
    dependsOn?: ActivityDependency[];
    description?: string;
    firstRowOnly?: any;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    source: CopySourceUnion;
    state?: string;
    type: "Lookup";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

Lookup activity dataset reference.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

firstRowOnly?: any

Whether to return first row or all rows. Default value is true. Type: boolean (or Expression with resultType boolean).

linkedServiceName?: LinkedServiceReference

Linked service reference.

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.

Activity policy.

Dataset-specific source properties, same as copy activity source.

state?: string

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

type

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

userProperties?: UserProperty[]

Activity user properties.