Package version:

Interface RawStreamInputDataSource

Describes a raw input data source that contains stream data. This data source type is only applicable/usable when using the query testing API. You cannot create a job with this data source type or add an input of this data source type to an existing job.

interface RawStreamInputDataSource {
    payload?: string;
    payloadUri?: string;
    type: "Raw";
}

Hierarchy (view full)

Properties

payload?: string

The JSON serialized content of the input data. Either payload or payloadUri must be set, but not both.

payloadUri?: string

The SAS URL to a blob containing the JSON serialized content of the input data. Either payload or payloadUri must be set, but not both.

type: "Raw"

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

Generated using TypeDoc