com.pulumi.gcp.vertex.kotlin.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgs.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.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property featureGroupId Identifier of the feature group.
* @property featureIds Identifiers of features under the feature group.
*/
public data class AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgs(
public val featureGroupId: Output,
public val featureIds: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgs =
com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgs.builder()
.featureGroupId(featureGroupId.applyValue({ args0 -> args0 }))
.featureIds(featureIds.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgs].
*/
@PulumiTagMarker
public class AiFeatureOnlineStoreFeatureviewFeatureRegistrySourceFeatureGroupArgsBuilder internal constructor() {
private var featureGroupId: Output? = null
private var featureIds: Output>? = null
/**
* @param value Identifier of the feature group.
*/
@JvmName("wimkswmkyygnkkyg")
public suspend fun featureGroupId(`value`: Output) {
this.featureGroupId = value
}
/**
* @param value Identifiers of features under the feature group.
*/
@JvmName("ipxhsrxpfbqxjblg")
public suspend fun featureIds(`value`: Output>) {
this.featureIds = value
}
@JvmName("xexgfhvsmuqavrgo")
public suspend fun featureIds(vararg values: Output) {
this.featureIds = Output.all(values.asList())
}
/**
* @param values Identifiers of features under the feature group.
*/
@JvmName("llofudqvhspdcqjn")
public suspend fun featureIds(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy