Package version:

Interface FileShareDataset

An on-premises file system dataset.

interface FileShareDataset {
    annotations?: any[];
    compression?: DatasetCompression;
    description?: string;
    fileFilter?: any;
    fileName?: any;
    folder?: DatasetFolder;
    folderPath?: any;
    format?: DatasetStorageFormatUnion;
    linkedServiceName: LinkedServiceReference;
    modifiedDatetimeEnd?: any;
    modifiedDatetimeStart?: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    schema?: any;
    structure?: any;
    type: "FileShare";
}

Hierarchy (view full)

Properties

annotations?: any[]

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

compression?: DatasetCompression

The data compression method used for the file system.

description?: string

Dataset description.

fileFilter?: any

Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).

fileName?: any

The name of the on-premises file system. Type: string (or Expression with resultType string).

folder?: DatasetFolder

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

folderPath?: any

The path of the on-premises file system. Type: string (or Expression with resultType string).

The format of the files.

linkedServiceName: LinkedServiceReference

Linked service reference.

modifiedDatetimeEnd?: any

The end of file's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart?: any

The start of file's modified datetime. Type: string (or Expression with resultType string).

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.

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