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/compute/requests/aws/reboot_instances.rb

55 lines
1.6 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2010-03-16 18:46:21 -04:00
class Real
2009-09-12 14:29:55 -04:00
require 'fog/compute/parsers/aws/basic'
2009-09-12 14:29:55 -04:00
# Reboot specified instances
#
# ==== Parameters
# * instance_id<~Array> - Ids of instances to reboot
#
# ==== Returns
# # * response<~Excon::Response>:
2009-09-12 14:29:55 -04:00
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-RebootInstances.html]
2009-09-12 14:29:55 -04:00
def reboot_instances(instance_id = [])
params = AWS.indexed_param('InstanceId', instance_id)
2009-09-12 14:29:55 -04:00
request({
'Action' => 'RebootInstances',
:idempotent => true,
2010-09-08 17:40:02 -04:00
:parser => Fog::Parsers::AWS::Compute::Basic.new
}.merge!(params))
2009-09-12 14:29:55 -04:00
end
2009-07-24 22:19:17 -04:00
end
2010-03-16 18:46:21 -04:00
class Mock
2009-09-12 14:29:55 -04:00
def reboot_instances(instance_id = [])
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2009-09-12 14:29:55 -04:00
instance_id = [*instance_id]
2011-05-19 18:35:33 -04:00
if (self.data[:instances].keys & instance_id).length == instance_id.length
2009-09-12 14:29:55 -04:00
for instance_id in instance_id
2011-05-19 18:35:33 -04:00
self.data[:instances][instance_id]['status'] = 'rebooting'
2009-09-12 14:29:55 -04:00
end
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
response
2009-09-12 14:29:55 -04:00
else
2010-09-09 20:50:38 -04:00
raise Fog::AWS::Compute::NotFound.new("The instance ID #{instance_id.inspect} does not exist")
2009-09-12 14:29:55 -04:00
end
end
end
2009-07-24 22:19:17 -04:00
end
end
end