![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.migrate.kotlin.inputs.GetAssessmentPlainArgs.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.migrate.kotlin.inputs
import com.pulumi.azurenative.migrate.inputs.GetAssessmentPlainArgs.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 assessmentName Unique name of an assessment within a project.
* @property groupName Unique name of a group within a project.
* @property projectName Name of the Azure Migrate project.
* @property resourceGroupName Name of the Azure Resource Group that project is part of.
*/
public data class GetAssessmentPlainArgs(
public val assessmentName: String,
public val groupName: String,
public val projectName: String,
public val resourceGroupName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.migrate.inputs.GetAssessmentPlainArgs =
com.pulumi.azurenative.migrate.inputs.GetAssessmentPlainArgs.builder()
.assessmentName(assessmentName.let({ args0 -> args0 }))
.groupName(groupName.let({ args0 -> args0 }))
.projectName(projectName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetAssessmentPlainArgs].
*/
@PulumiTagMarker
public class GetAssessmentPlainArgsBuilder internal constructor() {
private var assessmentName: String? = null
private var groupName: String? = null
private var projectName: String? = null
private var resourceGroupName: String? = null
/**
* @param value Unique name of an assessment within a project.
*/
@JvmName("bhssqgttpnldegnn")
public suspend fun assessmentName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.assessmentName = mapped
}
/**
* @param value Unique name of a group within a project.
*/
@JvmName("egwlvnasfsguaxjf")
public suspend fun groupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.groupName = mapped
}
/**
* @param value Name of the Azure Migrate project.
*/
@JvmName("xxmcxrshgeelsgvo")
public suspend fun projectName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.projectName = mapped
}
/**
* @param value Name of the Azure Resource Group that project is part of.
*/
@JvmName("kltcxjdydysposdx")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
internal fun build(): GetAssessmentPlainArgs = GetAssessmentPlainArgs(
assessmentName = assessmentName ?: throw PulumiNullFieldException("assessmentName"),
groupName = groupName ?: throw PulumiNullFieldException("groupName"),
projectName = projectName ?: throw PulumiNullFieldException("projectName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy