com.pulumi.alicloud.log.kotlin.inputs.StoreIndexFullTextArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-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.alicloud.log.kotlin.inputs
import com.pulumi.alicloud.log.inputs.StoreIndexFullTextArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property caseSensitive Whether the case sensitive. Default to false.
* @property includeChinese Whether includes the chinese. Default to false.
* @property token The string of several split words, like "\r", "#"
*/
public data class StoreIndexFullTextArgs(
public val caseSensitive: Output? = null,
public val includeChinese: Output? = null,
public val token: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.alicloud.log.inputs.StoreIndexFullTextArgs =
com.pulumi.alicloud.log.inputs.StoreIndexFullTextArgs.builder()
.caseSensitive(caseSensitive?.applyValue({ args0 -> args0 }))
.includeChinese(includeChinese?.applyValue({ args0 -> args0 }))
.token(token?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StoreIndexFullTextArgs].
*/
@PulumiTagMarker
public class StoreIndexFullTextArgsBuilder internal constructor() {
private var caseSensitive: Output? = null
private var includeChinese: Output? = null
private var token: Output? = null
/**
* @param value Whether the case sensitive. Default to false.
*/
@JvmName("ogrorqimcvlighhv")
public suspend fun caseSensitive(`value`: Output) {
this.caseSensitive = value
}
/**
* @param value Whether includes the chinese. Default to false.
*/
@JvmName("toomdrffobwnfmvw")
public suspend fun includeChinese(`value`: Output) {
this.includeChinese = value
}
/**
* @param value The string of several split words, like "\r", "#"
*/
@JvmName("xdbdkynwtbyjxhki")
public suspend fun token(`value`: Output) {
this.token = value
}
/**
* @param value Whether the case sensitive. Default to false.
*/
@JvmName("lgiarymsvxmllvsq")
public suspend fun caseSensitive(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.caseSensitive = mapped
}
/**
* @param value Whether includes the chinese. Default to false.
*/
@JvmName("kudqdcepynscnwvu")
public suspend fun includeChinese(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.includeChinese = mapped
}
/**
* @param value The string of several split words, like "\r", "#"
*/
@JvmName("ocvtfkruvcsfogfq")
public suspend fun token(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.token = mapped
}
internal fun build(): StoreIndexFullTextArgs = StoreIndexFullTextArgs(
caseSensitive = caseSensitive,
includeChinese = includeChinese,
token = token,
)
}