class Google::Apis::StoragetransferV1::ErrorSummary

A summary of errors by error code, plus a count and sample error log entries.

Attributes

error_code[RW]

Required. Corresponds to the JSON property `errorCode` @return [String]

error_count[RW]

Required. Count of this type of error. Corresponds to the JSON property `errorCount` @return [Fixnum]

error_log_entries[RW]

Error samples. At most 5 error log entries are recorded for a given error code for a single transfer operation. Corresponds to the JSON property `errorLogEntries` @return [Array<Google::Apis::StoragetransferV1::ErrorLogEntry>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/storagetransfer_v1/classes.rb, line 297
def update!(**args)
  @error_code = args[:error_code] if args.key?(:error_code)
  @error_count = args[:error_count] if args.key?(:error_count)
  @error_log_entries = args[:error_log_entries] if args.key?(:error_log_entries)
end