Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb

Overview

Request message for UpdateInspectTemplate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest

Returns a new instance of GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest



6051
6052
6053
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6051

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#inspect_templateGoogle::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectTemplate

The inspectTemplate contains a configuration (set of types of sensitive data to be detected) to be used anywhere you otherwise would normally specify InspectConfig. Corresponds to the JSON property inspectTemplate



6044
6045
6046
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6044

def inspect_template
  @inspect_template
end

#update_maskString

Mask to control which fields get updated. Corresponds to the JSON property updateMask

Returns:

  • (String)


6049
6050
6051
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6049

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6056
6057
6058
6059
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6056

def update!(**args)
  @inspect_template = args[:inspect_template] if args.key?(:inspect_template)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end