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/start_instances.rb
2011-01-07 16:52:09 -08:00

38 lines
916 B
Ruby

module Fog
module AWS
class Compute
class Real
require 'fog/compute/parsers/aws/start_stop_instances'
# Start specified instance
#
# ==== Parameters
# * instance_id<~Array> - Id of instance to start
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * TODO: fill in the blanks
def start_instances(instance_id)
params = AWS.indexed_param('InstanceId', instance_id)
request({
'Action' => 'StartInstances',
:idempotent => true,
:parser => Fog::Parsers::AWS::Compute::StartStopInstances.new
}.merge!(params))
end
end
class Mock
def start_instances(instance_id)
Fog::Mock.not_implemented
end
end
end
end
end