com.pulumi.gcp.vertex.kotlin.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgs.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.vertex.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property featureGroups List of features that need to be synced to Online Store.
* Structure is documented below.
*/
public data class AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgs(
public val featureGroups: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgs =
com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgs.builder()
.featureGroups(
featureGroups.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgs].
*/
@PulumiTagMarker
public class AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceArgsBuilder internal constructor() {
private var featureGroups:
Output>? = null
/**
* @param value List of features that need to be synced to Online Store.
* Structure is documented below.
*/
@JvmName("htiaukmlkwqmqvqa")
public suspend fun featureGroups(`value`: Output>) {
this.featureGroups = value
}
@JvmName("bfbqhyytprdclset")
public suspend fun featureGroups(vararg values: Output) {
this.featureGroups = Output.all(values.asList())
}
/**
* @param values List of features that need to be synced to Online Store.
* Structure is documented below.
*/
@JvmName("ksueqxuwellbpvtq")
public suspend fun featureGroups(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy