AzureMachineLearningWebServiceFunctionBinding Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AzureMachineLearningWebServiceFunctionBinding() |
Initializes a new instance of the AzureMachineLearningWebServiceFunctionBinding class. |
AzureMachineLearningWebServiceFunctionBinding(String, String, AzureMachineLearningWebServiceInputs, IList<AzureMachineLearningWebServiceOutputColumn>, Nullable<Int32>) |
Initializes a new instance of the AzureMachineLearningWebServiceFunctionBinding class. |
AzureMachineLearningWebServiceFunctionBinding()
Initializes a new instance of the AzureMachineLearningWebServiceFunctionBinding class.
public AzureMachineLearningWebServiceFunctionBinding ();
Public Sub New ()
Applies to
AzureMachineLearningWebServiceFunctionBinding(String, String, AzureMachineLearningWebServiceInputs, IList<AzureMachineLearningWebServiceOutputColumn>, Nullable<Int32>)
Initializes a new instance of the AzureMachineLearningWebServiceFunctionBinding class.
public AzureMachineLearningWebServiceFunctionBinding (string endpoint = default, string apiKey = default, Microsoft.Azure.Management.StreamAnalytics.Models.AzureMachineLearningWebServiceInputs inputs = default, System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.AzureMachineLearningWebServiceOutputColumn> outputs = default, int? batchSize = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.AzureMachineLearningWebServiceFunctionBinding : string * string * Microsoft.Azure.Management.StreamAnalytics.Models.AzureMachineLearningWebServiceInputs * System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.AzureMachineLearningWebServiceOutputColumn> * Nullable<int> -> Microsoft.Azure.Management.StreamAnalytics.Models.AzureMachineLearningWebServiceFunctionBinding
Public Sub New (Optional endpoint As String = Nothing, Optional apiKey As String = Nothing, Optional inputs As AzureMachineLearningWebServiceInputs = Nothing, Optional outputs As IList(Of AzureMachineLearningWebServiceOutputColumn) = Nothing, Optional batchSize As Nullable(Of Integer) = Nothing)
Parameters
- endpoint
- String
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
- apiKey
- String
The API key used to authenticate with Request-Response endpoint.
The inputs for the Azure Machine Learning web service endpoint.
A list of outputs from the Azure Machine Learning web service endpoint execution.
Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
Applies to
Azure SDK for .NET