RestSourceResponse

data class RestSourceResponse(val additionalColumns: Any? = null, val additionalHeaders: Any? = null, val disableMetricsCollection: Any? = null, val httpRequestTimeout: Any? = null, val maxConcurrentConnections: Any? = null, val paginationRules: Any? = null, val requestBody: Any? = null, val requestInterval: Any? = null, val requestMethod: Any? = null, val sourceRetryCount: Any? = null, val sourceRetryWait: Any? = null, val type: String)

A copy activity Rest service source.

Constructors

Link copied to clipboard
constructor(additionalColumns: Any? = null, additionalHeaders: Any? = null, disableMetricsCollection: Any? = null, httpRequestTimeout: Any? = null, maxConcurrentConnections: Any? = null, paginationRules: Any? = null, requestBody: Any? = null, requestInterval: Any? = null, requestMethod: Any? = null, sourceRetryCount: Any? = null, sourceRetryWait: Any? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val additionalColumns: Any? = null

Specifies the additional columns to be added to source data. Type: key value pairs (value should be string type).

Link copied to clipboard
val additionalHeaders: Any? = null

The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string).

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
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 source data store. Type: integer (or Expression with resultType integer).

Link copied to clipboard
val paginationRules: Any? = null

The pagination rules to compose next page requests. Type: string (or Expression with resultType string).

Link copied to clipboard
val requestBody: Any? = null

The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).

Link copied to clipboard
val requestInterval: Any? = null

The time to await before sending next page request.

Link copied to clipboard
val requestMethod: Any? = null

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

Link copied to clipboard
val sourceRetryCount: Any? = null

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

Link copied to clipboard
val sourceRetryWait: Any? = null

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

Link copied to clipboard

Copy source type. Expected value is 'RestSource'.