
com.pulumi.azurenative.healthdataaiservices.kotlin.outputs.DeidServicePropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.healthdataaiservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Details of the HealthDataAIServices DeidService.
* @property privateEndpointConnections List of private endpoint connections.
* @property provisioningState The status of the last operation.
* @property publicNetworkAccess Gets or sets allow or disallow public network access to resource
* @property serviceUrl Deid service url.
*/
public data class DeidServicePropertiesResponse(
public val privateEndpointConnections: List,
public val provisioningState: String,
public val publicNetworkAccess: String? = null,
public val serviceUrl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.healthdataaiservices.outputs.DeidServicePropertiesResponse): DeidServicePropertiesResponse = DeidServicePropertiesResponse(
privateEndpointConnections = javaType.privateEndpointConnections().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthdataaiservices.kotlin.outputs.PrivateEndpointConnectionResponse.Companion.toKotlin(args0)
})
}),
provisioningState = javaType.provisioningState(),
publicNetworkAccess = javaType.publicNetworkAccess().map({ args0 -> args0 }).orElse(null),
serviceUrl = javaType.serviceUrl(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy