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

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 about a single row's insertion.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InsertError

Returns a new instance of InsertError.



9721
9722
9723
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9721

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



9714
9715
9716
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9714

def errors
  @errors
end

#indexFixnum

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

Returns:

  • (Fixnum)


9719
9720
9721
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9719

def index
  @index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9726
9727
9728
9729
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9726

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