class Google::Apis::LoggingV1beta3::ListLogServicesResponse

Result returned from `ListLogServicesRequest`.

Attributes

log_services[RW]

A list of log services. Corresponds to the JSON property `logServices` @return [Array<Google::Apis::LoggingV1beta3::LogService>]

next_page_token[RW]

If there are more results, then `nextPageToken` is returned in the response. To get the next batch of services, use the value of `nextPageToken` as ` pageToken` in the next call of `ListLogServices`. 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 386
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 391
def update!(**args)
  @log_services = args[:log_services] unless args[:log_services].nil?
  @next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
end