![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessApplicationFooterLinkArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationFooterLinkArgs.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 ZeroTrustAccessApplicationFooterLinkArgs(
public val name: Output? = null,
public val url: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationFooterLinkArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationFooterLinkArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.url(url?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustAccessApplicationFooterLinkArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessApplicationFooterLinkArgsBuilder internal constructor() {
private var name: Output? = null
private var url: Output? = null
/**
* @param value The name of the footer link.
*/
@JvmName("upolgmnipryvoqgc")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The URL of the footer link.
*/
@JvmName("apgbbojvcmjdxofc")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The name of the footer link.
*/
@JvmName("jaevjihfyptvxybs")
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("atvwmiffgcceqbpj")
public suspend fun url(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.url = mapped
}
internal fun build(): ZeroTrustAccessApplicationFooterLinkArgs =
ZeroTrustAccessApplicationFooterLinkArgs(
name = name,
url = url,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy