Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InspectDataSourceDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

The results of an inspect DataSource job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2InspectDataSourceDetails

Returns a new instance of GooglePrivacyDlpV2InspectDataSourceDetails.



3000
3001
3002
# File 'generated/google/apis/dlp_v2/classes.rb', line 3000

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

Instance Attribute Details

#requested_optionsGoogle::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions

Snapshot of the inspection configuration. Corresponds to the JSON property requestedOptions



2993
2994
2995
# File 'generated/google/apis/dlp_v2/classes.rb', line 2993

def requested_options
  @requested_options
end

#resultGoogle::Apis::DlpV2::GooglePrivacyDlpV2Result

All result fields mentioned below are updated while the job is processing. Corresponds to the JSON property result



2998
2999
3000
# File 'generated/google/apis/dlp_v2/classes.rb', line 2998

def result
  @result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3005
3006
3007
3008
# File 'generated/google/apis/dlp_v2/classes.rb', line 3005

def update!(**args)
  @requested_options = args[:requested_options] if args.key?(:requested_options)
  @result = args[:result] if args.key?(:result)
end