Class: Fog::AWS::Compute::Snapshots

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Snapshots

Returns a new instance of Snapshots.



12
13
14
15
# File 'lib/fog/aws/models/compute/snapshots.rb', line 12

def initialize(attributes)
  self.filters ||= { 'RestorableBy' => 'self' }
  super
end

Instance Method Details

#all(filters_arg = filters, options = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/fog/aws/models/compute/snapshots.rb', line 17

def all(filters_arg = filters, options = {})
  unless filters_arg.is_a?(Hash)
    Fog::Logger.deprecation("all with #{filters_arg.class} param is deprecated, use all('snapshot-id' => []) instead [light_black](#{caller.first})[/]")
    filters_arg = {'snapshot-id' => [*filters_arg]}
  end
  filters = filters_arg
  data = service.describe_snapshots(filters.merge!(options)).body
  load(data['snapshotSet'])
  if volume
    self.replace(self.select {|snapshot| snapshot.volume_id == volume.id})
  end
  self
end

#get(snapshot_id) ⇒ Object



31
32
33
34
35
# File 'lib/fog/aws/models/compute/snapshots.rb', line 31

def get(snapshot_id)
  if snapshot_id
    self.class.new(:service => service).all('snapshot-id' => snapshot_id).first
  end
end

#new(attributes = {}) ⇒ Object



37
38
39
40
41
42
43
# File 'lib/fog/aws/models/compute/snapshots.rb', line 37

def new(attributes = {})
  if volume
    super({ 'volumeId' => volume.id }.merge!(attributes))
  else
    super
  end
end