![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.portal.kotlin.inputs.GetConsoleWithLocationPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.portal.kotlin.inputs
import com.pulumi.azurenative.portal.inputs.GetConsoleWithLocationPlainArgs.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
/**
*
* @property consoleName The name of the console
* @property location The provider location
*/
public data class GetConsoleWithLocationPlainArgs(
public val consoleName: String,
public val location: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.portal.inputs.GetConsoleWithLocationPlainArgs =
com.pulumi.azurenative.portal.inputs.GetConsoleWithLocationPlainArgs.builder()
.consoleName(consoleName.let({ args0 -> args0 }))
.location(location.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetConsoleWithLocationPlainArgs].
*/
@PulumiTagMarker
public class GetConsoleWithLocationPlainArgsBuilder internal constructor() {
private var consoleName: String? = null
private var location: String? = null
/**
* @param value The name of the console
*/
@JvmName("fhmxjskyqibtifgq")
public suspend fun consoleName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.consoleName = mapped
}
/**
* @param value The provider location
*/
@JvmName("ciqvmfwdqjghovdn")
public suspend fun location(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.location = mapped
}
internal fun build(): GetConsoleWithLocationPlainArgs = GetConsoleWithLocationPlainArgs(
consoleName = consoleName ?: throw PulumiNullFieldException("consoleName"),
location = location ?: throw PulumiNullFieldException("location"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy