SalesforceSinkResponse

data class SalesforceSinkResponse(val disableMetricsCollection: Any? = null, val externalIdFieldName: Any? = null, val ignoreNullValues: Any? = null, val maxConcurrentConnections: Any? = null, val sinkRetryCount: Any? = null, val sinkRetryWait: Any? = null, val type: String, val writeBatchSize: Any? = null, val writeBatchTimeout: Any? = null, val writeBehavior: String? = null)

A copy activity Salesforce sink.

Constructors

Link copied to clipboard
constructor(disableMetricsCollection: Any? = null, externalIdFieldName: Any? = null, ignoreNullValues: Any? = null, maxConcurrentConnections: Any? = null, sinkRetryCount: Any? = null, sinkRetryWait: Any? = null, type: String, writeBatchSize: Any? = null, writeBatchTimeout: Any? = null, writeBehavior: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).

Link copied to clipboard

The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string).

Link copied to clipboard
val ignoreNullValues: Any? = null

The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean).

Link copied to clipboard

The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).

Link copied to clipboard
val sinkRetryCount: Any? = null

Sink retry count. Type: integer (or Expression with resultType integer).

Link copied to clipboard
val sinkRetryWait: Any? = null

Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|(0-9)):(60|(0-9)).

Link copied to clipboard

Copy sink type. Expected value is 'SalesforceSink'.

Link copied to clipboard
val writeBatchSize: Any? = null

Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.

Link copied to clipboard
val writeBatchTimeout: Any? = null

Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|(0-9)):(60|(0-9)).

Link copied to clipboard
val writeBehavior: String? = null

The write behavior for the operation. Default is Insert.