Share via


ArmStreamAnalyticsModelFactory.ScalarFunctionProperties Method

Definition

Initializes a new instance of ScalarFunctionProperties.

public static Azure.ResourceManager.StreamAnalytics.Models.ScalarFunctionProperties ScalarFunctionProperties (Azure.ETag? etag = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionInput> inputs = default, string outputDataType = default, Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionBinding binding = default);
static member ScalarFunctionProperties : Nullable<Azure.ETag> * seq<Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionInput> * string * Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionBinding -> Azure.ResourceManager.StreamAnalytics.Models.ScalarFunctionProperties
Public Shared Function ScalarFunctionProperties (Optional etag As Nullable(Of ETag) = Nothing, Optional inputs As IEnumerable(Of StreamingJobFunctionInput) = Nothing, Optional outputDataType As String = Nothing, Optional binding As StreamingJobFunctionBinding = Nothing) As ScalarFunctionProperties

Parameters

etag
Nullable<ETag>

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.

outputDataType
String

Describes the output of a function.

binding
StreamingJobFunctionBinding

The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint. Please note StreamingJobFunctionBinding is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include EMachineLearningStudioFunctionBinding, MachineLearningServiceFunctionBinding, CSharpFunctionBinding and JavaScriptFunctionBinding.

Returns

A new ScalarFunctionProperties instance for mocking.

Applies to