com.pulumi.azurenative.peering.kotlin.outputs.SubResourceResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.peering.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The sub resource.
* @property id The identifier of the referenced resource.
*/
public data class SubResourceResponse(
public val id: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.peering.outputs.SubResourceResponse): SubResourceResponse = SubResourceResponse(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
)
}
}