1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/brightbox/models/compute/cloud_ip.rb

49 lines
1.1 KiB
Ruby

require 'fog/core/model'
module Fog
module Compute
class Brightbox
class CloudIp < Fog::Model
identity :id
attribute :url
attribute :resource_type
attribute :name
attribute :status
attribute :description
attribute :reverse_dns
attribute :public_ip
# Links - to be replaced
attribute :account_id, :aliases => "account", :squash => "id"
attribute :interface_id, :aliases => "interface", :squash => "id"
attribute :server_id, :aliases => "server", :squash => "id"
attribute :load_balancer, :alias => "load_balancer", :squash => "id"
def map(interface_to_map)
requires :identity
connection.map_cloud_ip(identity, :interface => interface_to_map)
end
def mapped?
status == "mapped"
end
def unmap
requires :identity
connection.unmap_cloud_ip(identity)
end
def destroy
requires :identity
connection.destroy_cloud_ip(identity)
end
end
end
end
end