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/linode/requests/compute/linode_update.rb
2012-05-17 11:31:15 -07:00

30 lines
707 B
Ruby

module Fog
module Compute
class Linode
class Real
def linode_update(linode_id, options={})
request(
:expects => 200,
:method => 'GET',
:query => { :api_action => 'linode.update', :linodeId => linode_id }.merge!(options)
)
end
end
class Mock
def linode_update(linode_id, options={})
response = Excon::Response.new
response.status = 200
response.body = {
"ERRORARRAY" => [],
"ACTION" => "linode.update",
"DATA" => { "LinodeID" => rand(1000..9999) }
}
response
end
end
end
end
end