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
495 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 => "api/extensions/v1.6/publicIp/#{public_ip_id}",
:override_path => true
)
end
end
end
end
end