class Google::Apis::LoggingV1beta3::ListLogServiceIndexesResponse

Result returned from ListLogServiceIndexesRequest.

Attributes

next_page_token[RW]

If there are more results, then `nextPageToken` is returned in the response. To get the next batch of indexes, use the value of `nextPageToken` as ` pageToken` in the next call of `ListLogServiceIndexes`. If `nextPageToken` is empty, then there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]

service_index_prefixes[RW]

A list of log service index values. Each index value has the form `“/value1/ value2/…”`, where `value1` is a value in the primary index, `value2` is a value in the secondary index, and so forth. Corresponds to the JSON property `serviceIndexPrefixes` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/logging_v1beta3/classes.rb, line 449
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 454
def update!(**args)
  @service_index_prefixes = args[:service_index_prefixes] unless args[:service_index_prefixes].nil?
  @next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
end