class Google::Apis::MemcacheV1::ListInstancesResponse

Response for ListInstances.

Attributes

instances[RW]

A list of Memcached instances in the project in the specified location, or across all locations. If the `location_id` in the parent field of the request is “-”, all regions available to the project are queried, and the results aggregated. Corresponds to the JSON property `instances` @return [Array<Google::Apis::MemcacheV1::Instance>]

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

unreachable[RW]

Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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