com.pulumi.azure.cognitive.kotlin.inputs.GetAccountPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.cognitive.kotlin.inputs
import com.pulumi.azure.cognitive.inputs.GetAccountPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getAccount.
* @property name Specifies the name of the Cognitive Services Account.
* @property resourceGroupName Specifies the name of the resource group where the Cognitive Services Account resides.
* @property tags A mapping of tags to assigned to the resource.
*/
public data class GetAccountPlainArgs(
public val name: String,
public val resourceGroupName: String,
public val tags: Map? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.cognitive.inputs.GetAccountPlainArgs =
com.pulumi.azure.cognitive.inputs.GetAccountPlainArgs.builder()
.name(name.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.tags(tags?.let({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() })).build()
}
/**
* Builder for [GetAccountPlainArgs].
*/
@PulumiTagMarker
public class GetAccountPlainArgsBuilder internal constructor() {
private var name: String? = null
private var resourceGroupName: String? = null
private var tags: Map? = null
/**
* @param value Specifies the name of the Cognitive Services Account.
*/
@JvmName("xwqavyijqihdgemq")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.name = mapped
}
/**
* @param value Specifies the name of the resource group where the Cognitive Services Account resides.
*/
@JvmName("aeojxaomrmomnogg")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value A mapping of tags to assigned to the resource.
*/
@JvmName("qdsctajpxiamotkj")
public suspend fun tags(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.tags = mapped
}
/**
* @param values A mapping of tags to assigned to the resource.
*/
@JvmName("wbelttvxdhpnvaue")
public fun tags(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> args0 })
this.tags = mapped
}
internal fun build(): GetAccountPlainArgs = GetAccountPlainArgs(
name = name ?: throw PulumiNullFieldException("name"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
tags = tags,
)
}