
com.pulumi.googlenative.datapipelines.v1.kotlin.inputs.GetPipelinePlainArgs.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.datapipelines.v1.kotlin.inputs
import com.pulumi.googlenative.datapipelines.v1.inputs.GetPipelinePlainArgs.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 location
* @property pipelineId
* @property project
*/
public data class GetPipelinePlainArgs(
public val location: String,
public val pipelineId: String,
public val project: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.datapipelines.v1.inputs.GetPipelinePlainArgs =
com.pulumi.googlenative.datapipelines.v1.inputs.GetPipelinePlainArgs.builder()
.location(location.let({ args0 -> args0 }))
.pipelineId(pipelineId.let({ args0 -> args0 }))
.project(project?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetPipelinePlainArgs].
*/
@PulumiTagMarker
public class GetPipelinePlainArgsBuilder internal constructor() {
private var location: String? = null
private var pipelineId: String? = null
private var project: String? = null
/**
* @param value
*/
@JvmName("ijqupiowvqfmehmv")
public suspend fun location(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.location = mapped
}
/**
* @param value
*/
@JvmName("aawkpflomiwdtkvs")
public suspend fun pipelineId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.pipelineId = mapped
}
/**
* @param value
*/
@JvmName("pvorlamgsmomxcgj")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.project = mapped
}
internal fun build(): GetPipelinePlainArgs = GetPipelinePlainArgs(
location = location ?: throw PulumiNullFieldException("location"),
pipelineId = pipelineId ?: throw PulumiNullFieldException("pipelineId"),
project = project,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy