Sha256: 9e4c0c010c306363a83235bf7c10509744f8c4c91126d7be6af1ff5ce0d53a2c
Contents?: true
Size: 952 Bytes
Versions: 69
Compression:
Stored size: 952 Bytes
Contents
module Fog module Parsers module AWS module ECS require 'fog/aws/parsers/ecs/task_definition' class DeregisterTaskDefinition < Fog::Parsers::AWS::ECS::TaskDefinition def reset @response = {} @result = 'DeregisterTaskDefinitionResult' @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
Version data entries
69 entries across 67 versions & 3 rubygems