ParquetWriteSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ParquetWriteSettings() |
Initializes a new instance of the ParquetWriteSettings class. |
ParquetWriteSettings(IDictionary<String,Object>, Object, Object) |
Initializes a new instance of the ParquetWriteSettings class. |
ParquetWriteSettings()
Initializes a new instance of the ParquetWriteSettings class.
public ParquetWriteSettings ();
Public Sub New ()
Applies to
ParquetWriteSettings(IDictionary<String,Object>, Object, Object)
Initializes a new instance of the ParquetWriteSettings class.
public ParquetWriteSettings (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, object maxRowsPerFile = default, object fileNamePrefix = default);
new Microsoft.Azure.Management.DataFactory.Models.ParquetWriteSettings : System.Collections.Generic.IDictionary<string, obj> * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.ParquetWriteSettings
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional maxRowsPerFile As Object = Nothing, Optional fileNamePrefix As Object = Nothing)
Parameters
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- maxRowsPerFile
- Object
Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- fileNamePrefix
- Object
Specifies the file name pattern <fileNamePrefix>_<fileIndex>.<fileExtension> when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
Applies to
Azure SDK for .NET