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/compute/route_table.rb
Paulo Henrique Lopes Ribeiro 722bbdfa45 Remove unecessary requires
2015-04-06 11:23:35 -03:00

64 lines
1.5 KiB
Ruby

module Fog
module Compute
class AWS
class RouteTable < Fog::Model
identity :id, :aliases => 'routeTableId'
attribute :vpc_id, :aliases => 'vpcId'
attribute :routes, :aliases => 'routeSet'
attribute :associations, :aliases => 'associationSet'
attribute :tags, :aliases => 'tagSet'
def initialize(attributes={})
super
end
# Remove an existing route table
#
# route_tables.destroy
#
# ==== Returns
#
# True or false depending on the result
#
def destroy
requires :id
service.delete_route_table(id)
true
end
# Create a route table
#
# >> routetable = connection.route_tables.new
# >> routetable.save
#
# == Returns:
#
# True or an exception depending on the result. Keep in mind that this *creates* a new route table.
#
def save
requires :vpc_id
data = service.create_route_table(vpc_id).body['routeTable'].first
new_attributes = data.reject {|key,value| key == 'requestId'}
merge_attributes(new_attributes)
true
end
private
def associationSet=(new_association_set)
merge_attributes(new_association_set.first || {})
end
def routeSet=(new_route_set)
merge_attributes(new_route_set || {})
end
end
end
end
end