Share via


SnowflakeImportCopyCommand Constructors

Definition

Overloads

SnowflakeImportCopyCommand()

Initializes a new instance of the SnowflakeImportCopyCommand class.

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

Initializes a new instance of the SnowflakeImportCopyCommand class.

SnowflakeImportCopyCommand()

Initializes a new instance of the SnowflakeImportCopyCommand class.

public SnowflakeImportCopyCommand ();
Public Sub New ()

Applies to

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

Initializes a new instance of the SnowflakeImportCopyCommand class.

public SnowflakeImportCopyCommand (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.SnowflakeImportCopyCommand : System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.DataFactory.Models.SnowflakeImportCopyCommand
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": { "FORCE": "TRUE", "LOAD_UNCERTAIN_FILES": "'FALSE'" }

Applies to