Class: Google::Apis::DatastreamV1::Error

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_v1/representations.rb

Overview

Represent a user-facing Error.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Error

Returns a new instance of Error.



621
622
623
# File 'lib/google/apis/datastream_v1/classes.rb', line 621

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

Instance Attribute Details

#detailsHash<String,String>

Additional information about the error. Corresponds to the JSON property details

Returns:

  • (Hash<String,String>)


598
599
600
# File 'lib/google/apis/datastream_v1/classes.rb', line 598

def details
  @details
end

#error_timeString

The time when the error occurred. Corresponds to the JSON property errorTime

Returns:

  • (String)


603
604
605
# File 'lib/google/apis/datastream_v1/classes.rb', line 603

def error_time
  @error_time
end

#error_uuidString

A unique identifier for this specific error, allowing it to be traced throughout the system in logs and API responses. Corresponds to the JSON property errorUuid

Returns:

  • (String)


609
610
611
# File 'lib/google/apis/datastream_v1/classes.rb', line 609

def error_uuid
  @error_uuid
end

#messageString

A message containing more information about the error that occurred. Corresponds to the JSON property message

Returns:

  • (String)


614
615
616
# File 'lib/google/apis/datastream_v1/classes.rb', line 614

def message
  @message
end

#reasonString

A title that explains the reason for the error. Corresponds to the JSON property reason

Returns:

  • (String)


619
620
621
# File 'lib/google/apis/datastream_v1/classes.rb', line 619

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



626
627
628
629
630
631
632
# File 'lib/google/apis/datastream_v1/classes.rb', line 626

def update!(**args)
  @details = args[:details] if args.key?(:details)
  @error_time = args[:error_time] if args.key?(:error_time)
  @error_uuid = args[:error_uuid] if args.key?(:error_uuid)
  @message = args[:message] if args.key?(:message)
  @reason = args[:reason] if args.key?(:reason)
end