Sha256: eb3e6b13b9d796369f18faedd38c4028821a0f6ee0780f39b9a1bd6b8778fff2

Contents?: true

Size: 685 Bytes

Versions: 69

Compression:

Stored size: 685 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module ECS
        require 'fog/aws/parsers/ecs/task'

        class StartTask < Fog::Parsers::AWS::ECS::Task
          def reset
            super
            @result = 'StartTaskResult'
            @response[@result] = {'failures' => [], 'tasks' => []}
            @contexts = %w(failures tasks containers overrides networkBindings containerOverrides)
            @context             = []
            @task                = {}
            @failure             = {}
            @container           = {}
            @net_binding         = {}
            @container_overrides = []
          end
        end
      end
    end
  end
end

Version data entries

69 entries across 67 versions & 3 rubygems

Version Path
fog-aws-0.8.0 lib/fog/aws/parsers/ecs/start_task.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.7.6 lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.7.5 lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.7.4 lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.7.3 lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.7.2 lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.6.0 lib/fog/aws/parsers/ecs/start_task.rb
fog-aws-0.5.0 lib/fog/aws/parsers/ecs/start_task.rb