2011-07-18 22:45:47 -04:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Rackspace
|
2011-08-04 17:21:22 -04:00
|
|
|
class LoadBalancers
|
2011-07-18 22:45:47 -04:00
|
|
|
class VirtualIp < Fog::Model
|
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :address
|
|
|
|
attribute :type
|
|
|
|
attribute :ip_version, :aliases => 'ipVersion'
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
requires :identity, :load_balancer
|
2012-12-22 18:24:03 -05:00
|
|
|
service.delete_virtual_ip(load_balancer.identity, identity)
|
2011-07-18 22:45:47 -04:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
2012-12-22 21:45:05 -05:00
|
|
|
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
|
2011-07-18 22:45:47 -04:00
|
|
|
requires :load_balancer, :type
|
2012-12-22 18:24:03 -05:00
|
|
|
data = service.create_virtual_ip(load_balancer.id, type)
|
2011-07-18 22:45:47 -04:00
|
|
|
merge_attributes(data.body)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def load_balancer
|
|
|
|
collection.load_balancer
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|