Class: Google::Apis::HealthcareV1beta1::DeidentifyDicomStoreRequest

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

Creates a new DICOM store with sensitive information de-identified.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeidentifyDicomStoreRequest

Returns a new instance of DeidentifyDicomStoreRequest.



1092
1093
1094
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1092

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

Instance Attribute Details

#configGoogle::Apis::HealthcareV1beta1::DeidentifyConfig

Configures de-id options specific to different types of content. Each submessage customizes the handling of an https://tools.ietf.org/html/rfc6838 media type or subtype. Configs are applied in a nested manner at runtime. Corresponds to the JSON property config



1074
1075
1076
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1074

def config
  @config
end

#destination_storeString

The name of the DICOM store to create and write the redacted data to. For example, projects/project_id/locations/location_id/datasets/dataset_id/ dicomStores/dicom_store_id`. * The destination dataset must exist. * The source dataset and destination dataset must both reside in the same project. De-identifying data across multiple projects is not supported. * The destination DICOM store must not exist. * The caller must have the necessary permissions to create the destination DICOM store. Corresponds to the JSON propertydestinationStore`

Returns:

  • (String)


1085
1086
1087
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1085

def destination_store
  @destination_store
end

#filter_configGoogle::Apis::HealthcareV1beta1::DicomFilterConfig

Specifies the filter configuration for DICOM resources. Corresponds to the JSON property filterConfig



1090
1091
1092
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1090

def filter_config
  @filter_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1097
1098
1099
1100
1101
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1097

def update!(**args)
  @config = args[:config] if args.key?(:config)
  @destination_store = args[:destination_store] if args.key?(:destination_store)
  @filter_config = args[:filter_config] if args.key?(:filter_config)
end