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

32 lines
755 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/service'
class UpdateService < Fog::Parsers::AWS::ECS::Service
def reset
super
@result = 'UpdateServiceResult'
@response[@result] = {}
@contexts = %w(service loadBalancers events deployments)
@service = {}
@context = []
@deployment = {}
@load_balancer = {}
@event = {}
end
def end_element(name)
super
case name
when 'service'
@response[@result]['service'] = @service
end
end
end
end
end
end
end