Class: Google::Cloud::Logging::V2::ListLogEntriesResponse
- Inherits:
-
Object
- Object
- Google::Cloud::Logging::V2::ListLogEntriesResponse
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/logging/v2/logging.rb
Overview
Result returned from ListLogEntries
.
Instance Attribute Summary collapse
-
#entries ⇒ ::Array<::Google::Cloud::Logging::V2::LogEntry>
A list of log entries.
-
#next_page_token ⇒ ::String
If there might be more results than those appearing in this response, then
nextPageToken
is included.
Instance Attribute Details
#entries ⇒ ::Array<::Google::Cloud::Logging::V2::LogEntry>
A list of log entries. If entries
is empty, nextPageToken
may still be
returned, indicating that more entries may exist. See nextPageToken
for
more information.
233 234 235 236 |
# File 'proto_docs/google/logging/v2/logging.rb', line 233 class ListLogEntriesResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#next_page_token ⇒ ::String
Returns If there might be more results than those appearing in this response, then
nextPageToken
is included. To get the next set of results, call this
method again using the value of nextPageToken
as pageToken
.
If a value for next_page_token
appears and the entries
field is empty,
it means that the search found no log entries so far but it did not have
time to search all the possible log entries. Retry the method with this
value for page_token
to continue the search. Alternatively, consider
speeding up the search by changing your filter to specify a single log name
or resource type, or to narrow the time range of the search.
233 234 235 236 |
# File 'proto_docs/google/logging/v2/logging.rb', line 233 class ListLogEntriesResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |