class Google::Apis::HealthcareV1::DeidentifyDatasetRequest

Redacts identifying information from the specified dataset.

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_dataset[RW]

The name of the dataset resource to create and write the redacted data to. * The destination dataset must not exist. * The destination dataset must be in the same location as the source dataset. De-identifying data across multiple locations is not supported. Corresponds to the JSON property `destinationDataset` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 881
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 886
def update!(**args)
  @config = args[:config] if args.key?(:config)
  @destination_dataset = args[:destination_dataset] if args.key?(:destination_dataset)
end