TextFormat Class

The data stored in text format.

All required parameters must be populated in order to send to Azure.

Inheritance
azure.mgmt.datafactory.models._models_py3.DatasetStorageFormat
TextFormat

Constructor

TextFormat(*, additional_properties: Optional[Dict[str, Any]] = None, serializer: Optional[Any] = None, deserializer: Optional[Any] = None, column_delimiter: Optional[Any] = None, row_delimiter: Optional[Any] = None, escape_char: Optional[Any] = None, quote_char: Optional[Any] = None, null_value: Optional[Any] = None, encoding_name: Optional[Any] = None, treat_empty_as_null: Optional[Any] = None, skip_line_count: Optional[Any] = None, first_row_as_header: Optional[Any] = None, **kwargs)

Variables

additional_properties
dict[str, any]

Unmatched properties from the message are deserialized to this collection.

type
str

Required. Type of dataset storage format.Constant filled by server.

serializer
any

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

deserializer
any

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

column_delimiter
any

The column delimiter. Type: string (or Expression with resultType string).

row_delimiter
any

The row delimiter. Type: string (or Expression with resultType string).

escape_char
any

The escape character. Type: string (or Expression with resultType string).

quote_char
any

The quote character. Type: string (or Expression with resultType string).

null_value
any

The null value string. Type: string (or Expression with resultType string).

encoding_name
any

The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).

treat_empty_as_null
any

Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).

skip_line_count
any

The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).

first_row_as_header
any

When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).