class Google::Apis::StoragetransferV1::ErrorLogEntry

An entry describing an error that has occurred.

Attributes

error_details[RW]

A list of messages that carry the error details. Corresponds to the JSON property `errorDetails` @return [Array<String>]

url[RW]

Required. A URL that refers to the target (a data source, a data sink, or an object) with which the error is associated. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/storagetransfer_v1/classes.rb, line 261
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 266
def update!(**args)
  @error_details = args[:error_details] if args.key?(:error_details)
  @url = args[:url] if args.key?(:url)
end