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

com.pulumi.azure.management.kotlin.inputs.GroupPolicyAssignmentOverrideSelectorArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.management.kotlin.inputs

import com.pulumi.azure.management.inputs.GroupPolicyAssignmentOverrideSelectorArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property ins
 * @property kind Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
 * @property notIns
 */
public data class GroupPolicyAssignmentOverrideSelectorArgs(
    public val ins: Output>? = null,
    public val kind: Output? = null,
    public val notIns: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.management.inputs.GroupPolicyAssignmentOverrideSelectorArgs =
        com.pulumi.azure.management.inputs.GroupPolicyAssignmentOverrideSelectorArgs.builder()
            .ins(ins?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .kind(kind?.applyValue({ args0 -> args0 }))
            .notIns(notIns?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

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

    private var kind: Output? = null

    private var notIns: Output>? = null

    /**
     * @param value
     */
    @JvmName("ueqpwiusqndehbvp")
    public suspend fun ins(`value`: Output>) {
        this.ins = value
    }

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

    /**
     * @param values
     */
    @JvmName("eibgeynkgctqeygt")
    public suspend fun ins(values: List>) {
        this.ins = Output.all(values)
    }

    /**
     * @param value Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
     */
    @JvmName("wteodhtrptkkiljj")
    public suspend fun kind(`value`: Output) {
        this.kind = value
    }

    /**
     * @param value
     */
    @JvmName("uqooxchfpluxymmc")
    public suspend fun notIns(`value`: Output>) {
        this.notIns = value
    }

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

    /**
     * @param values
     */
    @JvmName("sraghwodwamrsvfk")
    public suspend fun notIns(values: List>) {
        this.notIns = Output.all(values)
    }

    /**
     * @param value
     */
    @JvmName("qeedptgeckrpyixc")
    public suspend fun ins(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ins = mapped
    }

    /**
     * @param values
     */
    @JvmName("fioyfbbgnykmibrw")
    public suspend fun ins(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.ins = mapped
    }

    /**
     * @param value Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
     */
    @JvmName("uykcmljekddtktle")
    public suspend fun kind(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.kind = mapped
    }

    /**
     * @param value
     */
    @JvmName("nbfyrllqphqjbkqy")
    public suspend fun notIns(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.notIns = mapped
    }

    /**
     * @param values
     */
    @JvmName("fnbkcilwkuvlqcay")
    public suspend fun notIns(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.notIns = mapped
    }

    internal fun build(): GroupPolicyAssignmentOverrideSelectorArgs =
        GroupPolicyAssignmentOverrideSelectorArgs(
            ins = ins,
            kind = kind,
            notIns = notIns,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy