![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.inputs.VirtualMachineOsProfileSecretArgs.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.compute.kotlin.inputs
import com.pulumi.azure.compute.inputs.VirtualMachineOsProfileSecretArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property sourceVaultId Specifies the ID of the Key Vault to use.
* @property vaultCertificates One or more `vault_certificates` blocks as defined below.
*/
public data class VirtualMachineOsProfileSecretArgs(
public val sourceVaultId: Output,
public val vaultCertificates: Output>? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.compute.inputs.VirtualMachineOsProfileSecretArgs =
com.pulumi.azure.compute.inputs.VirtualMachineOsProfileSecretArgs.builder()
.sourceVaultId(sourceVaultId.applyValue({ args0 -> args0 }))
.vaultCertificates(
vaultCertificates?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [VirtualMachineOsProfileSecretArgs].
*/
@PulumiTagMarker
public class VirtualMachineOsProfileSecretArgsBuilder internal constructor() {
private var sourceVaultId: Output? = null
private var vaultCertificates: Output>? =
null
/**
* @param value Specifies the ID of the Key Vault to use.
*/
@JvmName("xujmafcmfxgfvbgc")
public suspend fun sourceVaultId(`value`: Output) {
this.sourceVaultId = value
}
/**
* @param value One or more `vault_certificates` blocks as defined below.
*/
@JvmName("hpvsafcujhgbucql")
public suspend fun vaultCertificates(`value`: Output>) {
this.vaultCertificates = value
}
@JvmName("hvbfxyyndjgbvxum")
public suspend fun vaultCertificates(vararg values: Output) {
this.vaultCertificates = Output.all(values.asList())
}
/**
* @param values One or more `vault_certificates` blocks as defined below.
*/
@JvmName("vqwupkqhchpxyocu")
public suspend fun vaultCertificates(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy