Class GooglePrivacyDlpV2TimespanConfig
Configuration of the timespan of the items to include in scanning. Currently only supported when inspecting Cloud Storage and BigQuery.
Implements
Inherited Members
Namespace: Google.Apis.DLP.v2.Data
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class GooglePrivacyDlpV2TimespanConfig : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EnableAutoPopulationOfTimespanConfig
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 or the timespan end_time used in the last run of the JobTrigger. For BigQuery Inspect jobs triggered by automatic population will scan data that is at least three hours old when the job starts. This is because streaming buffer rows are not read during inspection and reading up to the current timestamp will result in skipped rows. See the known issue related to this operation.
Declaration
[JsonProperty("enableAutoPopulationOfTimespanConfig")]
public virtual bool? EnableAutoPopulationOfTimespanConfig { get; set; }
Property Value
Type | Description |
---|---|
bool? |
EndTime
object representation of EndTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use EndTimeDateTimeOffset instead.")]
public virtual object EndTime { get; set; }
Property Value
Type | Description |
---|---|
object |
EndTimeDateTimeOffset
DateTimeOffset representation of EndTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? EndTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
EndTimeRaw
Exclude files, tables, or rows newer than this value. If not set, no upper time limit is applied.
Declaration
[JsonProperty("endTime")]
public virtual string EndTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
StartTime
object representation of StartTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeDateTimeOffset instead.")]
public virtual object StartTime { get; set; }
Property Value
Type | Description |
---|---|
object |
StartTimeDateTimeOffset
DateTimeOffset representation of StartTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? StartTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
StartTimeRaw
Exclude files, tables, or rows older than this value. If not set, no lower time limit is applied.
Declaration
[JsonProperty("startTime")]
public virtual string StartTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
TimestampField
Specification of the field containing the timestamp of scanned items. Used for data sources like Datastore
and BigQuery. For BigQuery If this value is not specified and the table was modified between the given
start and end times, the entire table will be scanned. If this value is specified, then rows are filtered
based on the given start and end times. Rows with a NULL
value in the provided BigQuery column are
skipped. Valid data types of the provided BigQuery column are: INTEGER
, DATE
, TIMESTAMP
, and
DATETIME
. If your BigQuery table is partitioned at ingestion
time, you can use any of the
following pseudo-columns as your timestamp field. When used with Cloud DLP, these pseudo-column names are
case sensitive. - _PARTITIONTIME
- _PARTITIONDATE
- _PARTITION_LOAD_TIME
For Datastore If this
value is specified, then entities are filtered based on the given start and end times. If an entity does not
contain the provided timestamp property or contains empty or invalid values, then it is included. Valid data
types of the provided timestamp property are: TIMESTAMP
. See the known
issue related to this
operation.
Declaration
[JsonProperty("timestampField")]
public virtual GooglePrivacyDlpV2FieldId TimestampField { get; set; }
Property Value
Type | Description |
---|---|
GooglePrivacyDlpV2FieldId |