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

com.pulumi.gcp.vertex.kotlin.inputs.AiFeatureOnlineStoreEmbeddingManagementArgs.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.vertex.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreEmbeddingManagementArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property enabled Enable embedding management.
 */
public data class AiFeatureOnlineStoreEmbeddingManagementArgs(
    public val enabled: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreEmbeddingManagementArgs =
        com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreEmbeddingManagementArgs.builder()
            .enabled(enabled?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AiFeatureOnlineStoreEmbeddingManagementArgs].
 */
@PulumiTagMarker
public class AiFeatureOnlineStoreEmbeddingManagementArgsBuilder internal constructor() {
    private var enabled: Output? = null

    /**
     * @param value Enable embedding management.
     */
    @JvmName("hscfpidblgprxwju")
    public suspend fun enabled(`value`: Output) {
        this.enabled = value
    }

    /**
     * @param value Enable embedding management.
     */
    @JvmName("rpdelujwxthulwcm")
    public suspend fun enabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enabled = mapped
    }

    internal fun build(): AiFeatureOnlineStoreEmbeddingManagementArgs =
        AiFeatureOnlineStoreEmbeddingManagementArgs(
            enabled = enabled,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy