![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.inputs.LinuxVirtualMachineScaleSetSecretCertificateArgs.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.LinuxVirtualMachineScaleSetSecretCertificateArgs.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 url The Secret URL of a Key Vault Certificate.
* > **Note:** This can be sourced from the `secret_id` field within the `azure.keyvault.Certificate` Resource.
* > **Note:** The certificate must have been uploaded/created in PFX format, PEM certificates are not currently supported by Azure.
*/
public data class LinuxVirtualMachineScaleSetSecretCertificateArgs(
public val url: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.compute.inputs.LinuxVirtualMachineScaleSetSecretCertificateArgs =
com.pulumi.azure.compute.inputs.LinuxVirtualMachineScaleSetSecretCertificateArgs.builder()
.url(url.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LinuxVirtualMachineScaleSetSecretCertificateArgs].
*/
@PulumiTagMarker
public class LinuxVirtualMachineScaleSetSecretCertificateArgsBuilder internal constructor() {
private var url: Output? = null
/**
* @param value The Secret URL of a Key Vault Certificate.
* > **Note:** This can be sourced from the `secret_id` field within the `azure.keyvault.Certificate` Resource.
* > **Note:** The certificate must have been uploaded/created in PFX format, PEM certificates are not currently supported by Azure.
*/
@JvmName("ivxttfqkktalviof")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The Secret URL of a Key Vault Certificate.
* > **Note:** This can be sourced from the `secret_id` field within the `azure.keyvault.Certificate` Resource.
* > **Note:** The certificate must have been uploaded/created in PFX format, PEM certificates are not currently supported by Azure.
*/
@JvmName("oypyvcoraxdeqiti")
public suspend fun url(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.url = mapped
}
internal fun build(): LinuxVirtualMachineScaleSetSecretCertificateArgs =
LinuxVirtualMachineScaleSetSecretCertificateArgs(
url = url ?: throw PulumiNullFieldException("url"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy