class Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectStatistics

Statistics related to processing hybrid inspect requests.

Attributes

aborted_count[RW]

The number of hybrid inspection requests aborted because the job ran out of quota or was ended before they could be processed. Corresponds to the JSON property `abortedCount` @return [Fixnum]

pending_count[RW]

The number of hybrid requests currently being processed. Only populated when called via method `getDlpJob`. A burst of traffic may cause hybrid inspect requests to be enqueued. Processing will take place as quickly as possible, but resource limitations may impact how long a request is enqueued for. Corresponds to the JSON property `pendingCount` @return [Fixnum]

processed_count[RW]

The number of hybrid inspection requests processed within this job. Corresponds to the JSON property `processedCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 2824
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 2829
def update!(**args)
  @aborted_count = args[:aborted_count] if args.key?(:aborted_count)
  @pending_count = args[:pending_count] if args.key?(:pending_count)
  @processed_count = args[:processed_count] if args.key?(:processed_count)
end