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.
588 589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'proto_docs/google/cloud/bigquery/storage/v1/storage.rb', line 588 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.
588 589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'proto_docs/google/cloud/bigquery/storage/v1/storage.rb', line 588 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.
588 589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'proto_docs/google/cloud/bigquery/storage/v1/storage.rb', line 588 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 |