Class: Google::Apis::BigqueryV2::InsertAllTableDataResponse::InsertError
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::InsertAllTableDataResponse::InsertError
- 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
-
#errors ⇒ Array<Google::Apis::BigqueryV2::ErrorProto>
Error information for the row indicated by the index property.
-
#index ⇒ Fixnum
The index of the row that error applies to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InsertError
constructor
A new instance of InsertError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InsertError
Returns a new instance of InsertError.
9860 9861 9862 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9860 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<Google::Apis::BigqueryV2::ErrorProto>
Error information for the row indicated by the index property.
Corresponds to the JSON property errors
9853 9854 9855 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9853 def errors @errors end |
#index ⇒ Fixnum
The index of the row that error applies to.
Corresponds to the JSON property index
9858 9859 9860 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9858 def index @index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9865 9866 9867 9868 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9865 def update!(**args) @errors = args[:errors] if args.key?(:errors) @index = args[:index] if args.key?(:index) end |