Methods

Class/Module Index [+]

Quicksearch

Fog::AWS::RDS::Snapshots

Public Class Methods

new(attributes) click to toggle source
# File lib/fog/aws/models/rds/snapshots.rb, line 13
def initialize(attributes)
  self.filters ||= {}
  if attributes[:server]
    filters[:identifier] = attributes[:server].id
  end
  if attributes[:type]
    filters[:type] = attributes[:type]
  end
  super
end

Public Instance Methods

all(filters = filters) click to toggle source
# File lib/fog/aws/models/rds/snapshots.rb, line 24
def all(filters = filters)
  self.filters = filters
  data = service.describe_db_snapshots(filters).body['DescribeDBSnapshotsResult']['DBSnapshots']
  load(data) # data is an array of attribute hashes
end
get(identity) click to toggle source
# File lib/fog/aws/models/rds/snapshots.rb, line 30
def get(identity)
  data = service.describe_db_snapshots(:snapshot_id => identity).body['DescribeDBSnapshotsResult']['DBSnapshots'].first
  new(data) # data is an attribute hash
rescue Fog::AWS::RDS::NotFound
  nil
end
new(attributes = {}) click to toggle source
# File lib/fog/aws/models/rds/snapshots.rb, line 37
def new(attributes = {})
  if server
    super({ :instance_id => server.id }.merge!(attributes))
  else
    super
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.