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/terremark/requests/shared/delete_public_ip.rb
2011-02-09 16:31:57 -08:00

22 lines
440 B
Ruby

module Fog
module Terremark
module Shared
module Real
# Destroy a public ip
#
# ==== Parameters
# * public_ip_id<~Integer> - Id of public ip to destroy
#
def delete_public_ip(public_ip_id)
request(
:expects => 200,
:method => 'DELETE',
:path => "publicIps/#{public_ip_id}"
)
end
end
end
end
end