mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
440 B
Ruby
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
|