Sha256: e20cec2a666a19af860fe19d26dfce2b3c6a1253faa792301f093f4957e5f66b

Contents?: true

Size: 480 Bytes

Versions: 24

Compression:

Stored size: 480 Bytes

Contents

module Fog
  module Rackspace
    class Orchestration
      class Real
        def list_stack_events(stack, options={})
          uri = request_uri("stacks/#{stack.stack_name}/#{stack.id}/events", options)
          request(:method => 'GET', :path => uri, :expects => 200)
        end
      end

      class Mock
        def list_stack_events
          events = self.data[:events].values
          response(:body => { 'events' => events })
        end
      end
    end
  end
end

Version data entries

24 entries across 22 versions & 4 rubygems

Version Path
fog-1.29.0 lib/fog/rackspace/requests/orchestration/list_stack_events.rb
fog-1.28.0 lib/fog/rackspace/requests/orchestration/list_stack_events.rb
fog-1.27.0 lib/fog/rackspace/requests/orchestration/list_stack_events.rb
fog-1.26.0 lib/fog/rackspace/requests/orchestration/list_stack_events.rb