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

23 lines
440 B
Ruby
Raw Normal View History

2010-04-22 00:38:49 -04:00
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
2010-04-22 00:38:49 -04:00
end
end
end
end