Class: Google::Apis::LoggingV1beta3::ListLogServiceIndexesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/logging_v1beta3/classes.rb,
generated/google/apis/logging_v1beta3/representations.rb,
generated/google/apis/logging_v1beta3/representations.rb

Overview

Result returned from ListLogServiceIndexesRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListLogServiceIndexesResponse

Returns a new instance of ListLogServiceIndexesResponse.



449
450
451
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 449

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


447
448
449
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 447

def next_page_token
  @next_page_token
end

#service_index_prefixesArray<String>

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

Returns:

  • (Array<String>)


439
440
441
# File 'generated/google/apis/logging_v1beta3/classes.rb', line 439

def service_index_prefixes
  @service_index_prefixes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



454
455
456
457
# 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