com.pulumi.gcp.discoveryengine.kotlin.inputs.SearchEngineSearchEngineConfigArgs.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.SearchEngineSearchEngineConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property searchAddOns The add-on that this search engine enables.
* Each value may be one of: `SEARCH_ADD_ON_LLM`.
* - - -
* @property searchTier The search feature tier of this engine. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified.
* Default value is `SEARCH_TIER_STANDARD`.
* Possible values are: `SEARCH_TIER_STANDARD`, `SEARCH_TIER_ENTERPRISE`.
*/
public data class SearchEngineSearchEngineConfigArgs(
public val searchAddOns: Output>? = null,
public val searchTier: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.discoveryengine.inputs.SearchEngineSearchEngineConfigArgs =
com.pulumi.gcp.discoveryengine.inputs.SearchEngineSearchEngineConfigArgs.builder()
.searchAddOns(searchAddOns?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.searchTier(searchTier?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SearchEngineSearchEngineConfigArgs].
*/
@PulumiTagMarker
public class SearchEngineSearchEngineConfigArgsBuilder internal constructor() {
private var searchAddOns: Output>? = null
private var searchTier: Output? = null
/**
* @param value The add-on that this search engine enables.
* Each value may be one of: `SEARCH_ADD_ON_LLM`.
* - - -
*/
@JvmName("gbwpdnnpnwrqjpap")
public suspend fun searchAddOns(`value`: Output>) {
this.searchAddOns = value
}
@JvmName("oikfjviyraepxutg")
public suspend fun searchAddOns(vararg values: Output) {
this.searchAddOns = Output.all(values.asList())
}
/**
* @param values The add-on that this search engine enables.
* Each value may be one of: `SEARCH_ADD_ON_LLM`.
* - - -
*/
@JvmName("vhhrpjlbuucmfdtt")
public suspend fun searchAddOns(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy