![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appplatform.kotlin.inputs.SpringCloudGatewaySsoArgs.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.SpringCloudGatewaySsoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property clientId The public identifier for the application.
* @property clientSecret The secret known only to the application and the authorization server.
* @property issuerUri The URI of Issuer Identifier.
* @property scopes It defines the specific actions applications can be allowed to do on a user's behalf.
*/
public data class SpringCloudGatewaySsoArgs(
public val clientId: Output? = null,
public val clientSecret: Output? = null,
public val issuerUri: Output? = null,
public val scopes: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appplatform.inputs.SpringCloudGatewaySsoArgs =
com.pulumi.azure.appplatform.inputs.SpringCloudGatewaySsoArgs.builder()
.clientId(clientId?.applyValue({ args0 -> args0 }))
.clientSecret(clientSecret?.applyValue({ args0 -> args0 }))
.issuerUri(issuerUri?.applyValue({ args0 -> args0 }))
.scopes(scopes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [SpringCloudGatewaySsoArgs].
*/
@PulumiTagMarker
public class SpringCloudGatewaySsoArgsBuilder internal constructor() {
private var clientId: Output? = null
private var clientSecret: Output? = null
private var issuerUri: Output? = null
private var scopes: Output>? = null
/**
* @param value The public identifier for the application.
*/
@JvmName("glmubaosiqdqimuy")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The secret known only to the application and the authorization server.
*/
@JvmName("nxayfvicshqmwbhq")
public suspend fun clientSecret(`value`: Output) {
this.clientSecret = value
}
/**
* @param value The URI of Issuer Identifier.
*/
@JvmName("qjxiantykgepdhiy")
public suspend fun issuerUri(`value`: Output) {
this.issuerUri = value
}
/**
* @param value It defines the specific actions applications can be allowed to do on a user's behalf.
*/
@JvmName("ndblhjcpkrarikmb")
public suspend fun scopes(`value`: Output>) {
this.scopes = value
}
@JvmName("cftltckrcekahnbe")
public suspend fun scopes(vararg values: Output) {
this.scopes = Output.all(values.asList())
}
/**
* @param values It defines the specific actions applications can be allowed to do on a user's behalf.
*/
@JvmName("rdqjaxsejmrbblbt")
public suspend fun scopes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy