URLMap Path Matcher Header Action Args
data class URLMapPathMatcherHeaderActionArgs(val requestHeadersToAdds: Output<List<URLMapPathMatcherHeaderActionRequestHeadersToAddArgs>>? = null, val requestHeadersToRemoves: Output<List<String>>? = null, val responseHeadersToAdds: Output<List<URLMapPathMatcherHeaderActionResponseHeadersToAddArgs>>? = null, val responseHeadersToRemoves: Output<List<String>>? = null) : ConvertibleToJava<URLMapPathMatcherHeaderActionArgs>
Constructors
Link copied to clipboard
constructor(requestHeadersToAdds: Output<List<URLMapPathMatcherHeaderActionRequestHeadersToAddArgs>>? = null, requestHeadersToRemoves: Output<List<String>>? = null, responseHeadersToAdds: Output<List<URLMapPathMatcherHeaderActionResponseHeadersToAddArgs>>? = null, responseHeadersToRemoves: Output<List<String>>? = null)
Properties
Link copied to clipboard
val requestHeadersToAdds: Output<List<URLMapPathMatcherHeaderActionRequestHeadersToAddArgs>>? = null
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
val responseHeadersToAdds: Output<List<URLMapPathMatcherHeaderActionResponseHeadersToAddArgs>>? = null
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.