Class GooglePrivacyDlpV2DateShiftConfig
Shifts dates by random number of days, with option to be consistent for the same context. See https://cloud.google.com/sensitive-data-protection/docs/concepts-date-shifting to learn more.
Implements
Inherited Members
Namespace: Google.Apis.DLP.v2.Data
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class GooglePrivacyDlpV2DateShiftConfig : IDirectResponseSchema
Properties
Context
Points to the field that contains the context, for example, an entity id. If set, must also set cryptoKey. If set, shift will be consistent for the given context.
Declaration
[JsonProperty("context")]
public virtual GooglePrivacyDlpV2FieldId Context { get; set; }
Property Value
Type | Description |
---|---|
GooglePrivacyDlpV2FieldId |
CryptoKey
Causes the shift to be computed based on this key and the context. This results in the same shift for the same context and crypto_key. If set, must also set context. Can only be applied to table items.
Declaration
[JsonProperty("cryptoKey")]
public virtual GooglePrivacyDlpV2CryptoKey CryptoKey { get; set; }
Property Value
Type | Description |
---|---|
GooglePrivacyDlpV2CryptoKey |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
LowerBoundDays
Required. For example, -5 means shift date to at most 5 days back in the past.
Declaration
[JsonProperty("lowerBoundDays")]
public virtual int? LowerBoundDays { get; set; }
Property Value
Type | Description |
---|---|
int? |
UpperBoundDays
Required. Range of shift in days. Actual shift will be selected at random within this range (inclusive ends). Negative means shift to earlier in time. Must not be more than 365250 days (1000 years) each direction. For example, 3 means shift date to at most 3 days into the future.
Declaration
[JsonProperty("upperBoundDays")]
public virtual int? UpperBoundDays { get; set; }
Property Value
Type | Description |
---|---|
int? |