Package version:

An output object, containing all information associated with the named output. All outputs are contained under a streaming job.

interface Output {
    datasource?: OutputDataSourceUnion;
    diagnostics?: Diagnostics;
    etag?: string;
    id?: string;
    lastOutputEventTimestamps?: LastOutputEventTimestamp[];
    name?: string;
    serialization?: SerializationUnion;
    sizeWindow?: number;
    timeWindow?: string;
    type?: string;
    watermarkSettings?: OutputWatermarkProperties;
}

Hierarchy (view full)

Properties

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

diagnostics?: Diagnostics

Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention. NOTE: This property will not be serialized. It can only be populated by the server.

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. NOTE: This property will not be serialized. It can only be populated by the server.

id?: string

Resource Id NOTE: This property will not be serialized. It can only be populated by the server.

lastOutputEventTimestamps?: LastOutputEventTimestamp[]

A list of the last output event times for each output partition. The index of the array corresponds to the partition number. NOTE: This property will not be serialized. It can only be populated by the server.

name?: string

Resource name

serialization?: SerializationUnion

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

sizeWindow?: number

The size window to constrain a Stream Analytics output to.

timeWindow?: string

The time frame for filtering Stream Analytics job outputs.

type?: string

Resource type NOTE: This property will not be serialized. It can only be populated by the server.

watermarkSettings?: OutputWatermarkProperties

Settings which determine whether to send watermarks to downstream.

Generated using TypeDoc