![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appplatform.kotlin.inputs.SpringCloudGatewayRouteConfigRouteArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appplatform.kotlin.inputs
import com.pulumi.azure.appplatform.inputs.SpringCloudGatewayRouteConfigRouteArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 SpringCloudGatewayRouteConfigRouteArgs(
public val classificationTags: Output>? = null,
public val description: Output? = null,
public val filters: Output>? = null,
public val order: Output,
public val predicates: Output>? = null,
public val ssoValidationEnabled: Output? = null,
public val title: Output? = null,
public val tokenRelay: Output? = null,
public val uri: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appplatform.inputs.SpringCloudGatewayRouteConfigRouteArgs = com.pulumi.azure.appplatform.inputs.SpringCloudGatewayRouteConfigRouteArgs.builder()
.classificationTags(classificationTags?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.description(description?.applyValue({ args0 -> args0 }))
.filters(filters?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.order(order.applyValue({ args0 -> args0 }))
.predicates(predicates?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.ssoValidationEnabled(ssoValidationEnabled?.applyValue({ args0 -> args0 }))
.title(title?.applyValue({ args0 -> args0 }))
.tokenRelay(tokenRelay?.applyValue({ args0 -> args0 }))
.uri(uri?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpringCloudGatewayRouteConfigRouteArgs].
*/
@PulumiTagMarker
public class SpringCloudGatewayRouteConfigRouteArgsBuilder internal constructor() {
private var classificationTags: Output>? = null
private var description: Output? = null
private var filters: Output>? = null
private var order: Output? = null
private var predicates: Output>? = null
private var ssoValidationEnabled: Output? = null
private var title: Output? = null
private var tokenRelay: Output? = null
private var uri: Output? = null
/**
* @param value Specifies the classification tags which will be applied to methods in the generated OpenAPI documentation.
*/
@JvmName("jsglvmmflqfadvlp")
public suspend fun classificationTags(`value`: Output>) {
this.classificationTags = value
}
@JvmName("kphijgbkiuaaqhpn")
public suspend fun classificationTags(vararg values: Output) {
this.classificationTags = Output.all(values.asList())
}
/**
* @param values Specifies the classification tags which will be applied to methods in the generated OpenAPI documentation.
*/
@JvmName("jwfhvpduyggudmph")
public suspend fun classificationTags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy