Package version:

Interface DatasetStorageFormat

The format definition of a storage.

interface DatasetStorageFormat {
    deserializer?: any;
    serializer?: any;
    type:
        | "TextFormat"
        | "JsonFormat"
        | "AvroFormat"
        | "OrcFormat"
        | "ParquetFormat";
    [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

deserializer?: any

Deserializer. Type: string (or Expression with resultType string).

serializer?: any

Serializer. Type: string (or Expression with resultType string).

type:
    | "TextFormat"
    | "JsonFormat"
    | "AvroFormat"
    | "OrcFormat"
    | "ParquetFormat"

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