RestSinkResponse

data class RestSinkResponse(val additionalHeaders: Any? = null, val disableMetricsCollection: Any? = null, val httpCompressionType: Any? = null, val httpRequestTimeout: Any? = null, val maxConcurrentConnections: Any? = null, val requestInterval: Any? = null, val requestMethod: Any? = null, val sinkRetryCount: Any? = null, val sinkRetryWait: Any? = null, val type: String, val writeBatchSize: Any? = null, val writeBatchTimeout: Any? = null)

A copy activity Rest service Sink.

Constructors

Link copied to clipboard
constructor(additionalHeaders: Any? = null, disableMetricsCollection: Any? = null, httpCompressionType: Any? = null, httpRequestTimeout: Any? = null, maxConcurrentConnections: Any? = null, requestInterval: Any? = null, requestMethod: Any? = null, sinkRetryCount: Any? = null, sinkRetryWait: Any? = null, type: String, writeBatchSize: Any? = null, writeBatchTimeout: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val additionalHeaders: Any? = null

The additional HTTP headers in the request to the RESTful API. Type: key value pairs (value should be string type).

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

Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. Type: string (or Expression with resultType string).

Link copied to clipboard
val httpRequestTimeout: Any? = null

The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:01:40. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|(0-9)):(60|(0-9)).

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 requestInterval: Any? = null

The time to await before sending next request, in milliseconds

Link copied to clipboard
val requestMethod: Any? = null

The HTTP method used to call the RESTful API. The default is POST. Type: string (or Expression with resultType string).

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 'RestSink'.

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)).