com.pulumi.cloudflare.kotlin.outputs.ZoneLockdownConfiguration.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property target The request property to target. Available values: `ip`, `ip_range`.
* @property value The value to target. Depends on target's type. IP addresses should just be standard IPv4/IPv6 notation i.e. `192.0.2.1` or `2001:db8::/32` and IP ranges in CIDR format i.e. `192.0.2.0/24`.
*/
public data class ZoneLockdownConfiguration(
public val target: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.ZoneLockdownConfiguration): ZoneLockdownConfiguration = ZoneLockdownConfiguration(
target = javaType.target(),
`value` = javaType.`value`(),
)
}
}