Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions

Inherits:
Object
  • Object
show all
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

Snapshot of the inspection configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2RequestedOptions

Returns a new instance of GooglePrivacyDlpV2RequestedOptions.



5999
6000
6001
# File 'lib/google/apis/dlp_v2/classes.rb', line 5999

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#job_configGoogle::Apis::DlpV2::GooglePrivacyDlpV2InspectJobConfig

Controls what and how to inspect for findings. Corresponds to the JSON property jobConfig



5989
5990
5991
# File 'lib/google/apis/dlp_v2/classes.rb', line 5989

def job_config
  @job_config
end

#snapshot_inspect_templateGoogle::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/dlp/docs/concepts-templates to learn more. Corresponds to the JSON property snapshotInspectTemplate



5997
5998
5999
# File 'lib/google/apis/dlp_v2/classes.rb', line 5997

def snapshot_inspect_template
  @snapshot_inspect_template
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6004
6005
6006
6007
# File 'lib/google/apis/dlp_v2/classes.rb', line 6004

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