class Google::Apis::LoggingV2beta1::ListLogEntriesResponse

Result returned from `ListLogEntries`.

Attributes

entries[RW]

A list of log entries. Corresponds to the JSON property `entries` @return [Array<Google::Apis::LoggingV2beta1::LogEntry>]

next_page_token[RW]

If there are more results than were returned, then `nextPageToken` is included in the response. To get the next set of results, call this method again using the value of `nextPageToken` as `pageToken`. Corresponds to the JSON property `nextPageToken` @return [String]

project_id_errors[RW]

If partial_success is true, contains the project ids that had errors and the associated errors. Corresponds to the JSON property `projectIdErrors` @return [Hash<String,Google::Apis::LoggingV2beta1::Status>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/logging_v2beta1/classes.rb, line 487
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/logging_v2beta1/classes.rb, line 492
def update!(**args)
  @entries = args[:entries] if args.key?(:entries)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @project_id_errors = args[:project_id_errors] if args.key?(:project_id_errors)
end