Class: Google::Cloud::Bigtable::Instance::List

Inherits:
Array
  • Object
show all
Defined in:
lib/google/cloud/bigtable/instance/list.rb

Overview

Instance::List is a special-case array with additional values and failed_locations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#failed_locationsObject

Locations from which Instance information could not be retrieved, due to an outage or some other transient condition. Instances whose Clusters are all in one of the failed locations may be missing from instances, and Instances with at least one Cluster in a failed location may only have partial information returned.



40
41
42
# File 'lib/google/cloud/bigtable/instance/list.rb', line 40

def failed_locations
  @failed_locations
end

#tokenObject

If not empty, indicates that more records match the request and this value should be passed to continue.



33
34
35
# File 'lib/google/cloud/bigtable/instance/list.rb', line 33

def token
  @token
end

Instance Method Details

#all {|instance| ... } ⇒ Enumerator

Retrieves remaining results by repeatedly invoking #next until #next? returns false. Calls the given block once for each result, which is passed as the argument to the block.

An enumerator is returned if no block is given.

This method will make repeated API calls until all remaining results are retrieved (unlike #each, for example, which merely iterates over the results returned by a single API call). Use with caution.

Examples:

Iterating each instance by passing a block:

require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

bigtable.instances.all do |instance|
  puts instance.instance_id
end

Using the enumerator by not passing a block:

require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

all_instance_ids = bigtable.instances.all.map do |instance|
  puts instance.instance_id
end

Yields:

  • (instance)

    The block for accessing each instance.

Yield Parameters:

  • instance (Instance)

    The instance object.

Returns:

  • (Enumerator)


124
125
126
127
128
129
130
131
132
133
# File 'lib/google/cloud/bigtable/instance/list.rb', line 124

def all
  return enum_for(:all) unless block_given?

  results = self
  loop do
    results.each { |r| yield r }
    break unless results.next?
    results = results.next
  end
end

#nextInstance::List

Retrieves the next page of instances.

Examples:

require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

instances = bigtable.instances
if instances.next?
  next_instances = instances.next
end

Returns:



80
81
82
83
84
85
86
87
88
89
# File 'lib/google/cloud/bigtable/instance/list.rb', line 80

def next
  return nil unless next?
  ensure_service!
  grpc = service.list_instances(token: token)
  next_list = self.class.from_grpc(grpc, service)
  if failed_locations
    next_list.failed_locations.concat(failed_locations.map(&:to_s))
  end
  next_list
end

#next?Boolean

Whether there is a next page of instances.

Examples:

require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

instances = bigtable.instances
if instances.next?
  next_instances = instances.next
end

Returns:

  • (Boolean)


62
63
64
# File 'lib/google/cloud/bigtable/instance/list.rb', line 62

def next?
  !token.nil?
end