DelimitedTextDataset Class

Delimited text dataset.

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

Inheritance
azure.mgmt.datafactory.models._models_py3.Dataset
DelimitedTextDataset

Constructor

DelimitedTextDataset(*, linked_service_name: _models.LinkedServiceReference, additional_properties: Optional[Dict[str, Any]] = None, description: Optional[str] = None, structure: Optional[Any] = None, schema: Optional[Any] = None, parameters: Optional[Dict[str, _models.ParameterSpecification]] = None, annotations: Optional[List[Any]] = None, folder: Optional[_models.DatasetFolder] = None, location: Optional[_models.DatasetLocation] = None, column_delimiter: Optional[Any] = None, row_delimiter: Optional[Any] = None, encoding_name: Optional[Any] = None, compression_codec: Optional[Any] = None, compression_level: Optional[Any] = None, quote_char: Optional[Any] = None, escape_char: Optional[Any] = None, first_row_as_header: Optional[Any] = None, null_value: 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.Constant filled by server.

description
str

Dataset description.

structure
any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

schema
any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

linked_service_name
LinkedServiceReference

Required. Linked service reference.

parameters
dict[str, ParameterSpecification]

Parameters for dataset.

annotations
list[any]

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

folder
DatasetFolder

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

location
DatasetLocation

The location of the delimited text storage.

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).

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).

compression_codec
any

The data compressionCodec. Type: string (or Expression with resultType string).

compression_level
any

The data compression method used for DelimitedText.

quote_char
any

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

escape_char
any

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

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).

null_value
any

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