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

com.pulumi.gcp.discoveryengine.kotlin.outputs.SearchEngineSearchEngineConfig.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.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.discoveryengine.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @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 SearchEngineSearchEngineConfig(
    public val searchAddOns: List? = null,
    public val searchTier: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.discoveryengine.outputs.SearchEngineSearchEngineConfig): SearchEngineSearchEngineConfig = SearchEngineSearchEngineConfig(
            searchAddOns = javaType.searchAddOns().map({ args0 -> args0 }),
            searchTier = javaType.searchTier().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy