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

com.pulumi.googlenative.compute.v1.kotlin.inputs.GetSslCertificatePlainArgs.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.compute.v1.kotlin.inputs

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

/**
 * Builder for [GetSslCertificatePlainArgs].
 */
@PulumiTagMarker
public class GetSslCertificatePlainArgsBuilder internal constructor() {
    private var project: String? = null

    private var sslCertificate: String? = null

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

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

    internal fun build(): GetSslCertificatePlainArgs = GetSslCertificatePlainArgs(
        project = project,
        sslCertificate = sslCertificate ?: throw PulumiNullFieldException("sslCertificate"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy