Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest
- 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
-
#inspect_template ⇒ Google::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.
-
#update_mask ⇒ String
Mask to control which fields get updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest
constructor
A new instance of GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest
Returns a new instance of GooglePrivacyDlpV2beta2UpdateInspectTemplateRequest
5271 5272 5273 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5271 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_template ⇒ Google::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
5264 5265 5266 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5264 def inspect_template @inspect_template end |
#update_mask ⇒ String
Mask to control which fields get updated.
Corresponds to the JSON property updateMask
5269 5270 5271 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5269 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5276 5277 5278 5279 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5276 def update!(**args) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) @update_mask = args[:update_mask] if args.key?(:update_mask) end |