Type Alias: HttpProxyRequestParams
HttpProxyRequestParams =
object
Defined in: packages/core/src/http/HttpProxy.ts:27
An object representing the complete request parameters used to create and send the HTTP request.
Properties
data?
optionaldata:UnknownParameters
Defined in: packages/core/src/http/HttpProxy.ts:31
The request data, sent as query or body.
method
method:
string
Defined in: packages/core/src/http/HttpProxy.ts:28
The HTTP method.
options
options:
HttpAgentRequestOptions
Defined in: packages/core/src/http/HttpProxy.ts:32
The high-level request options provided by the HTTP agent.
transformedUrl
transformedUrl:
string
Defined in: packages/core/src/http/HttpProxy.ts:30
The actual URL to which to make the request, created by applying the URL transformer to the original URL.
url
url:
string
Defined in: packages/core/src/http/HttpProxy.ts:29
The original URL to which to make the request.