class Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest

Request message for UpdateInspectTemplate.

Attributes

inspect_template[RW]

The inspectTemplate contains a configuration (set of types of sensitive data to be detected) to be used anywhere you otherwise would normally specify InspectConfig. See cloud.google.com/dlp/docs/concepts-templates to learn more. Corresponds to the JSON property `inspectTemplate` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

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 6277
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 6282
def update!(**args)
  @inspect_template = args[:inspect_template] if args.key?(:inspect_template)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end