Class: Fog::AWS::RDS::Snapshots
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::AWS::RDS::Snapshots
- Defined in:
- lib/fog/aws/models/rds/snapshots.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #get(identity) ⇒ Object
-
#initialize(attributes) ⇒ Snapshots
constructor
A new instance of Snapshots.
- #new(attributes = {}) ⇒ Object
Methods inherited from Collection
#clear, #create, #destroy, #inspect, #load, model, #model, #reload, #table, #to_json
Methods included from Fog::Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
#initialize(attributes) ⇒ Snapshots
Returns a new instance of Snapshots.
13 14 15 16 17 18 19 20 21 22 |
# 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 |
Instance Method Details
#all(filters = filters) ⇒ Object
24 25 26 27 28 |
# File 'lib/fog/aws/models/rds/snapshots.rb', line 24 def all(filters = filters) self.filters = filters data = connection.describe_db_snapshots(filters).body['DescribeDBSnapshotsResult']['DBSnapshots'] load(data) # data is an array of attribute hashes end |
#get(identity) ⇒ Object
30 31 32 33 34 35 |
# File 'lib/fog/aws/models/rds/snapshots.rb', line 30 def get(identity) data = connection.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 = {}) ⇒ Object
37 38 39 40 41 42 43 |
# 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 |