com.pulumi.azure.storage.kotlin.outputs.GetEncryptionScopeResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getEncryptionScope.
* @property id The provider-assigned unique ID for this managed resource.
* @property keyVaultKeyId The ID of the Key Vault Key.
* @property name
* @property source The source of the Storage Encryption Scope.
* @property storageAccountId
*/
public data class GetEncryptionScopeResult(
public val id: String,
public val keyVaultKeyId: String,
public val name: String,
public val source: String,
public val storageAccountId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.GetEncryptionScopeResult): GetEncryptionScopeResult = GetEncryptionScopeResult(
id = javaType.id(),
keyVaultKeyId = javaType.keyVaultKeyId(),
name = javaType.name(),
source = javaType.source(),
storageAccountId = javaType.storageAccountId(),
)
}
}