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