com.pulumi.azure.attestation.kotlin.outputs.GetProviderResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.attestation.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getProvider.
* @property attestationUri The (Endpoint|URI) of the Attestation Service.
* @property id The provider-assigned unique ID for this managed resource.
* @property location The Azure Region where the Attestation Provider exists.
* @property name
* @property resourceGroupName
* @property tags A mapping of tags assigned to the Attestation Provider.
* @property trustModel Trust model used for the Attestation Service.
*/
public data class GetProviderResult(
public val attestationUri: String,
public val id: String,
public val location: String,
public val name: String,
public val resourceGroupName: String,
public val tags: Map,
public val trustModel: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.attestation.outputs.GetProviderResult): GetProviderResult = GetProviderResult(
attestationUri = javaType.attestationUri(),
id = javaType.id(),
location = javaType.location(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
trustModel = javaType.trustModel(),
)
}
}