Class: Google::Apis::HealthcareV1::DateShiftConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::DateShiftConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Overview
Shift a date forward or backward in time by a random amount which is consistent for a given patient and crypto key combination.
Instance Attribute Summary collapse
-
#crypto_key ⇒ String
An AES 128/192/256 bit key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DateShiftConfig
constructor
A new instance of DateShiftConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DateShiftConfig
Returns a new instance of DateShiftConfig.
288 289 290 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 288 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crypto_key ⇒ String
An AES 128/192/256 bit key. Causes the shift to be computed based on this key
and the patient ID. A default key is generated for each Deidentify operation
and is used wherever crypto_key is not specified.
Corresponds to the JSON property cryptoKey
NOTE: Values are automatically base64 encoded/decoded in the client library.
286 287 288 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 286 def crypto_key @crypto_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
293 294 295 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 293 def update!(**args) @crypto_key = args[:crypto_key] if args.key?(:crypto_key) end |