Class: Fog::Compute::Google::Snapshots

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/compute/google/models/snapshots.rb

Instance Method Summary collapse

Instance Method Details

#allObject



7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/fog/compute/google/models/snapshots.rb', line 7

def all
  items = []
  next_page_token = nil
  loop do
    data = service.list_snapshots(:page_token => next_page_token)
    next_items = data.to_h[:items] || []
    items.concat(next_items)
    next_page_token = data.next_page_token
    break if next_page_token.nil? || next_page_token.empty?
  end
  load(items)
end

#get(identity) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'lib/fog/compute/google/models/snapshots.rb', line 20

def get(identity)
  if identity
    snapshot = service.get_snapshot(identity).to_h
    return new(snapshot)
  end
rescue ::Google::Apis::ClientError => e
  raise e unless e.status_code == 404
  nil
end