Google Cloud Data Loss Prevention v2 API - Class DateShiftConfig (4.8.0)

public sealed class DateShiftConfig : IMessage<DateShiftConfig>, IEquatable<DateShiftConfig>, IDeepCloneable<DateShiftConfig>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Data Loss Prevention v2 API class DateShiftConfig.

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.

Inheritance

object > DateShiftConfig

Namespace

Google.Cloud.Dlp.V2

Assembly

Google.Cloud.Dlp.V2.dll

Constructors

DateShiftConfig()

public DateShiftConfig()

DateShiftConfig(DateShiftConfig)

public DateShiftConfig(DateShiftConfig other)
Parameter
NameDescription
otherDateShiftConfig

Properties

Context

public FieldId Context { get; set; }

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.

Property Value
TypeDescription
FieldId

CryptoKey

public CryptoKey CryptoKey { get; set; }

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.

Property Value
TypeDescription
CryptoKey

LowerBoundDays

public int LowerBoundDays { get; set; }

Required. For example, -5 means shift date to at most 5 days back in the past.

Property Value
TypeDescription
int

MethodCase

public DateShiftConfig.MethodOneofCase MethodCase { get; }
Property Value
TypeDescription
DateShiftConfigMethodOneofCase

UpperBoundDays

public int UpperBoundDays { get; set; }

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.

Property Value
TypeDescription
int