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/describe_task_definition.rb
2015-06-05 21:39:54 -03:00

32 lines
939 B
Ruby

module Fog
module Parsers
module AWS
module ECS
require 'fog/aws/parsers/ecs/task_definition'
class DescribeTaskDefinition < Fog::Parsers::AWS::ECS::TaskDefinition
def reset
super
@result = 'DescribeTaskDefinitionResult'
@definition = 'taskDefinition'
@response[@result] = {
@definition => {
'volumes' => [],
'containerDefinitions' => []
}
}
@contexts = %w(volumes containerDefinitions command entryPoint environment links mountPoints portMappings volumesFrom)
@context = []
@volume = {}
@host = {}
@container = {}
@environment = {}
@mountpoint = {}
@portmapping = {}
@volume_from = {}
end
end
end
end
end
end