com.pulumi.gcp.composer.kotlin.outputs.EnvironmentConfigWebServerNetworkAccessControlAllowedIpRange.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.composer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description A description of this ip range.
* @property value IP address or range, defined using CIDR notation, of requests that this rule applies to. Examples: 192.168.1.1 or 192.168.0.0/16 or 2001:db8::/32 or 2001:0db8:0000:0042:0000:8a2e:0370:7334. IP range prefixes should be properly truncated. For example, 1.2.3.4/24 should be truncated to 1.2.3.0/24. Similarly, for IPv6, 2001:db8::1/32 should be truncated to 2001:db8::/32.
*/
public data class EnvironmentConfigWebServerNetworkAccessControlAllowedIpRange(
public val description: String? = null,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.EnvironmentConfigWebServerNetworkAccessControlAllowedIpRange): EnvironmentConfigWebServerNetworkAccessControlAllowedIpRange =
EnvironmentConfigWebServerNetworkAccessControlAllowedIpRange(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy