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

com.pulumi.gcp.logging.kotlin.outputs.FolderSinkBigqueryOptions.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.10.0.0
Show newest version
@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