com.pulumi.azure.batch.kotlin.inputs.AccountKeyVaultReferenceArgs.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.batch.kotlin.inputs
import com.pulumi.azure.batch.inputs.AccountKeyVaultReferenceArgs.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.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property id The Azure identifier of the Azure KeyVault to use.
* @property url The HTTPS URL of the Azure KeyVault to use.
*/
public data class AccountKeyVaultReferenceArgs(
public val id: Output,
public val url: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.batch.inputs.AccountKeyVaultReferenceArgs =
com.pulumi.azure.batch.inputs.AccountKeyVaultReferenceArgs.builder()
.id(id.applyValue({ args0 -> args0 }))
.url(url.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AccountKeyVaultReferenceArgs].
*/
@PulumiTagMarker
public class AccountKeyVaultReferenceArgsBuilder internal constructor() {
private var id: Output? = null
private var url: Output? = null
/**
* @param value The Azure identifier of the Azure KeyVault to use.
*/
@JvmName("uvrrsttjjjkctpak")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value The HTTPS URL of the Azure KeyVault to use.
*/
@JvmName("lxaupjhjqivmixij")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The Azure identifier of the Azure KeyVault to use.
*/
@JvmName("bcmfyrjknmqrsupw")
public suspend fun id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value The HTTPS URL of the Azure KeyVault to use.
*/
@JvmName("dnqvhqseevyvlpeo")
public suspend fun url(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.url = mapped
}
internal fun build(): AccountKeyVaultReferenceArgs = AccountKeyVaultReferenceArgs(
id = id ?: throw PulumiNullFieldException("id"),
url = url ?: throw PulumiNullFieldException("url"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy