com.pulumi.azurenative.logic.kotlin.outputs.OpenAuthenticationPolicyClaimResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.logic.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Open authentication policy claim.
* @property name The name of the claim.
* @property value The value of the claim.
*/
public data class OpenAuthenticationPolicyClaimResponse(
public val name: String? = null,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.logic.outputs.OpenAuthenticationPolicyClaimResponse): OpenAuthenticationPolicyClaimResponse = OpenAuthenticationPolicyClaimResponse(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}