Class: Google::Apis::HealthcareV1::FhirConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FhirConfig

Returns a new instance of FhirConfig.



1574
1575
1576
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1574

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#default_keep_extensionsBoolean 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

Returns:

  • (Boolean)


1564
1565
1566
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1564

def default_keep_extensions
  @default_keep_extensions
end

#field_metadata_listArray<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



1572
1573
1574
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1572

def 
  @field_metadata_list
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1579
1580
1581
1582
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1579

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