Package version:

Interface DrillTableDataset

Drill server dataset.

interface DrillTableDataset {
    annotations?: any[];
    description?: string;
    folder?: DatasetFolder;
    linkedServiceName: LinkedServiceReference;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    schema?: any;
    schemaTypePropertiesSchema?: any;
    structure?: any;
    table?: any;
    tableName?: any;
    type: "DrillTable";
}

Hierarchy (view full)

Properties

annotations?: any[]

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

description?: string

Dataset description.

folder?: DatasetFolder

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

linkedServiceName: LinkedServiceReference

Linked service reference.

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

Parameters for dataset.

schema?: any

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

schemaTypePropertiesSchema?: any

The schema name of the Drill. Type: string (or Expression with resultType string).

structure?: any

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

table?: any

The table name of the Drill. Type: string (or Expression with resultType string).

tableName?: any

This property will be retired. Please consider using schema + table properties instead.

type

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