AzureMachineLearningWebServiceFunctionBindingResponse

data class AzureMachineLearningWebServiceFunctionBindingResponse(val apiKey: String? = null, val batchSize: Int? = null, val endpoint: String? = null, val inputs: AzureMachineLearningWebServiceInputsResponse? = null, val outputs: List<AzureMachineLearningWebServiceOutputColumnResponse>? = null, val type: String)

The binding to an Azure Machine Learning web service.

Constructors

constructor(apiKey: String? = null, batchSize: Int? = null, endpoint: String? = null, inputs: AzureMachineLearningWebServiceInputsResponse? = null, outputs: List<AzureMachineLearningWebServiceOutputColumnResponse>? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val apiKey: String? = null

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

Link copied to clipboard
val batchSize: Int? = null

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

Link copied to clipboard
val endpoint: String? = null

The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs

Link copied to clipboard

The inputs for the Azure Machine Learning web service endpoint.

Link copied to clipboard

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

Link copied to clipboard

Indicates the function binding type. Expected value is 'Microsoft.MachineLearning/WebService'.