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

com.pulumi.azure.appconfiguration.kotlin.inputs.GetConfigurationKeysPlainArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appconfiguration.kotlin.inputs

import com.pulumi.azure.appconfiguration.inputs.GetConfigurationKeysPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getConfigurationKeys.
 * @property configurationStoreId Specifies the id of the App Configuration.
 * @property key The name of the App Configuration Keys to look up.
 * @property label The label of the App Configuration Keys tp look up.
 */
public data class GetConfigurationKeysPlainArgs(
    public val configurationStoreId: String,
    public val key: String? = null,
    public val label: String? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.appconfiguration.inputs.GetConfigurationKeysPlainArgs =
        com.pulumi.azure.appconfiguration.inputs.GetConfigurationKeysPlainArgs.builder()
            .configurationStoreId(configurationStoreId.let({ args0 -> args0 }))
            .key(key?.let({ args0 -> args0 }))
            .label(label?.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetConfigurationKeysPlainArgs].
 */
@PulumiTagMarker
public class GetConfigurationKeysPlainArgsBuilder internal constructor() {
    private var configurationStoreId: String? = null

    private var key: String? = null

    private var label: String? = null

    /**
     * @param value Specifies the id of the App Configuration.
     */
    @JvmName("xcmxlirggxbyfxfy")
    public suspend fun configurationStoreId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.configurationStoreId = mapped
    }

    /**
     * @param value The name of the App Configuration Keys to look up.
     */
    @JvmName("twmjwohmryijkbob")
    public suspend fun key(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.key = mapped
    }

    /**
     * @param value The label of the App Configuration Keys tp look up.
     */
    @JvmName("tcrinipenbkfvcbr")
    public suspend fun label(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.label = mapped
    }

    internal fun build(): GetConfigurationKeysPlainArgs = GetConfigurationKeysPlainArgs(
        configurationStoreId = configurationStoreId ?: throw
            PulumiNullFieldException("configurationStoreId"),
        key = key,
        label = label,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy