class Google::Apis::LoggingV2::SuppressionInfo

Information about entries that were omitted from the session.

Attributes

reason[RW]

The reason that entries were omitted from the session. Corresponds to the JSON property `reason` @return [String]

suppressed_count[RW]

A lower bound on the count of entries omitted due to reason. Corresponds to the JSON property `suppressedCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/logging_v2/classes.rb, line 2447
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/logging_v2/classes.rb, line 2452
def update!(**args)
  @reason = args[:reason] if args.key?(:reason)
  @suppressed_count = args[:suppressed_count] if args.key?(:suppressed_count)
end