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

com.pulumi.gcp.discoveryengine.kotlin.inputs.SearchEngineCommonConfigArgs.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.discoveryengine.kotlin.inputs

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

/**
 *
 * @property companyName The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.cd
 */
public data class SearchEngineCommonConfigArgs(
    public val companyName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.discoveryengine.inputs.SearchEngineCommonConfigArgs =
        com.pulumi.gcp.discoveryengine.inputs.SearchEngineCommonConfigArgs.builder()
            .companyName(companyName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SearchEngineCommonConfigArgs].
 */
@PulumiTagMarker
public class SearchEngineCommonConfigArgsBuilder internal constructor() {
    private var companyName: Output? = null

    /**
     * @param value The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.cd
     */
    @JvmName("relugjmbwbcuuimn")
    public suspend fun companyName(`value`: Output) {
        this.companyName = value
    }

    /**
     * @param value The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.cd
     */
    @JvmName("qilqhuhtsbmayjep")
    public suspend fun companyName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.companyName = mapped
    }

    internal fun build(): SearchEngineCommonConfigArgs = SearchEngineCommonConfigArgs(
        companyName = companyName,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy