Class: Google::Apis::HealthcareV1alpha2::DicomConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::DicomConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/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::HealthcareV1alpha2::TagFilterList
List of tags to be filtered.
-
#remove_list ⇒ Google::Apis::HealthcareV1alpha2::TagFilterList
List of tags to be filtered.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DicomConfig
constructor
A new instance of DicomConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DicomConfig
Returns a new instance of DicomConfig
627 628 629 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 627 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
615 616 617 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 615 def filter_profile @filter_profile end |
#keep_list ⇒ Google::Apis::HealthcareV1alpha2::TagFilterList
List of tags to be filtered.
Corresponds to the JSON property keepList
620 621 622 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 620 def keep_list @keep_list end |
#remove_list ⇒ Google::Apis::HealthcareV1alpha2::TagFilterList
List of tags to be filtered.
Corresponds to the JSON property removeList
625 626 627 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 625 def remove_list @remove_list end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
632 633 634 635 636 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 632 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) end |