Class: Google::Apis::HealthcareV1beta1::DicomConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::DicomConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/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::HealthcareV1beta1::TagFilterList
List of tags to be filtered.
-
#remove_list ⇒ Google::Apis::HealthcareV1beta1::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
464 465 466 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 464 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
452 453 454 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 452 def filter_profile @filter_profile end |
#keep_list ⇒ Google::Apis::HealthcareV1beta1::TagFilterList
List of tags to be filtered.
Corresponds to the JSON property keepList
457 458 459 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 457 def keep_list @keep_list end |
#remove_list ⇒ Google::Apis::HealthcareV1beta1::TagFilterList
List of tags to be filtered.
Corresponds to the JSON property removeList
462 463 464 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 462 def remove_list @remove_list end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
469 470 471 472 473 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 469 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 |