Share via


ScalarFunctionProperties Constructors

Definition

Overloads

ScalarFunctionProperties()

Initializes a new instance of the ScalarFunctionProperties class.

ScalarFunctionProperties(String, IList<FunctionInput>, FunctionOutput, FunctionBinding)

Initializes a new instance of the ScalarFunctionProperties class.

ScalarFunctionProperties()

Initializes a new instance of the ScalarFunctionProperties class.

public ScalarFunctionProperties ();
Public Sub New ()

Applies to

ScalarFunctionProperties(String, IList<FunctionInput>, FunctionOutput, FunctionBinding)

Initializes a new instance of the ScalarFunctionProperties class.

public ScalarFunctionProperties (string etag = default, System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.FunctionInput> inputs = default, Microsoft.Azure.Management.StreamAnalytics.Models.FunctionOutput output = default, Microsoft.Azure.Management.StreamAnalytics.Models.FunctionBinding binding = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.ScalarFunctionProperties : string * System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.FunctionInput> * Microsoft.Azure.Management.StreamAnalytics.Models.FunctionOutput * Microsoft.Azure.Management.StreamAnalytics.Models.FunctionBinding -> Microsoft.Azure.Management.StreamAnalytics.Models.ScalarFunctionProperties
Public Sub New (Optional etag As String = Nothing, Optional inputs As IList(Of FunctionInput) = Nothing, Optional output As FunctionOutput = Nothing, Optional binding As FunctionBinding = Nothing)

Parameters

etag
String

The current entity tag for the function. This is an opaque string. You can use it to detect whether the resource has changed between requests. You can also use it in the If-Match or If-None-Match headers for write operations for optimistic concurrency.

inputs
IList<FunctionInput>

A list of inputs describing the parameters of the function.

output
FunctionOutput

The output of the function.

binding
FunctionBinding

The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.

Applies to