usePartitionedTables property

  1. @TagNumber.new(1)
bool get usePartitionedTables

Optional. Whether to use BigQuery's partition tables. By default, Cloud 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 has to be used instead. In both cases, tables are sharded based on UTC timezone.

Implementation

@$pb.TagNumber(1)
$core.bool get usePartitionedTables => $_getBF(0);
  1. @TagNumber.new(1)
set usePartitionedTables (bool value)

Implementation

@$pb.TagNumber(1)
set usePartitionedTables($core.bool value) => $_setBool(0, value);