2010-03-16 18:46:21 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-03 04:11:45 -04:00
|
|
|
class EC2
|
2010-03-16 18:46:21 -04:00
|
|
|
class Real
|
2009-09-12 14:29:55 -04:00
|
|
|
|
|
|
|
# Reboot specified instances
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * instance_id<~Array> - Ids of instances to reboot
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# # * response<~Excon::Response>:
|
2009-09-12 14:29:55 -04:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'return'<~Boolean> - success?
|
|
|
|
def reboot_instances(instance_id = [])
|
2010-01-31 17:07:26 -05:00
|
|
|
params = AWS.indexed_param('InstanceId', instance_id)
|
2009-09-12 14:29:55 -04:00
|
|
|
request({
|
2010-05-24 17:22:35 -04:00
|
|
|
'Action' => 'RebootInstances',
|
|
|
|
:idempotent => true,
|
|
|
|
:parser => Fog::Parsers::AWS::EC2::Basic.new
|
2010-03-16 01:15:33 -04:00
|
|
|
}.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]
|
2010-03-16 18:46:21 -04:00
|
|
|
if (@data[:instances].keys & instance_id).length == instance_id.length
|
2009-09-12 14:29:55 -04:00
|
|
|
for instance_id in instance_id
|
2010-03-16 18:46:21 -04:00
|
|
|
@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
|
|
|
|
}
|
2010-05-26 01:26:20 -04:00
|
|
|
response
|
2009-09-12 14:29:55 -04:00
|
|
|
else
|
2010-05-26 21:03:22 -04:00
|
|
|
raise Fog::AWS::EC2::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
|