1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/rds/subnet_group.rb

30 lines
760 B
Ruby
Raw Normal View History

module Fog
module AWS
class RDS
class SubnetGroup < Fog::Model
identity :id, :aliases => ['DBSubnetGroupName', :name]
attribute :description, :aliases => 'DBSubnetGroupDescription'
attribute :status, :aliases => 'SubnetGroupStatus'
attribute :vpc_id, :aliases => 'VpcId'
attribute :subnet_ids, :aliases => 'Subnets'
def ready?
requires :status
status == 'Complete'
end
def save
requires :description, :id, :subnet_ids
service.create_db_subnet_group(id, subnet_ids, description)
reload
end
def destroy
requires :id
service.delete_db_subnet_group(id)
end
end
end
end
end