Class: Google::Apis::LoggingV2beta1::ListLogEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2beta1::ListLogEntriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2beta1/classes.rb,
generated/google/apis/logging_v2beta1/representations.rb,
generated/google/apis/logging_v2beta1/representations.rb
Overview
Result returned from ListLogEntries.
Instance Attribute Summary collapse
-
#entries ⇒ Array<Google::Apis::LoggingV2beta1::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 Method Summary collapse
-
#initialize(**args) ⇒ ListLogEntriesResponse
constructor
A new instance of ListLogEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListLogEntriesResponse
Returns a new instance of ListLogEntriesResponse
443 444 445 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 443 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entries ⇒ Array<Google::Apis::LoggingV2beta1::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.
Corresponds to the JSON property entries
428 429 430 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 428 def entries @entries end |
#next_page_token ⇒ String
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.
Corresponds to the JSON property nextPageToken
441 442 443 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 441 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
448 449 450 451 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 448 def update!(**args) @entries = args[:entries] if args.key?(:entries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |