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