com.pulumi.azurenative.cache.kotlin.outputs.PrivateEndpointResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.cache.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The Private Endpoint resource.
* @property id The ARM identifier for Private Endpoint
*/
public data class PrivateEndpointResponse(
public val id: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.cache.outputs.PrivateEndpointResponse): PrivateEndpointResponse = PrivateEndpointResponse(
id = javaType.id(),
)
}
}