1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/parsers/ecs/start_task.rb

25 lines
685 B
Ruby
Raw Normal View History

2015-06-05 20:37:00 -04:00
module Fog
module Parsers
module AWS
module ECS
require 'fog/aws/parsers/ecs/task'
class StartTask < Fog::Parsers::AWS::ECS::Task
def reset
super
@result = 'StartTaskResult'
@response[@result] = {'failures' => [], 'tasks' => []}
@contexts = %w(failures tasks containers overrides networkBindings containerOverrides)
@context = []
@task = {}
@failure = {}
@container = {}
@net_binding = {}
@container_overrides = []
end
end
end
end
end
end