class Google::Apis::LoggingV2::ListLogsResponse

Result returned from ListLogs.

Attributes

log_names[RW]

A list of log names. For example, “projects/my-project/logs/syslog” or “ organizations/123/logs/cloudresourcemanager.googleapis.com%2Factivity”. Corresponds to the JSON property `logNames` @return [Array<String>]

next_page_token[RW]

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. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/logging_v2/classes.rb, line 799
def update!(**args)
  @log_names = args[:log_names] if args.key?(:log_names)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end