DelimitedTextWriteSettings Class

Delimited text write settings.

Constructor

DelimitedTextWriteSettings(*args: Any, **kwargs: Any)

Variables

Name Description
quote_all_text
any

Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).

file_extension
any

The file extension used to create the files. Type: string (or Expression with resultType string). Required.

max_rows_per_file
any

Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).

file_name_prefix
any

Specifies the file name pattern <fileNamePrefix>_<fileIndex>.<fileExtension> when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).

type
str

The write setting type. Required. Default value is "DelimitedTextWriteSettings".

Attributes

file_extension

string (or Expression with resultType string). Required.

file_extension: Any

file_name_prefix

Specifies the file name pattern <fileNamePrefix>_<fileIndex>.<fileExtension> when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).

file_name_prefix: Any | None

max_rows_per_file

Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).

max_rows_per_file: Any | None

quote_all_text

boolean (or Expression with resultType boolean).

quote_all_text: Any | None

type

The write setting type. Required. Default value is "DelimitedTextWriteSettings".

type: Literal['DelimitedTextWriteSettings']