Class: Google::Apis::BigqueryV2::ErrorProto

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

Overview

Error details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ErrorProto

Returns a new instance of ErrorProto.



2603
2604
2605
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2603

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

Instance Attribute Details

#debug_infoString

Debugging information. This property is internal to Google and should not be used. Corresponds to the JSON property debugInfo

Returns:

  • (String)


2586
2587
2588
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2586

def debug_info
  @debug_info
end

#locationString

Specifies where the error occurred, if present. Corresponds to the JSON property location

Returns:

  • (String)


2591
2592
2593
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2591

def location
  @location
end

#messageString

A human-readable description of the error. Corresponds to the JSON property message

Returns:

  • (String)


2596
2597
2598
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2596

def message
  @message
end

#reasonString

A short error code that summarizes the error. Corresponds to the JSON property reason

Returns:

  • (String)


2601
2602
2603
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2601

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2608
2609
2610
2611
2612
2613
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2608

def update!(**args)
  @debug_info = args[:debug_info] if args.key?(:debug_info)
  @location = args[:location] if args.key?(:location)
  @message = args[:message] if args.key?(:message)
  @reason = args[:reason] if args.key?(:reason)
end