[][src]Struct google_dlp2::GooglePrivacyDlpV2BigQueryOptions

pub struct GooglePrivacyDlpV2BigQueryOptions {
    pub excluded_fields: Option<Vec<GooglePrivacyDlpV2FieldId>>,
    pub rows_limit: Option<String>,
    pub sample_method: Option<String>,
    pub identifying_fields: Option<Vec<GooglePrivacyDlpV2FieldId>>,
    pub table_reference: Option<GooglePrivacyDlpV2BigQueryTable>,
    pub rows_limit_percent: Option<i32>,
}

Options defining BigQuery table and row identifiers.

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

Fields

excluded_fields: Option<Vec<GooglePrivacyDlpV2FieldId>>

References to fields excluded from scanning. This allows you to skip inspection of entire columns which you know have no findings.

rows_limit: Option<String>

Max number of rows to scan. If the table has more rows than this value, the rest of the rows are omitted. If not set, or if set to 0, all rows will be scanned. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig.

sample_method: Option<String>

no description provided

identifying_fields: Option<Vec<GooglePrivacyDlpV2FieldId>>

References to fields uniquely identifying rows within the table. Nested fields in the format, like person.birthdate.year, are allowed.

table_reference: Option<GooglePrivacyDlpV2BigQueryTable>

Complete BigQuery table reference.

rows_limit_percent: Option<i32>

Max percentage of rows to scan. The rest are omitted. The number of rows scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of rows_limit and rows_limit_percent can be specified. Cannot be used in conjunction with TimespanConfig.

Trait Implementations

impl Part for GooglePrivacyDlpV2BigQueryOptions[src]

impl Default for GooglePrivacyDlpV2BigQueryOptions[src]

impl Clone for GooglePrivacyDlpV2BigQueryOptions[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2BigQueryOptions[src]

impl Serialize for GooglePrivacyDlpV2BigQueryOptions[src]

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryOptions[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]