google-cloud-bigtable - Class Google::Cloud::Bigtable::AppProfile::List (v2.6.5)

Reference documentation and code samples for the google-cloud-bigtable class Google::Cloud::Bigtable::AppProfile::List.

AppProfile::List is a special-case array with additional values.

Inherits

  • Array

Methods

#all

def all(&block) { |app_profile| ... } -> Enumerator, nil

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.

Yields
  • (app_profile) — The block for accessing each app profile.
Yield Parameter
  • app_profile (AppProfile) — The app profile object.
Returns
  • (Enumerator, nil) — An enumerator is returned if no block is given, otherwise nil.
Examples

Iterating each app profile by passing a block:

require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

instance = bigtable.instance "my-instance"
app_profiles = instance.app_profiles

instance.app_profiles.all do |app_profile|
  puts app_profile.name
end

Using the enumerator by not passing a block:

require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

instance = bigtable.instance "my-instance"

all_app_profile_ids = instance.app_profiles.all.map(&:name)

#next

def next() -> AppProfile::List

Retrieves the next page of app profiles.

Returns
Example
require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

instance = bigtable.instance "my-instance"
app_profiles = instance.app_profiles

if app_profiles.next?
  next_app_profiles = app_profiles.next
end

#next?

def next?() -> Boolean

Whether there is a next page of app profiles.

Returns
  • (Boolean)
Example
require "google/cloud/bigtable"

bigtable = Google::Cloud::Bigtable.new

instance = bigtable.instance "my-instance"
app_profiles = instance.app_profiles

if app_profiles.next?
  next_app_profiles = app_profiles.next
end