com.pulumi.cloudflare.kotlin.inputs.AddressMapIpArgs.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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.AddressMapIpArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property ip An IPv4 or IPv6 address.
*/
public data class AddressMapIpArgs(
public val ip: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.AddressMapIpArgs =
com.pulumi.cloudflare.inputs.AddressMapIpArgs.builder()
.ip(ip.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AddressMapIpArgs].
*/
@PulumiTagMarker
public class AddressMapIpArgsBuilder internal constructor() {
private var ip: Output? = null
/**
* @param value An IPv4 or IPv6 address.
*/
@JvmName("ywkswdgqwraoytdb")
public suspend fun ip(`value`: Output) {
this.ip = value
}
/**
* @param value An IPv4 or IPv6 address.
*/
@JvmName("qvbclyrvqhrymlqx")
public suspend fun ip(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.ip = mapped
}
internal fun build(): AddressMapIpArgs = AddressMapIpArgs(
ip = ip ?: throw PulumiNullFieldException("ip"),
)
}