com.pulumi.azure.storage.kotlin.outputs.DataLakeGen2PathAce.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 id Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for `user` or `group` entries.
* @property permissions
* @property scope Specifies whether the ACE represents an `access` entry or a `default` entry. Default value is `access`.
* @property type Specifies the type of entry. Can be `user`, `group`, `mask` or `other`.
*/
public data class DataLakeGen2PathAce(
public val id: String? = null,
public val permissions: String,
public val scope: String? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.DataLakeGen2PathAce):
DataLakeGen2PathAce = DataLakeGen2PathAce(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
permissions = javaType.permissions(),
scope = javaType.scope().map({ args0 -> args0 }).orElse(null),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy