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

com.pulumi.azure.storage.kotlin.outputs.LocalUserPermissionScope.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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