Package version:

Interface ReferenceInputProperties

The properties that are associated with an input containing reference data.

interface ReferenceInputProperties {
    compression?: Compression;
    datasource?: ReferenceInputDataSourceUnion;
    diagnostics?: Diagnostics;
    etag?: string;
    partitionKey?: string;
    serialization?: SerializationUnion;
    type: "Reference";
    watermarkSettings?: InputWatermarkProperties;
}

Hierarchy (view full)

Properties

compression?: Compression

Describes how input data is compressed

Describes an input data source that contains reference data. 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 input. 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.

partitionKey?: string

partitionKey Describes a key in the input data which is used for partitioning the input data

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.

type: "Reference"

Polymorphic discriminator, which specifies the different types this object can be

watermarkSettings?: InputWatermarkProperties

Settings which determine whether to read watermark events.

Generated using TypeDoc