Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Result
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2Result
- 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
All result fields mentioned below are updated while the job is processing.
Instance Attribute Summary collapse
-
#hybrid_stats ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectStatistics
Statistics related to processing hybrid inspect requests.
-
#info_type_stats ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats>
Statistics of how many instances of each info type were found during inspect job.
-
#processed_bytes ⇒ Fixnum
Total size in bytes that were processed.
-
#total_estimated_bytes ⇒ Fixnum
Estimate of the number of bytes to process.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2Result
constructor
A new instance of GooglePrivacyDlpV2Result.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2Result
Returns a new instance of GooglePrivacyDlpV2Result.
6412 6413 6414 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6412 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hybrid_stats ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectStatistics
Statistics related to processing hybrid inspect requests.
Corresponds to the JSON property hybridStats
6394 6395 6396 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6394 def hybrid_stats @hybrid_stats end |
#info_type_stats ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats>
Statistics of how many instances of each info type were found during inspect
job.
Corresponds to the JSON property infoTypeStats
6400 6401 6402 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6400 def info_type_stats @info_type_stats end |
#processed_bytes ⇒ Fixnum
Total size in bytes that were processed.
Corresponds to the JSON property processedBytes
6405 6406 6407 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6405 def processed_bytes @processed_bytes end |
#total_estimated_bytes ⇒ Fixnum
Estimate of the number of bytes to process.
Corresponds to the JSON property totalEstimatedBytes
6410 6411 6412 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6410 def total_estimated_bytes @total_estimated_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6417 6418 6419 6420 6421 6422 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6417 def update!(**args) @hybrid_stats = args[:hybrid_stats] if args.key?(:hybrid_stats) @info_type_stats = args[:info_type_stats] if args.key?(:info_type_stats) @processed_bytes = args[:processed_bytes] if args.key?(:processed_bytes) @total_estimated_bytes = args[:total_estimated_bytes] if args.key?(:total_estimated_bytes) end |