Sha256: 88ec2f14d8056e14c66de5d6dfca0135cd965814a00861b3900ca283e9e9795c

Contents?: true

Size: 608 Bytes

Versions: 22

Compression:

Stored size: 608 Bytes

Contents

module Fog
  module OpenStack
    class Workflow
      class V2
        class Real
          def get_action_execution(execution_id)
            request(
              :expects => 200,
              :method  => "GET",
              :path    => "action_executions/#{execution_id}"
            )
          end
        end

        class Mock
          def get_action_execution(_execution_id)
            response = Excon::Response.new
            response.status = 200
            response.body = {"state" => "running", "id" => "1111"}
            response
          end
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 3 rubygems

Version Path
fog-openstack-1.1.5 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.1.4 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.1.3 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.1.2 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-fork-99 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.1.0 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.1.0.pre lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-apibank-1.0.102 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.11 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-apibank-1.0.101 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.10 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.9 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.8 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.7 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.6 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.5 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.4 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.3 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.2 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb
fog-openstack-1.0.1 lib/fog/openstack/workflow/v2/requests/get_action_execution.rb