com.pulumi.azure.healthcare.kotlin.outputs.GetDicomServiceResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.healthcare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getDicomService.
* @property authentications The `authentication` block as defined below.
* @property id The provider-assigned unique ID for this managed resource.
* @property identities
* @property location The Azure Region where the Healthcare DICOM Service is located.
* @property name
* @property privateEndpoints
* @property serviceUrl The url of the Healthcare DICOM Services.
* @property tags A map of tags assigned to the Healthcare DICOM Service.
* @property workspaceId
*/
public data class GetDicomServiceResult(
public val authentications: List,
public val id: String,
public val identities: List,
public val location: String,
public val name: String,
public val privateEndpoints: List,
public val serviceUrl: String,
public val tags: Map,
public val workspaceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.healthcare.outputs.GetDicomServiceResult):
GetDicomServiceResult = GetDicomServiceResult(
authentications = javaType.authentications().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.healthcare.kotlin.outputs.GetDicomServiceAuthentication.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
identities = javaType.identities().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.healthcare.kotlin.outputs.GetDicomServiceIdentity.Companion.toKotlin(args0)
})
}),
location = javaType.location(),
name = javaType.name(),
privateEndpoints = javaType.privateEndpoints().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.healthcare.kotlin.outputs.GetDicomServicePrivateEndpoint.Companion.toKotlin(args0)
})
}),
serviceUrl = javaType.serviceUrl(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
workspaceId = javaType.workspaceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy