Struct gapi_grpc::google::logging::v2::BigQueryOptions[][src]

pub struct BigQueryOptions {
    pub use_partitioned_tables: bool,
    pub uses_timestamp_column_partitioning: bool,
}

Options that change functionality of a sink exporting data to BigQuery.

Fields

use_partitioned_tables: bool

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

uses_timestamp_column_partitioning: bool

Output only. True if new timestamp column based partitioning is in use, false if legacy ingestion-time partitioning is in use. All new sinks will have this field set true and will use timestamp column based partitioning. If use_partitioned_tables is false, this value has no meaning and will be false. Legacy sinks using partitioned tables will have this field set to false.

Trait Implementations

impl Clone for BigQueryOptions[src]

impl Debug for BigQueryOptions[src]

impl Default for BigQueryOptions[src]

impl Message for BigQueryOptions[src]

impl PartialEq<BigQueryOptions> for BigQueryOptions[src]

impl StructuralPartialEq for BigQueryOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for BigQueryOptions

impl Send for BigQueryOptions

impl Sync for BigQueryOptions

impl Unpin for BigQueryOptions

impl UnwindSafe for BigQueryOptions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]