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

com.pulumi.googlenative.compute.beta.kotlin.inputs.GetTargetSslProxyPlainArgs.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.beta.kotlin.inputs

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

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

    private var targetSslProxy: String? = null

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

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

    internal fun build(): GetTargetSslProxyPlainArgs = GetTargetSslProxyPlainArgs(
        project = project,
        targetSslProxy = targetSslProxy ?: throw PulumiNullFieldException("targetSslProxy"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy