Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb
Overview
Request message for UpdateInspectTemplate.
Instance Attribute Summary collapse
-
#inspect_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
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) ⇒ GooglePrivacyDlpV2UpdateInspectTemplateRequest
constructor
A new instance of GooglePrivacyDlpV2UpdateInspectTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2UpdateInspectTemplateRequest
Returns a new instance of GooglePrivacyDlpV2UpdateInspectTemplateRequest.
10042 10043 10044 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 10042 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
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 https://cloud.google.com/sensitive-data-protection/docs/
concepts-templates to learn more.
Corresponds to the JSON property inspectTemplate
10035 10036 10037 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 10035 def inspect_template @inspect_template end |
#update_mask ⇒ String
Mask to control which fields get updated.
Corresponds to the JSON property updateMask
10040 10041 10042 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 10040 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10047 10048 10049 10050 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 10047 def update!(**args) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) @update_mask = args[:update_mask] if args.key?(:update_mask) end |