Sha256: 9af2ec3a97baf9c9045d830d4e7d1783a01aa6a63057f2438d3dd7a103b13b09
Contents?: true
Size: 608 Bytes
Versions: 42
Compression:
Stored size: 608 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def update_action(definition) body = Fog::JSON.encode(definition) request( :body => body, :expects => 200, :method => "PUT", :path => "actions" ) end end class Mock def update_action(_definition) response = Excon::Response.new response.status = 200 response.body = "" response end end end end end end
Version data entries
42 entries across 40 versions & 3 rubygems