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

com.pulumi.gcp.compute.kotlin.inputs.ReservationShareSettingsProjectMapArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.ReservationShareSettingsProjectMapArgs.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 id The identifier for this object. Format specified above.
 * @property projectId The project id/number, should be same as the key of this project config in the project map.
 */
public data class ReservationShareSettingsProjectMapArgs(
    public val id: Output,
    public val projectId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.ReservationShareSettingsProjectMapArgs =
        com.pulumi.gcp.compute.inputs.ReservationShareSettingsProjectMapArgs.builder()
            .id(id.applyValue({ args0 -> args0 }))
            .projectId(projectId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ReservationShareSettingsProjectMapArgs].
 */
@PulumiTagMarker
public class ReservationShareSettingsProjectMapArgsBuilder internal constructor() {
    private var id: Output? = null

    private var projectId: Output? = null

    /**
     * @param value The identifier for this object. Format specified above.
     */
    @JvmName("ofoimlvguclnjgio")
    public suspend fun id(`value`: Output) {
        this.id = value
    }

    /**
     * @param value The project id/number, should be same as the key of this project config in the project map.
     */
    @JvmName("solchyhofcfiiauc")
    public suspend fun projectId(`value`: Output) {
        this.projectId = value
    }

    /**
     * @param value The identifier for this object. Format specified above.
     */
    @JvmName("onhxcgabtapjscvi")
    public suspend fun id(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.id = mapped
    }

    /**
     * @param value The project id/number, should be same as the key of this project config in the project map.
     */
    @JvmName("bonhifkwtokjqimq")
    public suspend fun projectId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.projectId = mapped
    }

    internal fun build(): ReservationShareSettingsProjectMapArgs =
        ReservationShareSettingsProjectMapArgs(
            id = id ?: throw PulumiNullFieldException("id"),
            projectId = projectId,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy