Class: Google::Apis::BigqueryV2::InsertAllTableDataResponse::InsertError
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigqueryV2::InsertAllTableDataResponse::InsertError
 
- 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
- 
  
    
      #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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InsertError
Returns a new instance of InsertError
| 3134 3135 3136 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3134 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
| 3127 3128 3129 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3127 def errors @errors end | 
#index ⇒ Fixnum
The index of the row that error applies to.
Corresponds to the JSON property index
| 3132 3133 3134 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3132 def index @index end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3139 3140 3141 3142 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3139 def update!(**args) @errors = args[:errors] if args.key?(:errors) @index = args[:index] if args.key?(:index) end |