com.pulumi.gcp.logging.kotlin.outputs.FolderSinkBigqueryOptions.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.logging.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property usePartitionedTables Whether to use [BigQuery's partition tables](https://cloud.google.com/bigquery/docs/partitioned-tables).
* By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned
* tables, the date suffix is no longer present and [special query syntax](https://cloud.google.com/bigquery/docs/querying-partitioned-tables)
* has to be used instead. In both cases, tables are sharded based on UTC timezone.
*/
public data class FolderSinkBigqueryOptions(
public val usePartitionedTables: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.logging.outputs.FolderSinkBigqueryOptions): FolderSinkBigqueryOptions = FolderSinkBigqueryOptions(
usePartitionedTables = javaType.usePartitionedTables(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy