![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.cdn.kotlin.inputs.ManagedCertificateParametersArgs.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.cdn.kotlin.inputs
import com.pulumi.azurenative.cdn.inputs.ManagedCertificateParametersArgs.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
/**
* Managed Certificate used for https
* @property type The type of the secret resource.
* Expected value is 'ManagedCertificate'.
*/
public data class ManagedCertificateParametersArgs(
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.cdn.inputs.ManagedCertificateParametersArgs =
com.pulumi.azurenative.cdn.inputs.ManagedCertificateParametersArgs.builder()
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ManagedCertificateParametersArgs].
*/
@PulumiTagMarker
public class ManagedCertificateParametersArgsBuilder internal constructor() {
private var type: Output? = null
/**
* @param value The type of the secret resource.
* Expected value is 'ManagedCertificate'.
*/
@JvmName("vnswqxlvqowyosxi")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The type of the secret resource.
* Expected value is 'ManagedCertificate'.
*/
@JvmName("pmaamdgwheuboofe")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): ManagedCertificateParametersArgs = ManagedCertificateParametersArgs(
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy