Share via


Output Constructors

Definition

Overloads

Output()

Initializes a new instance of the Output class.

Output(String, String, String, OutputDataSource, String, Nullable<Double>, Serialization, Diagnostics, String)

Initializes a new instance of the Output class.

Output()

Initializes a new instance of the Output class.

public Output ();
Public Sub New ()

Applies to

Output(String, String, String, OutputDataSource, String, Nullable<Double>, Serialization, Diagnostics, String)

Initializes a new instance of the Output class.

public Output (string id = default, string name = default, string type = default, Microsoft.Azure.Management.StreamAnalytics.Models.OutputDataSource datasource = default, string timeWindow = default, double? sizeWindow = default, Microsoft.Azure.Management.StreamAnalytics.Models.Serialization serialization = default, Microsoft.Azure.Management.StreamAnalytics.Models.Diagnostics diagnostics = default, string etag = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.Output : string * string * string * Microsoft.Azure.Management.StreamAnalytics.Models.OutputDataSource * string * Nullable<double> * Microsoft.Azure.Management.StreamAnalytics.Models.Serialization * Microsoft.Azure.Management.StreamAnalytics.Models.Diagnostics * string -> Microsoft.Azure.Management.StreamAnalytics.Models.Output
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional datasource As OutputDataSource = Nothing, Optional timeWindow As String = Nothing, Optional sizeWindow As Nullable(Of Double) = Nothing, Optional serialization As Serialization = Nothing, Optional diagnostics As Diagnostics = Nothing, Optional etag As String = Nothing)

Parameters

id
String

Resource Id

name
String

Resource name

type
String

Resource type

datasource
OutputDataSource

Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.

timeWindow
String

The time frame for filtering Stream Analytics job outputs.

sizeWindow
Nullable<Double>

The size window to constrain a Stream Analytics output to.

serialization
Serialization

Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.

diagnostics
Diagnostics

Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.

etag
String

The current entity tag for the output. 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.

Applies to