com.pulumi.gcp.compute.kotlin.outputs.SubnetworkSecondaryIpRange.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.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property ipCidrRange The range of IP addresses belonging to this subnetwork secondary
* range. Provide this property when you create the subnetwork.
* Ranges must be unique and non-overlapping with all primary and
* secondary IP ranges within a network. Only IPv4 is supported.
* @property rangeName The name associated with this subnetwork secondary range, used
* when adding an alias IP range to a VM instance. The name must
* be 1-63 characters long, and comply with RFC1035. The name
* must be unique within the subnetwork.
*/
public data class SubnetworkSecondaryIpRange(
public val ipCidrRange: String,
public val rangeName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.SubnetworkSecondaryIpRange): SubnetworkSecondaryIpRange = SubnetworkSecondaryIpRange(
ipCidrRange = javaType.ipCidrRange(),
rangeName = javaType.rangeName(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy