SpringCloudGatewayRouteConfigRoute

data class SpringCloudGatewayRouteConfigRoute(val classificationTags: List<String>? = null, val description: String? = null, val filters: List<String>? = null, val order: Int, val predicates: List<String>? = null, val ssoValidationEnabled: Boolean? = null, val title: String? = null, val tokenRelay: Boolean? = null, val uri: String? = null)

Constructors

Link copied to clipboard
constructor(classificationTags: List<String>? = null, description: String? = null, filters: List<String>? = null, order: Int, predicates: List<String>? = null, ssoValidationEnabled: Boolean? = null, title: String? = null, tokenRelay: Boolean? = null, uri: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies the classification tags which will be applied to methods in the generated OpenAPI documentation.

Link copied to clipboard
val description: String? = null

Specifies the description which will be applied to methods in the generated OpenAPI documentation.

Link copied to clipboard
val filters: List<String>? = null

Specifies a list of filters which are used to modify the request before sending it to the target endpoint, or the received response.

Link copied to clipboard
val order: Int

Specifies the route processing order.

Link copied to clipboard
val predicates: List<String>? = null

Specifies a list 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

Should the sso validation be enabled?

Link copied to clipboard
val title: String? = null

Specifies the title which will be applied to methods in the generated OpenAPI documentation.

Link copied to clipboard
val tokenRelay: Boolean? = null

Should pass currently-authenticated user's identity token to application service?

Link copied to clipboard
val uri: String? = null

Specifies the full uri which will override appName.