com.pulumi.gcp.pubsub.kotlin.inputs.SubscriptionCloudStorageConfigAvroConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.pubsub.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.pubsub.inputs.SubscriptionCloudStorageConfigAvroConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property useTopicSchema When true, the output Cloud Storage file will be serialized using the topic schema, if it exists.
* @property writeMetadata When true, write the subscription name, messageId, publishTime, attributes, and orderingKey as additional fields in the output.
*/
public data class SubscriptionCloudStorageConfigAvroConfigArgs(
public val useTopicSchema: Output? = null,
public val writeMetadata: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.pubsub.inputs.SubscriptionCloudStorageConfigAvroConfigArgs =
com.pulumi.gcp.pubsub.inputs.SubscriptionCloudStorageConfigAvroConfigArgs.builder()
.useTopicSchema(useTopicSchema?.applyValue({ args0 -> args0 }))
.writeMetadata(writeMetadata?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SubscriptionCloudStorageConfigAvroConfigArgs].
*/
@PulumiTagMarker
public class SubscriptionCloudStorageConfigAvroConfigArgsBuilder internal constructor() {
private var useTopicSchema: Output? = null
private var writeMetadata: Output? = null
/**
* @param value When true, the output Cloud Storage file will be serialized using the topic schema, if it exists.
*/
@JvmName("hlenukgfhaaebeej")
public suspend fun useTopicSchema(`value`: Output) {
this.useTopicSchema = value
}
/**
* @param value When true, write the subscription name, messageId, publishTime, attributes, and orderingKey as additional fields in the output.
*/
@JvmName("bnnjrlenkkfgpysx")
public suspend fun writeMetadata(`value`: Output) {
this.writeMetadata = value
}
/**
* @param value When true, the output Cloud Storage file will be serialized using the topic schema, if it exists.
*/
@JvmName("cygnhjoawptmemin")
public suspend fun useTopicSchema(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.useTopicSchema = mapped
}
/**
* @param value When true, write the subscription name, messageId, publishTime, attributes, and orderingKey as additional fields in the output.
*/
@JvmName("aicywgicbahhhlsx")
public suspend fun writeMetadata(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.writeMetadata = mapped
}
internal fun build(): SubscriptionCloudStorageConfigAvroConfigArgs =
SubscriptionCloudStorageConfigAvroConfigArgs(
useTopicSchema = useTopicSchema,
writeMetadata = writeMetadata,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy