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/ibm/requests/compute/create_address.rb

28 lines
607 B
Ruby

module Fog
module Compute
class IBM
class Real
# Create an address
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>
# TODO: docs
def create_address(location, offering_id, vlan_id=nil)
request(
:method => 'POST',
:expects => 200,
:path => '/addresses',
:body => {
'offeringID' => offering_id,
'location' => location,
'vlanID' => vlan_id
}
)
end
end
end
end
end