All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.keyvault.kotlin.outputs.KeyReleasePolicyResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.keyvault.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property contentType Content type and version of key release policy
 * @property data Blob encoding the policy rules under which the key can be released.
 */
public data class KeyReleasePolicyResponse(
    public val contentType: String? = null,
    public val `data`: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.keyvault.outputs.KeyReleasePolicyResponse): KeyReleasePolicyResponse = KeyReleasePolicyResponse(
            contentType = javaType.contentType().map({ args0 -> args0 }).orElse(null),
            `data` = javaType.`data`().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy