com.pulumi.gcp.composer.kotlin.outputs.GetEnvironmentConfigWebServerNetworkAccessControlAllowedIpRange.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 GetEnvironmentConfigWebServerNetworkAccessControlAllowedIpRange(
public val description: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.GetEnvironmentConfigWebServerNetworkAccessControlAllowedIpRange): GetEnvironmentConfigWebServerNetworkAccessControlAllowedIpRange =
GetEnvironmentConfigWebServerNetworkAccessControlAllowedIpRange(
description = javaType.description(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy