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

com.pulumi.cloudflare.kotlin.inputs.AccessApplicationFooterLinkArgs.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.AccessApplicationFooterLinkArgs.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

/**
 *
 * @property name The name of the footer link.
 * @property url The URL of the footer link.
 */
public data class AccessApplicationFooterLinkArgs(
    public val name: Output? = null,
    public val url: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.AccessApplicationFooterLinkArgs =
        com.pulumi.cloudflare.inputs.AccessApplicationFooterLinkArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .url(url?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AccessApplicationFooterLinkArgs].
 */
@PulumiTagMarker
public class AccessApplicationFooterLinkArgsBuilder internal constructor() {
    private var name: Output? = null

    private var url: Output? = null

    /**
     * @param value The name of the footer link.
     */
    @JvmName("blxmbwlgxcogutqf")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The URL of the footer link.
     */
    @JvmName("llxbewsepsqejbgh")
    public suspend fun url(`value`: Output) {
        this.url = value
    }

    /**
     * @param value The name of the footer link.
     */
    @JvmName("oralsfoucchusgjy")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The URL of the footer link.
     */
    @JvmName("mitwjmjswtvmbhwx")
    public suspend fun url(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.url = mapped
    }

    internal fun build(): AccessApplicationFooterLinkArgs = AccessApplicationFooterLinkArgs(
        name = name,
        url = url,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy