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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InsertError

Returns a new instance of InsertError.



6316
6317
6318
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6316

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



6309
6310
6311
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6309

def errors
  @errors
end

#indexFixnum

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

Returns:

  • (Fixnum)


6314
6315
6316
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6314

def index
  @index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6321
6322
6323
6324
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6321

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