class Google::Apis::HealthcareV1::DicomConfig

Specifies the parameters needed for de-identification of DICOM stores.

Attributes

filter_profile[RW]

Tag filtering profile that determines which tags to keep/remove. Corresponds to the JSON property `filterProfile` @return [String]

keep_list[RW]

List of tags to be filtered. Corresponds to the JSON property `keepList` @return [Google::Apis::HealthcareV1::TagFilterList]

remove_list[RW]

List of tags to be filtered. Corresponds to the JSON property `removeList` @return [Google::Apis::HealthcareV1::TagFilterList]

skip_id_redaction[RW]

If true, skip replacing StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID, and MediaStorageSOPInstanceUID and leave them untouched. The Cloud Healthcare API regenerates these UIDs by default based on the DICOM Standard's reasoning: “Whilst these UIDs cannot be mapped directly to an individual out of context, given access to the original images, or to a database of the original images containing the UIDs, it would be possible to recover the individual's identity. ” dicom.nema.org/medical/dicom/current/output/chtml/part15/sect_E.3.9. html Corresponds to the JSON property `skipIdRedaction` @return [Boolean]

skip_id_redaction?[RW]

If true, skip replacing StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID, and MediaStorageSOPInstanceUID and leave them untouched. The Cloud Healthcare API regenerates these UIDs by default based on the DICOM Standard's reasoning: “Whilst these UIDs cannot be mapped directly to an individual out of context, given access to the original images, or to a database of the original images containing the UIDs, it would be possible to recover the individual's identity. ” dicom.nema.org/medical/dicom/current/output/chtml/part15/sect_E.3.9. html Corresponds to the JSON property `skipIdRedaction` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 1015
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 1020
def update!(**args)
  @filter_profile = args[:filter_profile] if args.key?(:filter_profile)
  @keep_list = args[:keep_list] if args.key?(:keep_list)
  @remove_list = args[:remove_list] if args.key?(:remove_list)
  @skip_id_redaction = args[:skip_id_redaction] if args.key?(:skip_id_redaction)
end