Sha256: d664167afc357e9fd62b196ec9d703cbdbd95e6d2c47081027b13d2f7266e0a5
Contents?: true
Size: 520 Bytes
Versions: 21
Compression:
Stored size: 520 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def delete_action_execution(id) request( :expects => 204, :method => "DELETE", :path => "action_executions/#{id}" ) end end class Mock def delete_action_execution(_id) response = Excon::Response.new response.status = 204 response end end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems