com.pulumi.aws.transfer.kotlin.inputs.AccessPosixProfileArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.transfer.kotlin.inputs
import com.pulumi.aws.transfer.inputs.AccessPosixProfileArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property gid The POSIX group ID used for all EFS operations by this user.
* @property secondaryGids The secondary POSIX group IDs used for all EFS operations by this user.
* @property uid The POSIX user ID used for all EFS operations by this user.
*/
public data class AccessPosixProfileArgs(
public val gid: Output,
public val secondaryGids: Output>? = null,
public val uid: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.transfer.inputs.AccessPosixProfileArgs =
com.pulumi.aws.transfer.inputs.AccessPosixProfileArgs.builder()
.gid(gid.applyValue({ args0 -> args0 }))
.secondaryGids(secondaryGids?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.uid(uid.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AccessPosixProfileArgs].
*/
@PulumiTagMarker
public class AccessPosixProfileArgsBuilder internal constructor() {
private var gid: Output? = null
private var secondaryGids: Output>? = null
private var uid: Output? = null
/**
* @param value The POSIX group ID used for all EFS operations by this user.
*/
@JvmName("acxpkdjnayfcskwg")
public suspend fun gid(`value`: Output) {
this.gid = value
}
/**
* @param value The secondary POSIX group IDs used for all EFS operations by this user.
*/
@JvmName("otvigethdvtcjepb")
public suspend fun secondaryGids(`value`: Output>) {
this.secondaryGids = value
}
@JvmName("ugjbssmcfrlrbvri")
public suspend fun secondaryGids(vararg values: Output) {
this.secondaryGids = Output.all(values.asList())
}
/**
* @param values The secondary POSIX group IDs used for all EFS operations by this user.
*/
@JvmName("xfdketvbermyhjjo")
public suspend fun secondaryGids(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy