class Google::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig

Controls what and how to inspect for findings.

Attributes

actions[RW]

Actions to execute at the completion of the job. Corresponds to the JSON property `actions` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>]

inspect_config[RW]

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]

inspect_template_name[RW]

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]

storage_config[RW]

Shared message indicating Cloud storage type. Corresponds to the JSON property `storageConfig` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StorageConfig]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3287
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 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