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

com.pulumi.gcp.essentialcontacts.kotlin.inputs.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs.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.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.essentialcontacts.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.essentialcontacts.inputs.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property name The schema name in the source.
 * @property processorType The Doc AI processor type name.
 */
public data class DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
    public val name: Output? = null,
    public val processorType: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.essentialcontacts.inputs.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs =
        com.pulumi.gcp.essentialcontacts.inputs.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .processorType(processorType?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs].
 */
@PulumiTagMarker
public class DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgsBuilder internal constructor() {
    private var name: Output? = null

    private var processorType: Output? = null

    /**
     * @param value The schema name in the source.
     */
    @JvmName("nbupavkpuxyjkjyn")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The Doc AI processor type name.
     */
    @JvmName("mcytfhgxkrnhrycb")
    public suspend fun processorType(`value`: Output) {
        this.processorType = value
    }

    /**
     * @param value The schema name in the source.
     */
    @JvmName("ymqdqxyehereyluw")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The Doc AI processor type name.
     */
    @JvmName("kfvgnfqxueirgwuv")
    public suspend fun processorType(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.processorType = mapped
    }

    internal fun build(): DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs =
        DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
            name = name,
            processorType = processorType,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy