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/aws/requests/ec2/reboot_instances.rb
2009-07-24 19:23:05 -07:00

24 lines
608 B
Ruby

module Fog
module AWS
class EC2
# Reboot specified instances
#
# ==== Parameters
# * instance_id<~Array> - Ids of instances to reboot
#
# ==== Returns
# # * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * :request_id<~String> - Id of request
# * :return<~Boolean> - success?
def reboot_instances(instance_id = [])
params = indexed_params('InstanceId', instance_id)
request({
'Action' => 'RebootInstances'
}.merge!(params), Fog::Parsers::AWS::EC2::Basic.new)
end
end
end
end