HttpReadSettings Class
Http read settings.
Constructor
HttpReadSettings(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
max_concurrent_connections
|
The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). |
|
disable_metrics_collection
|
If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean). |
|
request_method
|
The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string). |
|
request_body
|
The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string). |
|
additional_headers
|
The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string). |
|
request_timeout
|
Specifies the timeout for a HTTP client to get HTTP response from HTTP server. Type: string (or Expression with resultType string). |
|
additional_columns
|
Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). |
|
type
|
The read setting type. Required. Default value is "HttpReadSettings". |
Attributes
additional_columns
array of objects(AdditionalColumns) (or Expression with resultType array of objects).
additional_columns: Any | None
additional_headers
string (or Expression with resultType string).
additional_headers: Any | None
request_body
string (or Expression with resultType string).
request_body: Any | None
request_method
string (or Expression with resultType string).
request_method: Any | None
request_timeout
string (or Expression with resultType string).
request_timeout: Any | None
type
The read setting type. Required. Default value is "HttpReadSettings".
type: Literal['HttpReadSettings']