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/start_instances.rb

39 lines
904 B
Ruby
Raw Normal View History

2010-07-23 00:52:27 -04:00
module Fog
module AWS
class EC2
2010-07-23 00:52:27 -04:00
class Real
require 'fog/aws/parsers/ec2/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::EC2::StartStopInstances.new
}.merge!(params))
end
end
class Mock
def start_instances(instance_id)
Fog::Mock.not_implemented
end
end
end
end
end