Sha256: 1539e91141d993a05cc71ca9cd439340a4f1659aadd9ba219ad85efec26f8b6d
Contents?: true
Size: 492 Bytes
Versions: 20
Compression:
Stored size: 492 Bytes
Contents
module Fog module OpenStack class ContainerInfra class Real def delete_bay(uuid_or_name) request( :expects => [204], :method => 'DELETE', :path => "bays/#{uuid_or_name}" ) end end class Mock def delete_bay(_uuid_or_name) response = Excon::Response.new response.status = 204 response.body = {} response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems