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

com.pulumi.googlenative.privateca.v1.kotlin.inputs.GetCaPoolPlainArgs.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.privateca.v1.kotlin.inputs

import com.pulumi.googlenative.privateca.v1.inputs.GetCaPoolPlainArgs.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 caPoolId
 * @property location
 * @property project
 */
public data class GetCaPoolPlainArgs(
    public val caPoolId: String,
    public val location: String,
    public val project: String? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.googlenative.privateca.v1.inputs.GetCaPoolPlainArgs =
        com.pulumi.googlenative.privateca.v1.inputs.GetCaPoolPlainArgs.builder()
            .caPoolId(caPoolId.let({ args0 -> args0 }))
            .location(location.let({ args0 -> args0 }))
            .project(project?.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetCaPoolPlainArgs].
 */
@PulumiTagMarker
public class GetCaPoolPlainArgsBuilder internal constructor() {
    private var caPoolId: String? = null

    private var location: String? = null

    private var project: String? = null

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

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

    /**
     * @param value
     */
    @JvmName("chcqefppedgccenx")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.project = mapped
    }

    internal fun build(): GetCaPoolPlainArgs = GetCaPoolPlainArgs(
        caPoolId = caPoolId ?: throw PulumiNullFieldException("caPoolId"),
        location = location ?: throw PulumiNullFieldException("location"),
        project = project,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy