![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.compute.kotlin.inputs.CloudServiceVaultSecretGroupArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.compute.kotlin.inputs
import com.pulumi.azurenative.compute.inputs.CloudServiceVaultSecretGroupArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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
/**
* Describes a set of certificates which are all in the same Key Vault.
* @property sourceVault The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
* @property vaultCertificates The list of key vault references in SourceVault which contain certificates.
*/
public data class CloudServiceVaultSecretGroupArgs(
public val sourceVault: Output? = null,
public val vaultCertificates: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.compute.inputs.CloudServiceVaultSecretGroupArgs =
com.pulumi.azurenative.compute.inputs.CloudServiceVaultSecretGroupArgs.builder()
.sourceVault(sourceVault?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.vaultCertificates(
vaultCertificates?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [CloudServiceVaultSecretGroupArgs].
*/
@PulumiTagMarker
public class CloudServiceVaultSecretGroupArgsBuilder internal constructor() {
private var sourceVault: Output? = null
private var vaultCertificates: Output>? = null
/**
* @param value The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
*/
@JvmName("xqatgsdpibghptbi")
public suspend fun sourceVault(`value`: Output) {
this.sourceVault = value
}
/**
* @param value The list of key vault references in SourceVault which contain certificates.
*/
@JvmName("twrkkpkjbklohkjv")
public suspend fun vaultCertificates(`value`: Output>) {
this.vaultCertificates = value
}
@JvmName("oapolfljtjxiomfm")
public suspend fun vaultCertificates(vararg values: Output) {
this.vaultCertificates = Output.all(values.asList())
}
/**
* @param values The list of key vault references in SourceVault which contain certificates.
*/
@JvmName("fvmdpdtamfnvkyqy")
public suspend fun vaultCertificates(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy