
com.pulumi.gcp.compute.kotlin.outputs.RouterPeerAdvertisedIpRange.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description User-specified description for the IP range.
* @property range The IP range to advertise. The value must be a
* CIDR-formatted string.
*/
public data class RouterPeerAdvertisedIpRange(
public val description: String? = null,
public val range: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.RouterPeerAdvertisedIpRange): RouterPeerAdvertisedIpRange = RouterPeerAdvertisedIpRange(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
range = javaType.range(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy