
com.pulumi.azurenative.integrationspaces.kotlin.inputs.GetApplicationPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.integrationspaces.kotlin.inputs
import com.pulumi.azurenative.integrationspaces.inputs.GetApplicationPlainArgs.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 applicationName The name of the Application
* @property resourceGroupName The name of the resource group. The name is case insensitive.
* @property spaceName The name of the space
*/
public data class GetApplicationPlainArgs(
public val applicationName: String,
public val resourceGroupName: String,
public val spaceName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.integrationspaces.inputs.GetApplicationPlainArgs =
com.pulumi.azurenative.integrationspaces.inputs.GetApplicationPlainArgs.builder()
.applicationName(applicationName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.spaceName(spaceName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetApplicationPlainArgs].
*/
@PulumiTagMarker
public class GetApplicationPlainArgsBuilder internal constructor() {
private var applicationName: String? = null
private var resourceGroupName: String? = null
private var spaceName: String? = null
/**
* @param value The name of the Application
*/
@JvmName("ddgkpvttpfnsgkqc")
public suspend fun applicationName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.applicationName = mapped
}
/**
* @param value The name of the resource group. The name is case insensitive.
*/
@JvmName("qskgicoaiqyrsftd")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value The name of the space
*/
@JvmName("tjnakputahoymcjs")
public suspend fun spaceName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.spaceName = mapped
}
internal fun build(): GetApplicationPlainArgs = GetApplicationPlainArgs(
applicationName = applicationName ?: throw PulumiNullFieldException("applicationName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
spaceName = spaceName ?: throw PulumiNullFieldException("spaceName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy