[][src]Struct google_dlp2::GooglePrivacyDlpV2TimespanConfig

pub struct GooglePrivacyDlpV2TimespanConfig {
    pub timestamp_field: Option<GooglePrivacyDlpV2FieldId>,
    pub end_time: Option<String>,
    pub start_time: Option<String>,
    pub enable_auto_population_of_timespan_config: Option<bool>,
}

Configuration of the timespan of the items to include in scanning. Currently only supported when inspecting Google Cloud Storage and BigQuery.

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

Fields

timestamp_field: Option<GooglePrivacyDlpV2FieldId>

Specification of the field containing the timestamp of scanned items. Used for data sources like Datastore and BigQuery.

For BigQuery: Required to filter out rows based on the given start and end times. If not specified and the table was modified between the given start and end times, the entire table will be scanned. The valid data types of the timestamp field are: INTEGER, DATE, TIMESTAMP, or DATETIME BigQuery column.

For Datastore. Valid data types of the timestamp field are: TIMESTAMP. Datastore entity will be scanned if the timestamp property does not exist or its value is empty or invalid.

end_time: Option<String>

Exclude files or rows newer than this value. If set to zero, no upper time limit is applied.

start_time: Option<String>

Exclude files or rows older than this value.

enable_auto_population_of_timespan_config: Option<bool>

When the job is started by a JobTrigger we will automatically figure out a valid start_time to avoid scanning files that have not been modified since the last time the JobTrigger executed. This will be based on the time of the execution of the last run of the JobTrigger.

Trait Implementations

impl Clone for GooglePrivacyDlpV2TimespanConfig[src]

impl Debug for GooglePrivacyDlpV2TimespanConfig[src]

impl Default for GooglePrivacyDlpV2TimespanConfig[src]

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

impl Part for GooglePrivacyDlpV2TimespanConfig[src]

impl Serialize for GooglePrivacyDlpV2TimespanConfig[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