Gateway Api Route Response
data class GatewayApiRouteResponse(val description: String? = null, val filters: List<String>? = null, val order: Int? = null, val predicates: List<String>? = null, val ssoEnabled: Boolean? = null, val tags: List<String>? = null, val title: String? = null, val tokenRelay: Boolean? = null, val uri: String? = null)
API route config of the Spring Cloud Gateway
Properties
Link copied to clipboard
A description, will be applied to methods in the generated OpenAPI documentation.
Link copied to clipboard
A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
Link copied to clipboard
Enable sso validation.
Link copied to clipboard
Pass currently-authenticated user's identity token to application service, default is 'false'