HttpHeaderActionResponse

data class HttpHeaderActionResponse(val requestHeadersToAdd: List<HttpHeaderOptionResponse>, val requestHeadersToRemove: List<String>, val responseHeadersToAdd: List<HttpHeaderOptionResponse>, val responseHeadersToRemove: List<String>)

The request and response header transformations that take effect before the request is passed along to the selected backendService.

Constructors

Link copied to clipboard
fun HttpHeaderActionResponse(requestHeadersToAdd: List<HttpHeaderOptionResponse>, requestHeadersToRemove: List<String>, responseHeadersToAdd: List<HttpHeaderOptionResponse>, responseHeadersToRemove: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Headers to add to a matching request before forwarding the request to the backendService.

Link copied to clipboard

A list of header names for headers that need to be removed from the request before forwarding the request to the backendService.

Link copied to clipboard

Headers to add the response before sending the response back to the client.

Link copied to clipboard

A list of header names for headers that need to be removed from the response before sending the response back to the client.