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?)
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.
2547 2548 2549 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2547 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
2536 2537 2538 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2536 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
2545 2546 2547 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2545 def @field_metadata_list end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2552 2553 2554 2555 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2552 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 |