/// <summary> /// Initializes a new instance of the ParquetDataset class. /// </summary> /// <param name="linkedServiceName">Linked service reference.</param> /// <param name="location">The location of the parquet storage.</param> /// <param name="additionalProperties">Unmatched properties from the /// message are deserialized this collection</param> /// <param name="description">Dataset description.</param> /// <param name="structure">Columns that define the structure of the /// dataset. Type: array (or Expression with resultType array), /// itemType: DatasetDataElement.</param> /// <param name="schema">Columns that define the physical type schema /// of the dataset. Type: array (or Expression with resultType array), /// itemType: DatasetSchemaDataElement.</param> /// <param name="parameters">Parameters for dataset.</param> /// <param name="annotations">List of tags that can be used for /// describing the Dataset.</param> /// <param name="folder">The folder that this Dataset is in. If not /// specified, Dataset will appear at the root level.</param> /// <param name="compressionCodec">The data compressionCodec. Type: /// string (or Expression with resultType string).</param> public ParquetDataset(LinkedServiceReference linkedServiceName, DatasetLocation location, IDictionary <string, object> additionalProperties = default(IDictionary <string, object>), string description = default(string), object structure = default(object), object schema = default(object), IDictionary <string, ParameterSpecification> parameters = default(IDictionary <string, ParameterSpecification>), IList <object> annotations = default(IList <object>), DatasetFolder folder = default(DatasetFolder), object compressionCodec = default(object)) : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) { Location = location; CompressionCodec = compressionCodec; CustomInit(); }
/// <summary> /// Initializes a new instance of the ExcelDataset class. /// </summary> /// <param name="linkedServiceName">Linked service reference.</param> /// <param name="location">The location of the excel storage.</param> /// <param name="sheetName">The sheet of excel file. Type: string (or /// Expression with resultType string).</param> /// <param name="additionalProperties">Unmatched properties from the /// message are deserialized this collection</param> /// <param name="description">Dataset description.</param> /// <param name="structure">Columns that define the structure of the /// dataset. Type: array (or Expression with resultType array), /// itemType: DatasetDataElement.</param> /// <param name="schema">Columns that define the physical type schema /// of the dataset. Type: array (or Expression with resultType array), /// itemType: DatasetSchemaDataElement.</param> /// <param name="parameters">Parameters for dataset.</param> /// <param name="annotations">List of tags that can be used for /// describing the Dataset.</param> /// <param name="folder">The folder that this Dataset is in. If not /// specified, Dataset will appear at the root level.</param> /// <param name="range">The partial data of one sheet. Type: string (or /// Expression with resultType string).</param> /// <param name="firstRowAsHeader">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).</param> /// <param name="compression">The data compression method used for the /// json dataset.</param> /// <param name="nullValue">The null value string. Type: string (or /// Expression with resultType string).</param> public ExcelDataset(LinkedServiceReference linkedServiceName, DatasetLocation location, object sheetName, IDictionary <string, object> additionalProperties = default(IDictionary <string, object>), string description = default(string), object structure = default(object), object schema = default(object), IDictionary <string, ParameterSpecification> parameters = default(IDictionary <string, ParameterSpecification>), IList <object> annotations = default(IList <object>), DatasetFolder folder = default(DatasetFolder), object range = default(object), object firstRowAsHeader = default(object), DatasetCompression compression = default(DatasetCompression), object nullValue = default(object)) : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) { Location = location; SheetName = sheetName; Range = range; FirstRowAsHeader = firstRowAsHeader; Compression = compression; NullValue = nullValue; CustomInit(); }
/// <summary> /// Initializes a new instance of the DelimitedTextDataset class. /// </summary> /// <param name="linkedServiceName">Linked service reference.</param> /// <param name="location">The location of the delimited text /// storage.</param> /// <param name="additionalProperties">Unmatched properties from the /// message are deserialized this collection</param> /// <param name="description">Dataset description.</param> /// <param name="structure">Columns that define the structure of the /// dataset. Type: array (or Expression with resultType array), /// itemType: DatasetDataElement.</param> /// <param name="schema">Columns that define the physical type schema /// of the dataset. Type: array (or Expression with resultType array), /// itemType: DatasetSchemaDataElement.</param> /// <param name="parameters">Parameters for dataset.</param> /// <param name="annotations">List of tags that can be used for /// describing the Dataset.</param> /// <param name="folder">The folder that this Dataset is in. If not /// specified, Dataset will appear at the root level.</param> /// <param name="columnDelimiter">The column delimiter. Type: string /// (or Expression with resultType string).</param> /// <param name="rowDelimiter">The row delimiter. Type: string (or /// Expression with resultType string).</param> /// <param name="encodingName">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).</param> /// <param name="compressionLevel">The data compression method used for /// DelimitedText.</param> /// <param name="quoteChar">The quote character. Type: string (or /// Expression with resultType string).</param> /// <param name="escapeChar">The escape character. Type: string (or /// Expression with resultType string).</param> /// <param name="firstRowAsHeader">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).</param> /// <param name="nullValue">The null value string. Type: string (or /// Expression with resultType string).</param> public DelimitedTextDataset(LinkedServiceReference linkedServiceName, DatasetLocation location, IDictionary <string, object> additionalProperties = default(IDictionary <string, object>), string description = default(string), object structure = default(object), object schema = default(object), IDictionary <string, ParameterSpecification> parameters = default(IDictionary <string, ParameterSpecification>), IList <object> annotations = default(IList <object>), DatasetFolder folder = default(DatasetFolder), object columnDelimiter = default(object), object rowDelimiter = default(object), object encodingName = default(object), object compressionCodec = default(object), object compressionLevel = default(object), object quoteChar = default(object), object escapeChar = default(object), object firstRowAsHeader = default(object), object nullValue = default(object)) : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) { Location = location; ColumnDelimiter = columnDelimiter; RowDelimiter = rowDelimiter; EncodingName = encodingName; CompressionCodec = compressionCodec; CompressionLevel = compressionLevel; QuoteChar = quoteChar; EscapeChar = escapeChar; FirstRowAsHeader = firstRowAsHeader; NullValue = nullValue; CustomInit(); }