mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
23 lines
616 B
Ruby
23 lines
616 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ECS
|
|
require 'fog/aws/parsers/ecs/task'
|
|
|
|
class StopTask < Fog::Parsers::AWS::ECS::Task
|
|
def reset
|
|
super
|
|
@result = 'StopTaskResult'
|
|
@response[@result] = {'task' => {}}
|
|
@contexts = %w(task containers overrides networkBindings containerOverrides)
|
|
@context = []
|
|
@task = {}
|
|
@container = {}
|
|
@net_binding = {}
|
|
@container_overrides = []
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|