class Google::Apis::DlpV2::GooglePrivacyDlpV2Result

All result fields mentioned below are updated while the job is processing.

Attributes

hybrid_stats[RW]

Statistics related to processing hybrid inspect requests. Corresponds to the JSON property `hybridStats` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectStatistics]

info_type_stats[RW]

Statistics of how many instances of each info type were found during inspect job. Corresponds to the JSON property `infoTypeStats` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats>]

processed_bytes[RW]

Total size in bytes that were processed. Corresponds to the JSON property `processedBytes` @return [Fixnum]

total_estimated_bytes[RW]

Estimate of the number of bytes to process. Corresponds to the JSON property `totalEstimatedBytes` @return [Fixnum]

Public Class Methods

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