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

32 lines
842 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/container_instance'
class DeregisterContainerInstance < Fog::Parsers::AWS::ECS::ContainerInstance
def reset
super
@result = 'DeregisterContainerInstanceResult'
@response[@result] = {}
@contexts = %w(registeredResources remainingResources stringSetValue)
@context = []
@container_instance = {}
@registered_resource = {}
@remaining_resource = {}
@string_set = []
end
def end_element(name)
super
case name
when 'containerInstance'
@response[@result][name] = @container_instance
end
end
end
end
end
end
end