Struct google_dlp2::GooglePrivacyDlpV2TimespanConfig[][src]

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

Specification of the field containing the timestamp of scanned items. Used for data sources like Datastore or BigQuery. If not specified for BigQuery, table last modification timestamp is checked against given time span. The valid data types of the timestamp field are: for BigQuery - timestamp, date, datetime; for Datastore - timestamp. Datastore entity will be scanned if the timestamp property does not exist or its value is empty or invalid.

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

Exclude files or rows older than this value.

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 Default for GooglePrivacyDlpV2TimespanConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2TimespanConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2TimespanConfig
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2TimespanConfig
[src]

Auto Trait Implementations