Class: Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectStatistics

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

Statistics related to processing hybrid inspect requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2HybridInspectStatistics

Returns a new instance of GooglePrivacyDlpV2HybridInspectStatistics.



3299
3300
3301
# File 'lib/google/apis/dlp_v2/classes.rb', line 3299

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

Instance Attribute Details

#aborted_countFixnum

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

Returns:

  • (Fixnum)


3284
3285
3286
# File 'lib/google/apis/dlp_v2/classes.rb', line 3284

def aborted_count
  @aborted_count
end

#pending_countFixnum

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

Returns:

  • (Fixnum)


3292
3293
3294
# File 'lib/google/apis/dlp_v2/classes.rb', line 3292

def pending_count
  @pending_count
end

#processed_countFixnum

The number of hybrid inspection requests processed within this job. Corresponds to the JSON property processedCount

Returns:

  • (Fixnum)


3297
3298
3299
# File 'lib/google/apis/dlp_v2/classes.rb', line 3297

def processed_count
  @processed_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3304
3305
3306
3307
3308
# File 'lib/google/apis/dlp_v2/classes.rb', line 3304

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