com.pulumi.gcp.applicationintegration.kotlin.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.applicationintegration.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.applicationintegration.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property literalValue Passing a literal value
* Structure is documented below.
*/
public data class AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs(
public val literalValue: Output? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.applicationintegration.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs =
com.pulumi.gcp.applicationintegration.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs.builder()
.literalValue(literalValue?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs].
*/
@PulumiTagMarker
public class AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgsBuilder
internal constructor() {
private var literalValue:
Output? =
null
/**
* @param value Passing a literal value
* Structure is documented below.
*/
@JvmName("undjtydlmexxkqjb")
public suspend fun literalValue(`value`: Output) {
this.literalValue = value
}
/**
* @param value Passing a literal value
* Structure is documented below.
*/
@JvmName("tcxbhtsxeasstxlh")
public suspend fun literalValue(`value`: AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueLiteralValueArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.literalValue = mapped
}
/**
* @param argument Passing a literal value
* Structure is documented below.
*/
@JvmName("civcvrckevyxedxb")
public suspend fun literalValue(argument: suspend AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueLiteralValueArgsBuilder.() -> Unit) {
val toBeMapped =
AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueLiteralValueArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.literalValue = mapped
}
internal fun build(): AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs =
AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsEntryValueArgs(
literalValue = literalValue,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy