![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.healthcare.kotlin.outputs.GetServiceResult.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getService.
* @property accessPolicyObjectIds
* @property authenticationConfigurations An `authentication_configuration` block as defined below.
* @property corsConfigurations A `cors_configuration` block as defined below.
* @property cosmosdbKeyVaultKeyVersionlessId The versionless Key Vault Key ID for CMK encryption of the backing database.
* @property cosmosdbThroughput The provisioned throughput for the backing database.
* @property id The provider-assigned unique ID for this managed resource.
* @property kind The type of the service.
* @property location The Azure Region where the Service is located.
* @property name
* @property resourceGroupName
* @property tags A mapping of tags to assign to the resource.
*/
public data class GetServiceResult(
public val accessPolicyObjectIds: List,
public val authenticationConfigurations: List,
public val corsConfigurations: List,
public val cosmosdbKeyVaultKeyVersionlessId: String,
public val cosmosdbThroughput: Int,
public val id: String,
public val kind: String,
public val location: String,
public val name: String,
public val resourceGroupName: String,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.healthcare.outputs.GetServiceResult): GetServiceResult = GetServiceResult(
accessPolicyObjectIds = javaType.accessPolicyObjectIds().map({ args0 -> args0 }),
authenticationConfigurations = javaType.authenticationConfigurations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.healthcare.kotlin.outputs.GetServiceAuthenticationConfiguration.Companion.toKotlin(args0)
})
}),
corsConfigurations = javaType.corsConfigurations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.healthcare.kotlin.outputs.GetServiceCorsConfiguration.Companion.toKotlin(args0)
})
}),
cosmosdbKeyVaultKeyVersionlessId = javaType.cosmosdbKeyVaultKeyVersionlessId(),
cosmosdbThroughput = javaType.cosmosdbThroughput(),
id = javaType.id(),
kind = javaType.kind(),
location = javaType.location(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy