Class: Fog::AWS::RDS::ParameterGroups

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



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

def all
  data = service.describe_db_parameter_groups.body['DescribeDBParameterGroupsResult']['DBParameterGroups']
  load(data) # data is an array of attribute hashes
end

#get(identity) ⇒ Object



17
18
19
20
21
22
# File 'lib/fog/aws/models/rds/parameter_groups.rb', line 17

def get(identity)
  data = service.describe_db_parameter_groups(identity).body['DescribeDBParameterGroupsResult']['DBParameterGroups'].first
  new(data) # data is an attribute hash
rescue Fog::AWS::RDS::NotFound
  nil
end