Time Partitioning Args
data class TimePartitioningArgs(val expirationMs: Output<String>? = null, val field: Output<String>? = null, val requirePartitionFilter: Output<Boolean>? = null, val type: Output<String>? = null) : ConvertibleToJava<TimePartitioningArgs>
Properties
Link copied to clipboard
Optional Number of milliseconds for which to keep the storage for partitions in the table. The storage in a partition will have an expiration time of its partition time plus this value.
Link copied to clipboard
Optional If not set, the table is partitioned by pseudo column, referenced via either '_PARTITIONTIME' as TIMESTAMP type, or '_PARTITIONDATE' as DATE type. If field is specified, the table is instead partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED.
Link copied to clipboard