Bagikan melalui


SnowflakeExportCopyCommand Constructors

Definition

Overloads

SnowflakeExportCopyCommand()

Initializes a new instance of the SnowflakeExportCopyCommand class.

SnowflakeExportCopyCommand(IDictionary<String,Object>, IDictionary<String,Object>, IDictionary<String,Object>)

Initializes a new instance of the SnowflakeExportCopyCommand class.

SnowflakeExportCopyCommand()

Initializes a new instance of the SnowflakeExportCopyCommand class.

public SnowflakeExportCopyCommand ();
Public Sub New ()

Applies to

SnowflakeExportCopyCommand(IDictionary<String,Object>, IDictionary<String,Object>, IDictionary<String,Object>)

Initializes a new instance of the SnowflakeExportCopyCommand class.

public SnowflakeExportCopyCommand (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, System.Collections.Generic.IDictionary<string,object> additionalCopyOptions = default, System.Collections.Generic.IDictionary<string,object> additionalFormatOptions = default);
new Microsoft.Azure.Management.DataFactory.Models.SnowflakeExportCopyCommand : System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.DataFactory.Models.SnowflakeExportCopyCommand
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional additionalCopyOptions As IDictionary(Of String, Object) = Nothing, Optional additionalFormatOptions As IDictionary(Of String, Object) = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

additionalCopyOptions
IDictionary<String,Object>

Additional copy options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalCopyOptions": { "DATE_FORMAT": "MM/DD/YYYY", "TIME_FORMAT": "'HH24:MI:SS.FF'" }

additionalFormatOptions
IDictionary<String,Object>

Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalFormatOptions": { "OVERWRITE": "TRUE", "MAX_FILE_SIZE": "'FALSE'" }

Applies to