RestSinkArgs

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

A copy activity Rest service Sink.

Constructors

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

Properties

Link copied to clipboard
val additionalHeaders: Output<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
val disableMetricsCollection: Output<Any>? = null

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

Link copied to clipboard
val httpCompressionType: Output<Any>? = null

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: Output<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
val maxConcurrentConnections: Output<Any>? = null

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

Link copied to clipboard
val requestInterval: Output<Any>? = null

The time to await before sending next request, in milliseconds

Link copied to clipboard
val requestMethod: Output<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: Output<Any>? = null

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

Link copied to clipboard
val sinkRetryWait: Output<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
val type: Output<String>

Copy sink type. Expected value is 'RestSink'.

Link copied to clipboard
val writeBatchSize: Output<Any>? = null

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

Link copied to clipboard
val writeBatchTimeout: Output<Any>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): RestSinkArgs