
com.pulumi.azurenative.managednetworkfabric.kotlin.outputs.ConnectedSubnetResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.managednetworkfabric.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Connected Subnet properties.
* @property annotation Switch configuration description.
* @property prefix Prefix of the connected Subnet.
*/
public data class ConnectedSubnetResponse(
public val `annotation`: String? = null,
public val prefix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.managednetworkfabric.outputs.ConnectedSubnetResponse): ConnectedSubnetResponse = ConnectedSubnetResponse(
`annotation` = javaType.`annotation`().map({ args0 -> args0 }).orElse(null),
prefix = javaType.prefix().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy