class Google::Apis::HealthcareV1::DeidentifyConfig

Configures de-id options specific to different types of content. Each submessage customizes the handling of an tools.ietf.org/html/rfc6838 media type or subtype. Configs are applied in a nested manner at runtime.

Attributes

dicom[RW]

Specifies the parameters needed for de-identification of DICOM stores. Corresponds to the JSON property `dicom` @return [Google::Apis::HealthcareV1::DicomConfig]

fhir[RW]

Specifies how to handle de-identification of a FHIR store. Corresponds to the JSON property `fhir` @return [Google::Apis::HealthcareV1::FhirConfig]

image[RW]

Specifies how to handle de-identification of image pixels. Corresponds to the JSON property `image` @return [Google::Apis::HealthcareV1::ImageConfig]

text[RW]

Configures de-identification of text wherever it is found in the source_dataset. Corresponds to the JSON property `text` @return [Google::Apis::HealthcareV1::TextConfig]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 849
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 854
def update!(**args)
  @dicom = args[:dicom] if args.key?(:dicom)
  @fhir = args[:fhir] if args.key?(:fhir)
  @image = args[:image] if args.key?(:image)
  @text = args[:text] if args.key?(:text)
end