
com.pulumi.azurenative.devices.kotlin.outputs.PrivateEndpointConnectionResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.devices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The private endpoint connection of an IotHub
* @property id The resource identifier.
* @property name The resource name.
* @property properties The properties of a private endpoint connection
* @property systemData Metadata pertaining to creation and last modification of the resource.
* @property type The resource type.
*/
public data class PrivateEndpointConnectionResponse(
public val id: String,
public val name: String,
public val properties: PrivateEndpointConnectionPropertiesResponse,
public val systemData: SystemDataResponse? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.devices.outputs.PrivateEndpointConnectionResponse): PrivateEndpointConnectionResponse = PrivateEndpointConnectionResponse(
id = javaType.id(),
name = javaType.name(),
properties = javaType.properties().let({ args0 ->
com.pulumi.azurenative.devices.kotlin.outputs.PrivateEndpointConnectionPropertiesResponse.Companion.toKotlin(args0)
}),
systemData = javaType.systemData().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.devices.kotlin.outputs.SystemDataResponse.Companion.toKotlin(args0)
})
}).orElse(null),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy