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



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

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)


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

def filter_profile
  @filter_profile
end

#keep_listGoogle::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_listGoogle::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