All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.appplatform.kotlin.outputs.SpringCloudGatewayRouteConfigRoute.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appplatform.kotlin.outputs

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property classificationTags Specifies the classification tags which will be applied to methods in the generated OpenAPI documentation.
 * @property description Specifies the description which will be applied to methods in the generated OpenAPI documentation.
 * @property filters Specifies a list of filters which are used to modify the request before sending it to the target endpoint, or the received response.
 * @property order Specifies the route processing order.
 * @property predicates 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.
 * @property ssoValidationEnabled Should the sso validation be enabled?
 * @property title Specifies the title which will be applied to methods in the generated OpenAPI documentation.
 * @property tokenRelay Should pass currently-authenticated user's identity token to application service?
 * @property uri Specifies the full uri which will override `appName`.
 */
public data class SpringCloudGatewayRouteConfigRoute(
    public val classificationTags: List? = null,
    public val description: String? = null,
    public val filters: List? = null,
    public val order: Int,
    public val predicates: List? = null,
    public val ssoValidationEnabled: Boolean? = null,
    public val title: String? = null,
    public val tokenRelay: Boolean? = null,
    public val uri: String? = null,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.appplatform.outputs.SpringCloudGatewayRouteConfigRoute):
            SpringCloudGatewayRouteConfigRoute = SpringCloudGatewayRouteConfigRoute(
            classificationTags = javaType.classificationTags().map({ args0 -> args0 }),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            filters = javaType.filters().map({ args0 -> args0 }),
            order = javaType.order(),
            predicates = javaType.predicates().map({ args0 -> args0 }),
            ssoValidationEnabled = javaType.ssoValidationEnabled().map({ args0 -> args0 }).orElse(null),
            title = javaType.title().map({ args0 -> args0 }).orElse(null),
            tokenRelay = javaType.tokenRelay().map({ args0 -> args0 }).orElse(null),
            uri = javaType.uri().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy