Class: Google::Apis::HealthcareV1beta1::DicomTagConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb

Overview

Specifies the parameters needed for the de-identification of DICOM stores.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DicomTagConfig

Returns a new instance of DicomTagConfig.



2262
2263
2264
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2262

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

Instance Attribute Details

#actionsArray<Google::Apis::HealthcareV1beta1::Action>

Specifies custom tag selections and Actions to apply to them. Overrides options and profile. Conflicting Actions are applied in the order given. Corresponds to the JSON property actions



2250
2251
2252
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2250

def actions
  @actions
end

#optionsGoogle::Apis::HealthcareV1beta1::Options

Specifies additional options to apply to the base profile. Corresponds to the JSON property options



2255
2256
2257
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2255

def options
  @options
end

#profile_typeString

Base profile type for handling DICOM tags. Corresponds to the JSON property profileType

Returns:

  • (String)


2260
2261
2262
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2260

def profile_type
  @profile_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2267
2268
2269
2270
2271
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2267

def update!(**args)
  @actions = args[:actions] if args.key?(:actions)
  @options = args[:options] if args.key?(:options)
  @profile_type = args[:profile_type] if args.key?(:profile_type)
end