Class: Google::Cloud::Spanner::Backup::Job::List Deprecated
- Inherits:
-
Array
- Object
- Array
- Google::Cloud::Spanner::Backup::Job::List
- Defined in:
- lib/google/cloud/spanner/backup/job/list.rb
Overview
Deprecated.
Use the result of Admin::Database.database_admin.list_backup_operations instead.
List
List is a special case Array with additional values for backup operations.
Instance Method Summary collapse
- #all {|job| ... } ⇒ Enumerator
-
#next ⇒ Backup::Job::List
Retrieve the next page of backup jobs.
-
#next? ⇒ Boolean
Whether there is a next page of backup jobs.
Instance Method Details
#all {|job| ... } ⇒ 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.
139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/google/cloud/spanner/backup/job/list.rb', line 139 def all &block return enum_for :all unless block_given? results = self loop do results.each(&block) break unless next? grpc.next_page results = self.class.from_grpc grpc, service end end |
#next ⇒ Backup::Job::List
Retrieve the next page of backup jobs.
89 90 91 92 93 94 95 |
# File 'lib/google/cloud/spanner/backup/job/list.rb', line 89 def next ensure_service! return nil unless next? grpc.next_page self.class.from_grpc grpc, service end |
#next? ⇒ Boolean
Whether there is a next page of backup jobs.
68 69 70 |
# File 'lib/google/cloud/spanner/backup/job/list.rb', line 68 def next? grpc.next_page? end |