mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
31 lines
786 B
Ruby
31 lines
786 B
Ruby
require 'fog/core/model'
|
|
|
|
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
|