Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2UpdateDeidentifyTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2UpdateDeidentifyTemplateRequest
- 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 UpdateDeidentifyTemplate.
Instance Attribute Summary collapse
-
#deidentify_template ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2DeidentifyTemplate
The DeidentifyTemplates contains instructions on how to deidentify content.
-
#update_mask ⇒ String
Mask to control which fields get updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2UpdateDeidentifyTemplateRequest
constructor
A new instance of GooglePrivacyDlpV2beta2UpdateDeidentifyTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2UpdateDeidentifyTemplateRequest
Returns a new instance of GooglePrivacyDlpV2beta2UpdateDeidentifyTemplateRequest
5802 5803 5804 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deidentify_template ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2DeidentifyTemplate
The DeidentifyTemplates contains instructions on how to deidentify content.
Corresponds to the JSON property deidentifyTemplate
5795 5796 5797 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5795 def deidentify_template @deidentify_template end |
#update_mask ⇒ String
Mask to control which fields get updated.
Corresponds to the JSON property updateMask
5800 5801 5802 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5800 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5807 5808 5809 5810 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5807 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @update_mask = args[:update_mask] if args.key?(:update_mask) end |