View Source GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2DateShiftConfig (google_api_dlp v0.46.0)

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.

Attributes

  • context (type: GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2FieldId.t, default: nil) - 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.
  • cryptoKey (type: GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2CryptoKey.t, default: nil) - 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.
  • lowerBoundDays (type: integer(), default: nil) - Required. For example, -5 means shift date to at most 5 days back in the past.
  • upperBoundDays (type: integer(), default: nil) - 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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2DateShiftConfig{
  context: GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2FieldId.t() | nil,
  cryptoKey: GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2CryptoKey.t() | nil,
  lowerBoundDays: integer() | nil,
  upperBoundDays: integer() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.