Class: Google::Apis::HealthcareV1alpha2::DicomConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DicomConfig

Returns a new instance of DicomConfig



628
629
630
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 628

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#filter_profileString

Tag filtering profile that determines which tags to keep/remove. Corresponds to the JSON property filterProfile

Returns:

  • (String)


616
617
618
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 616

def filter_profile
  @filter_profile
end

#keep_listGoogle::Apis::HealthcareV1alpha2::TagFilterList

List of tags to be filtered. Corresponds to the JSON property keepList



621
622
623
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 621

def keep_list
  @keep_list
end

#remove_listGoogle::Apis::HealthcareV1alpha2::TagFilterList

List of tags to be filtered. Corresponds to the JSON property removeList



626
627
628
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 626

def remove_list
  @remove_list
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



633
634
635
636
637
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 633

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