mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
421 B
Ruby
29 lines
421 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Terremark
|
|
module Shared
|
|
|
|
class Address < Fog::Model
|
|
|
|
identity :id
|
|
|
|
attribute :ip, :aliases => 'name'
|
|
|
|
def destroy
|
|
requires :id
|
|
connection.delete_public_ip(id)
|
|
true
|
|
end
|
|
|
|
private
|
|
|
|
def href=(new_href)
|
|
self.id = new_href.split('/').last.to_i
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|