[][src]Struct google_logging2::BigQueryOptions

pub struct BigQueryOptions {
    pub use_partitioned_tables: Option<bool>,
    pub uses_timestamp_column_partitioning: Option<bool>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

use_partitioned_tables: Option<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: Option<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<'de> Deserialize<'de> for BigQueryOptions[src]

impl Part for BigQueryOptions[src]

impl Serialize for BigQueryOptions[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any