All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.appplatform.kotlin.inputs.GatewayCustomDomainPropertiesArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.appplatform.kotlin.inputs

import com.pulumi.azurenative.appplatform.inputs.GatewayCustomDomainPropertiesArgs.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

/**
 * The properties of custom domain for Spring Cloud Gateway
 * @property thumbprint The thumbprint of bound certificate.
 */
public data class GatewayCustomDomainPropertiesArgs(
    public val thumbprint: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.appplatform.inputs.GatewayCustomDomainPropertiesArgs = com.pulumi.azurenative.appplatform.inputs.GatewayCustomDomainPropertiesArgs.builder()
        .thumbprint(thumbprint?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [GatewayCustomDomainPropertiesArgs].
 */
@PulumiTagMarker
public class GatewayCustomDomainPropertiesArgsBuilder internal constructor() {
    private var thumbprint: Output? = null

    /**
     * @param value The thumbprint of bound certificate.
     */
    @JvmName("rmkwnbpbtxeroetp")
    public suspend fun thumbprint(`value`: Output) {
        this.thumbprint = value
    }

    /**
     * @param value The thumbprint of bound certificate.
     */
    @JvmName("umxdveitovgcruqo")
    public suspend fun thumbprint(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.thumbprint = mapped
    }

    internal fun build(): GatewayCustomDomainPropertiesArgs = GatewayCustomDomainPropertiesArgs(
        thumbprint = thumbprint,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy