![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.discoveryengine.kotlin.inputs.ChatEngineCommonConfigArgs.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.discoveryengine.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.discoveryengine.inputs.ChatEngineCommonConfigArgs.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.
*/
public data class ChatEngineCommonConfigArgs(
public val companyName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.discoveryengine.inputs.ChatEngineCommonConfigArgs =
com.pulumi.gcp.discoveryengine.inputs.ChatEngineCommonConfigArgs.builder()
.companyName(companyName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ChatEngineCommonConfigArgs].
*/
@PulumiTagMarker
public class ChatEngineCommonConfigArgsBuilder 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.
*/
@JvmName("jblckvmrywspwiwq")
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.
*/
@JvmName("nnojojanqkpncymp")
public suspend fun companyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.companyName = mapped
}
internal fun build(): ChatEngineCommonConfigArgs = ChatEngineCommonConfigArgs(
companyName = companyName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy