class Google::Apis::HealthcareV1::DeidentifyDicomStoreRequest

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

Attributes

config[RW]

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

destination_store[RW]

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 location. De-identifying data across multiple locations 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 property `destinationStore` @return [String]

filter_config[RW]

Specifies the filter configuration for DICOM resources. Corresponds to the JSON property `filterConfig` @return [Google::Apis::HealthcareV1::DicomFilterConfig]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 919
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 924
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