
com.pulumi.azurenative.recoveryservices.kotlin.outputs.PrivateEndpointConnectionResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Private Endpoint Connection Response Properties
* @property groupIds Group Ids for the Private Endpoint
* @property privateEndpoint Gets or sets private endpoint associated with the private endpoint connection
* @property privateLinkServiceConnectionState Gets or sets private link service connection state
* @property provisioningState Gets or sets provisioning state of the private endpoint connection
*/
public data class PrivateEndpointConnectionResponse(
public val groupIds: List? = null,
public val privateEndpoint: PrivateEndpointResponse? = null,
public val privateLinkServiceConnectionState: PrivateLinkServiceConnectionStateResponse? = null,
public val provisioningState: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.recoveryservices.outputs.PrivateEndpointConnectionResponse): PrivateEndpointConnectionResponse = PrivateEndpointConnectionResponse(
groupIds = javaType.groupIds().map({ args0 -> args0 }),
privateEndpoint = javaType.privateEndpoint().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.recoveryservices.kotlin.outputs.PrivateEndpointResponse.Companion.toKotlin(args0)
})
}).orElse(null),
privateLinkServiceConnectionState = javaType.privateLinkServiceConnectionState().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.recoveryservices.kotlin.outputs.PrivateLinkServiceConnectionStateResponse.Companion.toKotlin(args0)
})
}).orElse(null),
provisioningState = javaType.provisioningState().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy