com.pulumi.gcp.vertex.kotlin.outputs.AiFeatureGroupBigQuery.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property bigQuerySource The BigQuery source URI that points to either a BigQuery Table or View.
* Structure is documented below.
* @property entityIdColumns Columns to construct entityId / row keys. Currently only supports 1 entity_id_column. If not provided defaults to entityId.
*/
public data class AiFeatureGroupBigQuery(
public val bigQuerySource: AiFeatureGroupBigQueryBigQuerySource,
public val entityIdColumns: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.AiFeatureGroupBigQuery): AiFeatureGroupBigQuery = AiFeatureGroupBigQuery(
bigQuerySource = javaType.bigQuerySource().let({ args0 ->
com.pulumi.gcp.vertex.kotlin.outputs.AiFeatureGroupBigQueryBigQuerySource.Companion.toKotlin(args0)
}),
entityIdColumns = javaType.entityIdColumns().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy