Class: Fog::Parsers::AWS::ECS::StopTask
- Inherits:
-
Task
- Object
- Base
- Base
- Task
- Fog::Parsers::AWS::ECS::StopTask
show all
- Defined in:
- lib/fog/aws/parsers/ecs/stop_task.rb
Instance Method Summary
collapse
Methods inherited from Task
#end_element, #start_element
Methods inherited from Base
#end_element, #start_element
Instance Method Details
#reset ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/fog/aws/parsers/ecs/stop_task.rb', line 8
def reset
super
@result = 'StopTaskResult'
@response[@result] = {'task' => {}}
@contexts = %w(task containers overrides networkBindings containerOverrides)
@context = []
@task = {}
@container = {}
@net_binding = {}
@container_overrides = []
end
|