class Google::Apis::HealthcareV1::DeidentifyFhirStoreRequest
Creates a new FHIR store with sensitive information de-identified.
Attributes
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]
The name of the FHIR store to create and write the redacted data to. For example, `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ fhirStores/`fhir_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 FHIR store must exist. * The caller must have the healthcare. fhirResources.update permission to write to the destination FHIR store. Corresponds to the JSON property `destinationStore` @return [String]
Filter configuration. Corresponds to the JSON property `resourceFilter` @return [Google::Apis::HealthcareV1::FhirFilter]
Public Class Methods
# File lib/google/apis/healthcare_v1/classes.rb, line 958 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/healthcare_v1/classes.rb, line 963 def update!(**args) @config = args[:config] if args.key?(:config) @destination_store = args[:destination_store] if args.key?(:destination_store) @resource_filter = args[:resource_filter] if args.key?(:resource_filter) end