Class: Google::Apis::HealthcareV1::DicomConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::DicomConfig
- 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 the parameters needed for de-identification of DICOM stores.
Instance Attribute Summary collapse
-
#filter_profile ⇒ String
Tag filtering profile that determines which tags to keep/remove.
-
#keep_list ⇒ Google::Apis::HealthcareV1::TagFilterList
List of tags to be filtered.
-
#remove_list ⇒ Google::Apis::HealthcareV1::TagFilterList
List of tags to be filtered.
-
#skip_id_redaction ⇒ Boolean
(also: #skip_id_redaction?)
If true, skip replacing StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID, and MediaStorageSOPInstanceUID and leave them untouched.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DicomConfig
constructor
A new instance of DicomConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DicomConfig
Returns a new instance of DicomConfig.
1139 1140 1141 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1139 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filter_profile ⇒ String
Tag filtering profile that determines which tags to keep/remove.
Corresponds to the JSON property filterProfile
1114 1115 1116 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1114 def filter_profile @filter_profile end |
#keep_list ⇒ Google::Apis::HealthcareV1::TagFilterList
List of tags to be filtered.
Corresponds to the JSON property keepList
1119 1120 1121 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1119 def keep_list @keep_list end |
#remove_list ⇒ Google::Apis::HealthcareV1::TagFilterList
List of tags to be filtered.
Corresponds to the JSON property removeList
1124 1125 1126 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1124 def remove_list @remove_list end |
#skip_id_redaction ⇒ Boolean Also known as: skip_id_redaction?
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.
" http://dicom.nema.org/medical/dicom/current/output/chtml/part15/sect_E.3.9.
html
Corresponds to the JSON property skipIdRedaction
1136 1137 1138 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1136 def skip_id_redaction @skip_id_redaction end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1144 1145 1146 1147 1148 1149 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1144 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 |