mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
313 B
Ruby
15 lines
313 B
Ruby
![]() |
module Fog
|
||
|
module Ninefold
|
||
|
class Compute
|
||
|
class Real
|
||
|
|
||
|
def associate_ip_address(options = {})
|
||
|
request('associateIpAddress', options, :expects => [200],
|
||
|
:response_prefix => 'associateipaddressresponse', :response_type => Hash)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|