Class: Google::Apis::HealthcareV1::FhirConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::FhirConfig
- 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
Specifies how to handle de-identification of a FHIR store.
Instance Attribute Summary collapse
-
#default_keep_extensions ⇒ Boolean
(also: #default_keep_extensions?)
The behaviour for handling FHIR extensions that aren't otherwise specified for de-identification.
-
#field_metadata_list ⇒ Array<Google::Apis::HealthcareV1::FieldMetadata>
Specifies FHIR paths to match and how to transform them.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FhirConfig
constructor
A new instance of FhirConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FhirConfig
Returns a new instance of FhirConfig.
1773 1774 1775 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1773 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_keep_extensions ⇒ Boolean Also known as: default_keep_extensions?
The behaviour for handling FHIR extensions that aren't otherwise specified for
de-identification. If true, all extensions are preserved during de-
identification by default. If false or unspecified, all extensions are removed
during de-identification by default.
Corresponds to the JSON property defaultKeepExtensions
1763 1764 1765 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1763 def default_keep_extensions @default_keep_extensions end |
#field_metadata_list ⇒ Array<Google::Apis::HealthcareV1::FieldMetadata>
Specifies FHIR paths to match and how to transform them. Any field that is not
matched by a FieldMetadata is passed through to the output dataset unmodified.
All extensions will be processed according to default_keep_extensions
.
Corresponds to the JSON property fieldMetadataList
1771 1772 1773 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1771 def @field_metadata_list end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1778 1779 1780 1781 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1778 def update!(**args) @default_keep_extensions = args[:default_keep_extensions] if args.key?(:default_keep_extensions) @field_metadata_list = args[:field_metadata_list] if args.key?(:field_metadata_list) end |