Class: Google::Apis::BigqueryV2::InsertAllTableDataResponse::InsertError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InsertError

Returns a new instance of InsertError.



5224
5225
5226
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5224

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

Instance Attribute Details

#errorsArray<Google::Apis::BigqueryV2::ErrorProto>

Error information for the row indicated by the index property. Corresponds to the JSON property errors



5217
5218
5219
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5217

def errors
  @errors
end

#indexFixnum

The index of the row that error applies to. Corresponds to the JSON property index

Returns:

  • (Fixnum)


5222
5223
5224
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5222

def index
  @index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5229
5230
5231
5232
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5229

def update!(**args)
  @errors = args[:errors] if args.key?(:errors)
  @index = args[:index] if args.key?(:index)
end