Class: Google::Cloud::Bigquery::Storage::V1::RowError
- Inherits:
-
Object
- Object
- Google::Cloud::Bigquery::Storage::V1::RowError
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/bigquery/storage/v1/storage.rb
Overview
The message that presents row level error info in a request.
Defined Under Namespace
Modules: RowErrorCode
Instance Attribute Summary collapse
-
#code ⇒ ::Google::Cloud::Bigquery::Storage::V1::RowError::RowErrorCode
Structured error reason for a row error.
-
#index ⇒ ::Integer
Index of the malformed row in the request.
-
#message ⇒ ::String
Description of the issue encountered when processing the row.
Instance Attribute Details
#code ⇒ ::Google::Cloud::Bigquery::Storage::V1::RowError::RowErrorCode
Returns Structured error reason for a row error.
570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/cloud/bigquery/storage/v1/storage.rb', line 570 class RowError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Error code for `RowError`. module RowErrorCode # Default error. ROW_ERROR_CODE_UNSPECIFIED = 0 # One or more fields in the row has errors. FIELDS_ERROR = 1 end end |
#index ⇒ ::Integer
Returns Index of the malformed row in the request.
570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/cloud/bigquery/storage/v1/storage.rb', line 570 class RowError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Error code for `RowError`. module RowErrorCode # Default error. ROW_ERROR_CODE_UNSPECIFIED = 0 # One or more fields in the row has errors. FIELDS_ERROR = 1 end end |
#message ⇒ ::String
Returns Description of the issue encountered when processing the row.
570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/cloud/bigquery/storage/v1/storage.rb', line 570 class RowError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Error code for `RowError`. module RowErrorCode # Default error. ROW_ERROR_CODE_UNSPECIFIED = 0 # One or more fields in the row has errors. FIELDS_ERROR = 1 end end |