Package version:

Interface HDInsightStreamingActivity

HDInsight streaming activity type.

interface HDInsightStreamingActivity {
    arguments?: any[];
    combiner?: any;
    commandEnvironment?: any[];
    defines?: {
        [propertyName: string]: any;
    };
    dependsOn?: ActivityDependency[];
    description?: string;
    fileLinkedService?: LinkedServiceReference;
    filePaths: any[];
    getDebugInfo?: string;
    input: any;
    linkedServiceName?: LinkedServiceReference;
    mapper: any;
    name: string;
    onInactiveMarkAs?: string;
    output: any;
    policy?: ActivityPolicy;
    reducer: any;
    state?: string;
    storageLinkedServices?: LinkedServiceReference[];
    type: "HDInsightStreaming";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

arguments?: any[]

User specified arguments to HDInsightActivity.

combiner?: any

Combiner executable name. Type: string (or Expression with resultType string).

commandEnvironment?: any[]

Command line environment values.

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

Allows user to specify defines for streaming job request.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

fileLinkedService?: LinkedServiceReference

Linked service reference where the files are located.

filePaths: any[]

Paths to streaming job files. Can be directories.

getDebugInfo?: string

Debug info option.

input: any

Input blob path. Type: string (or Expression with resultType string).

linkedServiceName?: LinkedServiceReference

Linked service reference.

mapper: any

Mapper executable name. Type: string (or Expression with resultType string).

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.

output: any

Output blob path. Type: string (or Expression with resultType string).

Activity policy.

reducer: any

Reducer executable name. 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.