Sha256: 8208eebd9fab4715cbfab53defbd5378cc27eaedcf78af337ac1f1fff1f33f9f

Contents?: true

Size: 580 Bytes

Versions: 41

Compression:

Stored size: 580 Bytes

Contents

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

Version data entries

41 entries across 41 versions & 2 rubygems

Version Path
fog-1.21.0 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/google/models/compute/snapshots.rb
fog-1.20.0 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/google/models/compute/snapshots.rb
fog-1.19.0 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/google/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/google/models/compute/snapshots.rb