Package version:

Interface AzureMachineLearningStudioFunctionBinding

The binding to an Azure Machine Learning Studio.

interface AzureMachineLearningStudioFunctionBinding {
    apiKey?: string;
    batchSize?: number;
    endpoint?: string;
    inputs?: AzureMachineLearningStudioInputs;
    outputs?: AzureMachineLearningStudioOutputColumn[];
    type: "Microsoft.MachineLearning/WebService";
}

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 Studio. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs

The inputs for the Azure Machine Learning Studio endpoint.

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

type: "Microsoft.MachineLearning/WebService"

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

Generated using TypeDoc