com.pulumi.azurenative.storage.kotlin.outputs.SignedIdentifierResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accessPolicy Access policy
* @property id An unique identifier of the stored access policy.
*/
public data class SignedIdentifierResponse(
public val accessPolicy: AccessPolicyResponse? = null,
public val id: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.storage.outputs.SignedIdentifierResponse): SignedIdentifierResponse = SignedIdentifierResponse(
accessPolicy = javaType.accessPolicy().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.storage.kotlin.outputs.AccessPolicyResponse.Companion.toKotlin(args0)
})
}).orElse(null),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
)
}
}