All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.appcomplianceautomation.kotlin.inputs.GetReportScopingQuestionsPlainArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.appcomplianceautomation.kotlin.inputs

import com.pulumi.azurenative.appcomplianceautomation.inputs.GetReportScopingQuestionsPlainArgs.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 reportName Report Name.
 */
public data class GetReportScopingQuestionsPlainArgs(
    public val reportName: String,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.appcomplianceautomation.inputs.GetReportScopingQuestionsPlainArgs =
        com.pulumi.azurenative.appcomplianceautomation.inputs.GetReportScopingQuestionsPlainArgs.builder()
            .reportName(reportName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetReportScopingQuestionsPlainArgs].
 */
@PulumiTagMarker
public class GetReportScopingQuestionsPlainArgsBuilder internal constructor() {
    private var reportName: String? = null

    /**
     * @param value Report Name.
     */
    @JvmName("ogqiusvujnrfhgdx")
    public suspend fun reportName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.reportName = mapped
    }

    internal fun build(): GetReportScopingQuestionsPlainArgs = GetReportScopingQuestionsPlainArgs(
        reportName = reportName ?: throw PulumiNullFieldException("reportName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy