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

com.pulumi.gcp.netapp.kotlin.inputs.VolumeExportPolicyArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.netapp.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.netapp.inputs.VolumeExportPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property rules Export rules (up to 5) control NFS volume access.
 * Structure is documented below.
 */
public data class VolumeExportPolicyArgs(
    public val rules: Output>,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.netapp.inputs.VolumeExportPolicyArgs =
        com.pulumi.gcp.netapp.inputs.VolumeExportPolicyArgs.builder()
            .rules(
                rules.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [VolumeExportPolicyArgs].
 */
@PulumiTagMarker
public class VolumeExportPolicyArgsBuilder internal constructor() {
    private var rules: Output>? = null

    /**
     * @param value Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("gatdnnklratlgrfa")
    public suspend fun rules(`value`: Output>) {
        this.rules = value
    }

    @JvmName("osybayrsjwgojkbe")
    public suspend fun rules(vararg values: Output) {
        this.rules = Output.all(values.asList())
    }

    /**
     * @param values Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("yhkxpkgkwrcucjbu")
    public suspend fun rules(values: List>) {
        this.rules = Output.all(values)
    }

    /**
     * @param value Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("poxrrsaqktrwgxdn")
    public suspend fun rules(`value`: List) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.rules = mapped
    }

    /**
     * @param argument Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("ntiufncwwvcedvtu")
    public suspend fun rules(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            VolumeExportPolicyRuleArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param argument Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("pfphnlsmjdmfvdon")
    public suspend fun rules(vararg argument: suspend VolumeExportPolicyRuleArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            VolumeExportPolicyRuleArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param argument Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("mbbpmxrubndovyxa")
    public suspend fun rules(argument: suspend VolumeExportPolicyRuleArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(VolumeExportPolicyRuleArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param values Export rules (up to 5) control NFS volume access.
     * Structure is documented below.
     */
    @JvmName("jsjrysyhehhngjcx")
    public suspend fun rules(vararg values: VolumeExportPolicyRuleArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.rules = mapped
    }

    internal fun build(): VolumeExportPolicyArgs = VolumeExportPolicyArgs(
        rules = rules ?: throw PulumiNullFieldException("rules"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy