Package version:

Interface AzureMachineLearningServiceFunctionBinding

The binding to an Azure Machine Learning web service.

interface AzureMachineLearningServiceFunctionBinding {
    apiKey?: string;
    batchSize?: number;
    endpoint?: string;
    inputRequestName?: string;
    inputs?: AzureMachineLearningServiceInputColumn[];
    numberOfParallelRequests?: number;
    outputResponseName?: string;
    outputs?: AzureMachineLearningServiceOutputColumn[];
    type: "Microsoft.MachineLearningServices";
}

Hierarchy (view full)

Properties

apiKey?: string

The API key used to authenticate with Request-Response endpoint.

batchSize?: number

Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.

endpoint?: string

The Request-Response execute endpoint of the Azure Machine Learning web service.

inputRequestName?: string

Label for the input request object.

The inputs for the Azure Machine Learning web service endpoint.

numberOfParallelRequests?: number

The number of parallel requests that will be sent per partition of your job to the machine learning service. Default is 1.

outputResponseName?: string

Label for the output request object.

A list of outputs from the Azure Machine Learning web service endpoint execution.

type: "Microsoft.MachineLearningServices"

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

Generated using TypeDoc