Package version:

Interface DatasetLocation

Dataset location.

interface DatasetLocation {
    fileName?: any;
    folderPath?: any;
    type:
        | "AzureBlobStorageLocation"
        | "AzureBlobFSLocation"
        | "AzureDataLakeStoreLocation"
        | "AmazonS3Location"
        | "FileServerLocation"
        | "AzureFileStorageLocation"
        | "AmazonS3CompatibleLocation"
        | "OracleCloudStorageLocation"
        | "GoogleCloudStorageLocation"
        | "FtpServerLocation"
        | "SftpLocation"
        | "HttpServerLocation"
        | "HdfsLocation"
        | "LakeHouseLocation";
    [property: string]: any;
}

Hierarchy (view full)

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

fileName?: any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath?: any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

type:
    | "AzureBlobStorageLocation"
    | "AzureBlobFSLocation"
    | "AzureDataLakeStoreLocation"
    | "AmazonS3Location"
    | "FileServerLocation"
    | "AzureFileStorageLocation"
    | "AmazonS3CompatibleLocation"
    | "OracleCloudStorageLocation"
    | "GoogleCloudStorageLocation"
    | "FtpServerLocation"
    | "SftpLocation"
    | "HttpServerLocation"
    | "HdfsLocation"
    | "LakeHouseLocation"

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