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

com.pulumi.gcp.looker.kotlin.inputs.InstanceCustomDomainArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.looker.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.looker.inputs.InstanceCustomDomainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property domain Domain name
 * @property state (Output)
 * Status of the custom domain.
 */
public data class InstanceCustomDomainArgs(
    public val domain: Output? = null,
    public val state: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.looker.inputs.InstanceCustomDomainArgs =
        com.pulumi.gcp.looker.inputs.InstanceCustomDomainArgs.builder()
            .domain(domain?.applyValue({ args0 -> args0 }))
            .state(state?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InstanceCustomDomainArgs].
 */
@PulumiTagMarker
public class InstanceCustomDomainArgsBuilder internal constructor() {
    private var domain: Output? = null

    private var state: Output? = null

    /**
     * @param value Domain name
     */
    @JvmName("wfgoefxnhpdwlaec")
    public suspend fun domain(`value`: Output) {
        this.domain = value
    }

    /**
     * @param value (Output)
     * Status of the custom domain.
     */
    @JvmName("porjcjqawftgdeuw")
    public suspend fun state(`value`: Output) {
        this.state = value
    }

    /**
     * @param value Domain name
     */
    @JvmName("xjlisoiwtybjxvgp")
    public suspend fun domain(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.domain = mapped
    }

    /**
     * @param value (Output)
     * Status of the custom domain.
     */
    @JvmName("ccmsfgaqoqfbpotg")
    public suspend fun state(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.state = mapped
    }

    internal fun build(): InstanceCustomDomainArgs = InstanceCustomDomainArgs(
        domain = domain,
        state = state,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy