URLMap Header Action Args
data class URLMapHeaderActionArgs(val requestHeadersToAdds: Output<List<URLMapHeaderActionRequestHeadersToAddArgs>>? = null, val requestHeadersToRemoves: Output<List<String>>? = null, val responseHeadersToAdds: Output<List<URLMapHeaderActionResponseHeadersToAddArgs>>? = null, val responseHeadersToRemoves: Output<List<String>>? = null) : ConvertibleToJava<URLMapHeaderActionArgs>
Constructors
Link copied to clipboard
constructor(requestHeadersToAdds: Output<List<URLMapHeaderActionRequestHeadersToAddArgs>>? = null, requestHeadersToRemoves: Output<List<String>>? = null, responseHeadersToAdds: Output<List<URLMapHeaderActionResponseHeadersToAddArgs>>? = null, responseHeadersToRemoves: Output<List<String>>? = null)
Properties
Link copied to clipboard
Headers to add to a matching request prior to forwarding the request to the backendService. Structure is documented below.
Link copied to clipboard
A list of header names for headers that need to be removed from the request prior to forwarding the request to the backendService.
Link copied to clipboard
Headers to add the response prior to sending the response back to the client. Structure is documented below.
Link copied to clipboard
A list of header names for headers that need to be removed from the response prior to sending the response back to the client.