Package version:

Interface AzureMLBatchExecutionActivity

Azure ML Batch Execution activity.

interface AzureMLBatchExecutionActivity {
    dependsOn?: ActivityDependency[];
    description?: string;
    globalParameters?: {
        [propertyName: string]: any;
    };
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    state?: string;
    type: "AzureMLBatchExecution";
    userProperties?: UserProperty[];
    webServiceInputs?: {
        [propertyName: string]: AzureMLWebServiceFile;
    };
    webServiceOutputs?: {
        [propertyName: string]: AzureMLWebServiceFile;
    };
}

Hierarchy (view full)

Properties

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

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

Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.

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.

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.

webServiceInputs?: {
    [propertyName: string]: AzureMLWebServiceFile;
}

Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.

webServiceOutputs?: {
    [propertyName: string]: AzureMLWebServiceFile;
}

Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.