class Google::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig
Controls what and how to inspect for findings.
Attributes
Actions to execute at the completion of the job. Corresponds to the JSON property `actions` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>]
Configuration description of the scanning process. When used with redactContent only info_types and min_likelihood are currently used. Corresponds to the JSON property `inspectConfig` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig]
If provided, will be used as the default for all values in InspectConfig. ` inspect_config
` will be merged into the values persisted as part of the template. Corresponds to the JSON property `inspectTemplateName` @return [String]
Shared message indicating Cloud storage type. Corresponds to the JSON property `storageConfig` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StorageConfig]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 3287 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 3292 def update!(**args) @actions = args[:actions] if args.key?(:actions) @inspect_config = args[:inspect_config] if args.key?(:inspect_config) @inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name) @storage_config = args[:storage_config] if args.key?(:storage_config) end