Sha256: a13450ffa5585fa3c66cc499da9990034aed9bfaad68783e0bcc2ee6a0a142ca
Contents?: true
Size: 916 Bytes
Versions: 21
Compression:
Stored size: 916 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def update_action_execution(id, name, value) # valid values for name are: # state, output # https://github.com/openstack/python-mistralclient/blob/master/mistralclient/commands/v2/action_executions.py data = {:id => id} data[name] = Fog::JSON.encode(value) body = Fog::JSON.encode(data) request( :body => body, :expects => 200, :method => "PUT", :path => "action_executions" ) end end class Mock def update_action_execution(_id, _name, _value) response = Excon::Response.new response.status = 200 response.body = "" response end end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems