Package version:

A file in an HTTP web server.

interface HttpDataset {
    additionalHeaders?: any;
    annotations?: any[];
    compression?: DatasetCompression;
    description?: string;
    folder?: DatasetFolder;
    format?: DatasetStorageFormatUnion;
    linkedServiceName: LinkedServiceReference;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    relativeUrl?: any;
    requestBody?: any;
    requestMethod?: any;
    schema?: any;
    structure?: any;
    type: "HttpFile";
}

Hierarchy (view full)

Properties

additionalHeaders?: any

The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).

annotations?: any[]

List of tags that can be used for describing the Dataset.

compression?: DatasetCompression

The data compression method used on files.

description?: string

Dataset description.

folder?: DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

The format of files.

linkedServiceName: LinkedServiceReference

Linked service reference.

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for dataset.

relativeUrl?: any

The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).

requestBody?: any

The body for the HTTP request. Type: string (or Expression with resultType string).

requestMethod?: any

The HTTP method for the HTTP request. Type: string (or Expression with resultType string).

schema?: any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure?: any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

type

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