![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.guestconfiguration.kotlin.inputs.GetGuestConfigurationAssignmentPlainArgs.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.guestconfiguration.kotlin.inputs
import com.pulumi.azurenative.guestconfiguration.inputs.GetGuestConfigurationAssignmentPlainArgs.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 guestConfigurationAssignmentName The guest configuration assignment name.
* @property resourceGroupName The resource group name.
* @property vmName The name of the virtual machine.
*/
public data class GetGuestConfigurationAssignmentPlainArgs(
public val guestConfigurationAssignmentName: String,
public val resourceGroupName: String,
public val vmName: String,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.guestconfiguration.inputs.GetGuestConfigurationAssignmentPlainArgs =
com.pulumi.azurenative.guestconfiguration.inputs.GetGuestConfigurationAssignmentPlainArgs.builder()
.guestConfigurationAssignmentName(guestConfigurationAssignmentName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.vmName(vmName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetGuestConfigurationAssignmentPlainArgs].
*/
@PulumiTagMarker
public class GetGuestConfigurationAssignmentPlainArgsBuilder internal constructor() {
private var guestConfigurationAssignmentName: String? = null
private var resourceGroupName: String? = null
private var vmName: String? = null
/**
* @param value The guest configuration assignment name.
*/
@JvmName("wyccsbjpwlsiwkgm")
public suspend fun guestConfigurationAssignmentName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.guestConfigurationAssignmentName = mapped
}
/**
* @param value The resource group name.
*/
@JvmName("pglbrkqljksrrigq")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value The name of the virtual machine.
*/
@JvmName("fhacbynmpemsdolh")
public suspend fun vmName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.vmName = mapped
}
internal fun build(): GetGuestConfigurationAssignmentPlainArgs =
GetGuestConfigurationAssignmentPlainArgs(
guestConfigurationAssignmentName = guestConfigurationAssignmentName ?: throw
PulumiNullFieldException("guestConfigurationAssignmentName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
vmName = vmName ?: throw PulumiNullFieldException("vmName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy