Share via


ArmStreamAnalyticsModelFactory.StreamingJobFunctionProperties Method

Definition

Initializes a new instance of StreamingJobFunctionProperties.

public static Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionProperties StreamingJobFunctionProperties (string functionPropertiesType = default, 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 StreamingJobFunctionProperties : string * Nullable<Azure.ETag> * seq<Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionInput> * string * Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionBinding -> Azure.ResourceManager.StreamAnalytics.Models.StreamingJobFunctionProperties
Public Shared Function StreamingJobFunctionProperties (Optional functionPropertiesType As String = Nothing, 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 StreamingJobFunctionProperties

Parameters

functionPropertiesType
String

Indicates the type of function.

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 StreamingJobFunctionProperties instance for mocking.

Applies to