class Google::Apis::LoggingV1beta3::ListLogsResponse
Result returned from ListLogs.
Attributes
logs[RW]
A list of log descriptions matching the criteria. Corresponds to the JSON property `logs` @return [Array<Google::Apis::LoggingV1beta3::Log>]
next_page_token[RW]
If there are more results, then `nextPageToken` is returned in the response. To get the next batch of logs, use the value of `nextPageToken` as `pageToken` in the next call of `ListLogs`. If `nextPageToken` is empty, then there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/logging_v1beta3/classes.rb, line 42 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_v1beta3/classes.rb, line 47 def update!(**args) @logs = args[:logs] unless args[:logs].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end