com.pulumi.azurenative.servicebus.kotlin.outputs.SubnetResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.servicebus.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Properties supplied for Subnet
* @property id Resource ID of Virtual Network Subnet
*/
public data class SubnetResponse(
public val id: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.servicebus.outputs.SubnetResponse): SubnetResponse = SubnetResponse(
id = javaType.id(),
)
}
}