com.pulumi.gcp.applicationintegration.kotlin.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgs.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.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property entries A list of parameter map entries.
* Structure is documented below.
*/
public data class AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgs(
public val entries: Output>? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.applicationintegration.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgs =
com.pulumi.gcp.applicationintegration.inputs.AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgs.builder()
.entries(
entries?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgs].
*/
@PulumiTagMarker
public class AuthConfigDecryptedCredentialOauth2ClientCredentialsTokenParamsArgsBuilder internal constructor() {
private var entries:
Output>? = null
/**
* @param value A list of parameter map entries.
* Structure is documented below.
*/
@JvmName("galmacliicmjnjnn")
public suspend fun entries(`value`: Output>) {
this.entries = value
}
@JvmName("lacrpwvgguxjduww")
public suspend fun entries(vararg values: Output) {
this.entries = Output.all(values.asList())
}
/**
* @param values A list of parameter map entries.
* Structure is documented below.
*/
@JvmName("btejqhlsbcqqdxyu")
public suspend fun entries(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy