Package version:

Interface HDInsightPigActivity

HDInsight Pig activity type.

interface HDInsightPigActivity {
    arguments?: any;
    defines?: {
        [propertyName: string]: any;
    };
    dependsOn?: ActivityDependency[];
    description?: string;
    getDebugInfo?: string;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    scriptLinkedService?: LinkedServiceReference;
    scriptPath?: any;
    state?: string;
    storageLinkedServices?: LinkedServiceReference[];
    type: "HDInsightPig";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

arguments?: any

User specified arguments to HDInsightActivity. Type: array (or Expression with resultType array).

defines?: {
    [propertyName: string]: any;
}

Allows user to specify defines for Pig job request.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

getDebugInfo?: string

Debug info option.

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.

scriptLinkedService?: LinkedServiceReference

Script linked service reference.

scriptPath?: any

Script path. Type: string (or Expression with resultType string).

state?: string

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

storageLinkedServices?: LinkedServiceReference[]

Storage linked service references.

type

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

userProperties?: UserProperty[]

Activity user properties.