class Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions
Snapshot of the inspection configuration.
Attributes
job_config[RW]
Controls what and how to inspect for findings. Corresponds to the JSON property `jobConfig` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig]
snapshot_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 `snapshotInspectTemplate` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 5311 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 5316 def update!(**args) @job_config = args[:job_config] if args.key?(:job_config) @snapshot_inspect_template = args[:snapshot_inspect_template] if args.key?(:snapshot_inspect_template) end