Class: Google::Cloud::Logging::V2::WriteLogEntriesPartialErrors
- Inherits:
-
Object
- Object
- Google::Cloud::Logging::V2::WriteLogEntriesPartialErrors
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/logging/v2/logging.rb
Overview
Error details for WriteLogEntries with partial success.
Defined Under Namespace
Classes: LogEntryErrorsEntry
Instance Attribute Summary collapse
-
#log_entry_errors ⇒ ::Google::Protobuf::Map{::Integer => ::Google::Rpc::Status}
When
WriteLogEntriesRequest.partial_success
is true, records the error status for entries that were not written due to a permanent error, keyed by the entry's zero-based index inWriteLogEntriesRequest.entries
.
Instance Attribute Details
#log_entry_errors ⇒ ::Google::Protobuf::Map{::Integer => ::Google::Rpc::Status}
Returns When WriteLogEntriesRequest.partial_success
is true, records the error
status for entries that were not written due to a permanent error, keyed
by the entry's zero-based index in WriteLogEntriesRequest.entries
.
Failed requests for which no entries are written will not include per-entry errors.
148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'proto_docs/google/logging/v2/logging.rb', line 148 class WriteLogEntriesPartialErrors include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::Integer] # @!attribute [rw] value # @return [::Google::Rpc::Status] class LogEntryErrorsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |