com.pulumi.azure.compute.kotlin.inputs.OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgs.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.OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgs.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 certificates One or more `certificate` blocks as defined below.
* @property keyVaultId The ID of the Key Vault from which all Secrets should be sourced.
*/
public data class OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgs(
public val certificates:
Output>,
public val keyVaultId: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.compute.inputs.OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgs =
com.pulumi.azure.compute.inputs.OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgs.builder()
.certificates(
certificates.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.keyVaultId(keyVaultId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgs].
*/
@PulumiTagMarker
public class OrchestratedVirtualMachineScaleSetOsProfileLinuxConfigurationSecretArgsBuilder internal
constructor() {
private var certificates:
Output>? =
null
private var keyVaultId: Output? = null
/**
* @param value One or more `certificate` blocks as defined below.
*/
@JvmName("lqbdpgbxlaqjlwbi")
public suspend
fun certificates(`value`: Output>) {
this.certificates = value
}
@JvmName("adftawyxrqirlely")
public suspend fun certificates(
vararg
values: Output,
) {
this.certificates = Output.all(values.asList())
}
/**
* @param values One or more `certificate` blocks as defined below.
*/
@JvmName("exmtpsbxqvnstdof")
public suspend
fun certificates(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy