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

com.pulumi.gcp.cloudasset.kotlin.inputs.ProjectFeedFeedOutputConfigArgs.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.cloudasset.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.cloudasset.inputs.ProjectFeedFeedOutputConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property pubsubDestination Destination on Cloud Pubsub.
 * Structure is documented below.
 */
public data class ProjectFeedFeedOutputConfigArgs(
    public val pubsubDestination: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.cloudasset.inputs.ProjectFeedFeedOutputConfigArgs =
        com.pulumi.gcp.cloudasset.inputs.ProjectFeedFeedOutputConfigArgs.builder()
            .pubsubDestination(
                pubsubDestination.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [ProjectFeedFeedOutputConfigArgs].
 */
@PulumiTagMarker
public class ProjectFeedFeedOutputConfigArgsBuilder internal constructor() {
    private var pubsubDestination: Output? = null

    /**
     * @param value Destination on Cloud Pubsub.
     * Structure is documented below.
     */
    @JvmName("ehrytxeyxpatrxqw")
    public suspend fun pubsubDestination(`value`: Output) {
        this.pubsubDestination = value
    }

    /**
     * @param value Destination on Cloud Pubsub.
     * Structure is documented below.
     */
    @JvmName("eaumbnlvxiyieyhs")
    public suspend fun pubsubDestination(`value`: ProjectFeedFeedOutputConfigPubsubDestinationArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.pubsubDestination = mapped
    }

    /**
     * @param argument Destination on Cloud Pubsub.
     * Structure is documented below.
     */
    @JvmName("oxmhyvorprmpxpau")
    public suspend fun pubsubDestination(argument: suspend ProjectFeedFeedOutputConfigPubsubDestinationArgsBuilder.() -> Unit) {
        val toBeMapped = ProjectFeedFeedOutputConfigPubsubDestinationArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.pubsubDestination = mapped
    }

    internal fun build(): ProjectFeedFeedOutputConfigArgs = ProjectFeedFeedOutputConfigArgs(
        pubsubDestination = pubsubDestination ?: throw PulumiNullFieldException("pubsubDestination"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy