class Google::Apis::BigqueryV2::ErrorProto

Attributes

debug_info[RW]

Debugging information. This property is internal to Google and should not be used. Corresponds to the JSON property `debugInfo` @return [String]

location[RW]

Specifies where the error occurred, if present. Corresponds to the JSON property `location` @return [String]

message[RW]

A human-readable description of the error. Corresponds to the JSON property `message` @return [String]

reason[RW]

A short error code that summarizes the error. Corresponds to the JSON property `reason` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 564
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