
com.pulumi.azurenative.network.kotlin.inputs.ApplicationGatewayAuthenticationCertificateArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.ApplicationGatewayAuthenticationCertificateArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Authentication certificates of an application gateway.
* @property data Certificate public data.
* @property id Resource ID.
* @property name Name of the authentication certificate that is unique within an Application Gateway.
*/
public data class ApplicationGatewayAuthenticationCertificateArgs(
public val `data`: Output? = null,
public val id: Output? = null,
public val name: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.ApplicationGatewayAuthenticationCertificateArgs =
com.pulumi.azurenative.network.inputs.ApplicationGatewayAuthenticationCertificateArgs.builder()
.`data`(`data`?.applyValue({ args0 -> args0 }))
.id(id?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ApplicationGatewayAuthenticationCertificateArgs].
*/
@PulumiTagMarker
public class ApplicationGatewayAuthenticationCertificateArgsBuilder internal constructor() {
private var `data`: Output? = null
private var id: Output? = null
private var name: Output? = null
/**
* @param value Certificate public data.
*/
@JvmName("ulmqfmerorkrwwme")
public suspend fun `data`(`value`: Output) {
this.`data` = value
}
/**
* @param value Resource ID.
*/
@JvmName("qvscmhxsrngefcma")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value Name of the authentication certificate that is unique within an Application Gateway.
*/
@JvmName("mfrpfmmqnijyapkv")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Certificate public data.
*/
@JvmName("lwhkybluroplnayu")
public suspend fun `data`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`data` = mapped
}
/**
* @param value Resource ID.
*/
@JvmName("qyvskhhrmpjuutrd")
public suspend fun id(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value Name of the authentication certificate that is unique within an Application Gateway.
*/
@JvmName("gvnhkewjtipyaqjf")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): ApplicationGatewayAuthenticationCertificateArgs =
ApplicationGatewayAuthenticationCertificateArgs(
`data` = `data`,
id = id,
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy