
com.pulumi.googlenative.cloudasset.v1.kotlin.inputs.GetFeedPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
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.cloudasset.v1.kotlin.inputs
import com.pulumi.googlenative.cloudasset.v1.inputs.GetFeedPlainArgs.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 feedId
* @property v1Id
* @property v1Id1
*/
public data class GetFeedPlainArgs(
public val feedId: String,
public val v1Id: String,
public val v1Id1: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.cloudasset.v1.inputs.GetFeedPlainArgs =
com.pulumi.googlenative.cloudasset.v1.inputs.GetFeedPlainArgs.builder()
.feedId(feedId.let({ args0 -> args0 }))
.v1Id(v1Id.let({ args0 -> args0 }))
.v1Id1(v1Id1.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetFeedPlainArgs].
*/
@PulumiTagMarker
public class GetFeedPlainArgsBuilder internal constructor() {
private var feedId: String? = null
private var v1Id: String? = null
private var v1Id1: String? = null
/**
* @param value
*/
@JvmName("wyugtmhijeenurng")
public suspend fun feedId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.feedId = mapped
}
/**
* @param value
*/
@JvmName("bthqgmuidetkinao")
public suspend fun v1Id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.v1Id = mapped
}
/**
* @param value
*/
@JvmName("kkcvmtayudoqbluo")
public suspend fun v1Id1(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.v1Id1 = mapped
}
internal fun build(): GetFeedPlainArgs = GetFeedPlainArgs(
feedId = feedId ?: throw PulumiNullFieldException("feedId"),
v1Id = v1Id ?: throw PulumiNullFieldException("v1Id"),
v1Id1 = v1Id1 ?: throw PulumiNullFieldException("v1Id1"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy