Class: Google::Apis::DatastreamV1alpha1::Error

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastream_v1alpha1/classes.rb,
lib/google/apis/datastream_v1alpha1/representations.rb,
lib/google/apis/datastream_v1alpha1/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.



378
379
380
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 378

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>)


355
356
357
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 355

def details
  @details
end

#error_timeString

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

Returns:

  • (String)


360
361
362
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 360

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)


366
367
368
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 366

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)


371
372
373
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 371

def message
  @message
end

#reasonString

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

Returns:

  • (String)


376
377
378
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 376

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



383
384
385
386
387
388
389
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 383

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