class Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest

Request message for UpdateDeidentifyTemplate.

Attributes

deidentify_template[RW]

DeidentifyTemplates contains instructions on how to de-identify content. See cloud.google.com/dlp/docs/concepts-templates to learn more. Corresponds to the JSON property `deidentifyTemplate` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

update_mask[RW]

Mask to control which fields get updated. Corresponds to the JSON property `updateMask` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 6254
def update!(**args)
  @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end