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 more...
Overview
Specifies how to handle de-identification of a FHIR store.
Instance Attribute Summary collapse
-
#default_keep_extensions ⇒ Boolean
(also: #default_keep_extensions?)
Optional.
-
#field_metadata_list ⇒ Array<Google::Apis::HealthcareV1::FieldMetadata>
Optional.
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.
2452 2453 2454 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2452 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_keep_extensions ⇒ Boolean Also known as: default_keep_extensions?
Optional. 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
2441 2442 2443 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2441 def default_keep_extensions @default_keep_extensions end |
#field_metadata_list ⇒ Array<Google::Apis::HealthcareV1::FieldMetadata>
Optional. 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
2450 2451 2452 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2450 def @field_metadata_list end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2457 2458 2459 2460 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2457 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 |