![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.testbase.kotlin.inputs.GetActionRequestPlainArgs.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.testbase.kotlin.inputs
import com.pulumi.azurenative.testbase.inputs.GetActionRequestPlainArgs.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 actionRequestName
* @property resourceGroupName The name of the resource group. The name is case insensitive.
* @property testBaseAccountName The resource name of the Test Base Account.
*/
public data class GetActionRequestPlainArgs(
public val actionRequestName: String,
public val resourceGroupName: String,
public val testBaseAccountName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.testbase.inputs.GetActionRequestPlainArgs =
com.pulumi.azurenative.testbase.inputs.GetActionRequestPlainArgs.builder()
.actionRequestName(actionRequestName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.testBaseAccountName(testBaseAccountName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetActionRequestPlainArgs].
*/
@PulumiTagMarker
public class GetActionRequestPlainArgsBuilder internal constructor() {
private var actionRequestName: String? = null
private var resourceGroupName: String? = null
private var testBaseAccountName: String? = null
/**
* @param value
*/
@JvmName("kkafrsbfhdbgrxhs")
public suspend fun actionRequestName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.actionRequestName = mapped
}
/**
* @param value The name of the resource group. The name is case insensitive.
*/
@JvmName("sfgedfoccscbkhyt")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value The resource name of the Test Base Account.
*/
@JvmName("ncqdkhuyxtjjshcx")
public suspend fun testBaseAccountName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.testBaseAccountName = mapped
}
internal fun build(): GetActionRequestPlainArgs = GetActionRequestPlainArgs(
actionRequestName = actionRequestName ?: throw PulumiNullFieldException("actionRequestName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
testBaseAccountName = testBaseAccountName ?: throw PulumiNullFieldException("testBaseAccountName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy