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

com.pulumi.azurenative.devhub.kotlin.inputs.IacTemplateDetailsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.devhub.kotlin.inputs

import com.pulumi.azurenative.devhub.inputs.IacTemplateDetailsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property count Count of the product
 * @property namingConvention Naming convention of this product
 * @property productName The name of the products.
 */
public data class IacTemplateDetailsArgs(
    public val count: Output? = null,
    public val namingConvention: Output? = null,
    public val productName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.devhub.inputs.IacTemplateDetailsArgs =
        com.pulumi.azurenative.devhub.inputs.IacTemplateDetailsArgs.builder()
            .count(count?.applyValue({ args0 -> args0 }))
            .namingConvention(namingConvention?.applyValue({ args0 -> args0 }))
            .productName(productName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [IacTemplateDetailsArgs].
 */
@PulumiTagMarker
public class IacTemplateDetailsArgsBuilder internal constructor() {
    private var count: Output? = null

    private var namingConvention: Output? = null

    private var productName: Output? = null

    /**
     * @param value Count of the product
     */
    @JvmName("ptxifyycsjoppsrk")
    public suspend fun count(`value`: Output) {
        this.count = value
    }

    /**
     * @param value Naming convention of this product
     */
    @JvmName("tejsxqlmflrrlrbf")
    public suspend fun namingConvention(`value`: Output) {
        this.namingConvention = value
    }

    /**
     * @param value The name of the products.
     */
    @JvmName("jotubiqrlvwfqffc")
    public suspend fun productName(`value`: Output) {
        this.productName = value
    }

    /**
     * @param value Count of the product
     */
    @JvmName("pwspgftwnefttjmd")
    public suspend fun count(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.count = mapped
    }

    /**
     * @param value Naming convention of this product
     */
    @JvmName("wyhjjkjxgmwcmomu")
    public suspend fun namingConvention(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.namingConvention = mapped
    }

    /**
     * @param value The name of the products.
     */
    @JvmName("ccmxlohwuirfsvrl")
    public suspend fun productName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.productName = mapped
    }

    internal fun build(): IacTemplateDetailsArgs = IacTemplateDetailsArgs(
        count = count,
        namingConvention = namingConvention,
        productName = productName,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy