Sha256: 03f5c55f5fe68c35351fec2280303fa8f768a3c5d05dde3af015a61fdb9fd9e2
Contents?: true
Size: 715 Bytes
Versions: 48
Compression:
Stored size: 715 Bytes
Contents
require 'fog/core/collection' require 'fog/aws/models/rds/parameter_group' module Fog module AWS class RDS class ParameterGroups < Fog::Collection model Fog::AWS::RDS::ParameterGroup def all data = connection.describe_db_parameter_groups.body['DescribeDBParameterGroupsResult']['DBParameterGroups'] load(data) # data is an array of attribute hashes end def get(identity) data = connection.describe_db_parameter_groups(identity).body['DescribeDBParameterGroupsResult']['DBParameterGroups'].first new(data) # data is an attribute hash rescue Fog::AWS::RDS::NotFound nil end end end end end
Version data entries
48 entries across 48 versions & 14 rubygems