mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00

This patch... 1. Adds the Snapshot collection and model 2. Adds the get/list requests 3. adds some examples
28 lines
580 B
Ruby
28 lines
580 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/google/models/compute/snapshot'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Google
|
|
|
|
class Snapshots < Fog::Collection
|
|
|
|
model Fog::Compute::Google::Snapshot
|
|
|
|
def all
|
|
data = service.list_snapshots(self.service.project)
|
|
snapshots = data.body['items'] || []
|
|
load(snapshots)
|
|
end
|
|
|
|
def get(snap_id)
|
|
response = service.get_snapshot(snap_id, self.service.project)
|
|
return nil if response.nil?
|
|
new(response.body)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|