com.pulumi.azure.storage.kotlin.outputs.LocalUserPermissionScope.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property permissions A `permissions` block as defined below.
* @property resourceName The container name (when `service` is set to `blob`) or the file share name (when `service` is set to `file`), used by the Storage Account Local User.
* @property service The storage service used by this Storage Account Local User. Possible values are `blob` and `file`.
*/
public data class LocalUserPermissionScope(
public val permissions: LocalUserPermissionScopePermissions,
public val resourceName: String,
public val service: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.LocalUserPermissionScope):
LocalUserPermissionScope = LocalUserPermissionScope(
permissions = javaType.permissions().let({ args0 ->
com.pulumi.azure.storage.kotlin.outputs.LocalUserPermissionScopePermissions.Companion.toKotlin(args0)
}),
resourceName = javaType.resourceName(),
service = javaType.service(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy