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

com.pulumi.awsnative.efs.kotlin.outputs.AccessPointPosixUser.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: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.efs.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.
 * @property gid The POSIX group ID used for all file system operations using this access point.
 * @property secondaryGids Secondary POSIX group IDs used for all file system operations using this access point.
 * @property uid The POSIX user ID used for all file system operations using this access point.
 */
public data class AccessPointPosixUser(
    public val gid: String,
    public val secondaryGids: List? = null,
    public val uid: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.efs.outputs.AccessPointPosixUser): AccessPointPosixUser = AccessPointPosixUser(
            gid = javaType.gid(),
            secondaryGids = javaType.secondaryGids().map({ args0 -> args0 }),
            uid = javaType.uid(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy