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

com.pulumi.azurenative.quota.kotlin.inputs.GroupQuotasEntityBaseArgs.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.quota.kotlin.inputs

import com.pulumi.azurenative.quota.inputs.GroupQuotasEntityBaseArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 * Properties and filters for ShareQuota. The request parameter is optional, if there are no filters specified.
 * @property additionalAttributes Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
 * @property displayName Display name of the GroupQuota entity.
 */
public data class GroupQuotasEntityBaseArgs(
    public val additionalAttributes: Output? = null,
    public val displayName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.quota.inputs.GroupQuotasEntityBaseArgs =
        com.pulumi.azurenative.quota.inputs.GroupQuotasEntityBaseArgs.builder()
            .additionalAttributes(
                additionalAttributes?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .displayName(displayName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [GroupQuotasEntityBaseArgs].
 */
@PulumiTagMarker
public class GroupQuotasEntityBaseArgsBuilder internal constructor() {
    private var additionalAttributes: Output? = null

    private var displayName: Output? = null

    /**
     * @param value Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
     */
    @JvmName("irpdcuktxtbghalj")
    public suspend fun additionalAttributes(`value`: Output) {
        this.additionalAttributes = value
    }

    /**
     * @param value Display name of the GroupQuota entity.
     */
    @JvmName("dvvvpetrtttvlrkb")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
     */
    @JvmName("mydmaaiiqhoavjts")
    public suspend fun additionalAttributes(`value`: AdditionalAttributesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.additionalAttributes = mapped
    }

    /**
     * @param argument Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
     */
    @JvmName("kurfxjfjhdeylgrk")
    public suspend fun additionalAttributes(argument: suspend AdditionalAttributesArgsBuilder.() -> Unit) {
        val toBeMapped = AdditionalAttributesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.additionalAttributes = mapped
    }

    /**
     * @param value Display name of the GroupQuota entity.
     */
    @JvmName("sfbnwgeoqwpgnepu")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    internal fun build(): GroupQuotasEntityBaseArgs = GroupQuotasEntityBaseArgs(
        additionalAttributes = additionalAttributes,
        displayName = displayName,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy