Sha256: ff13255123c1f5bcee27af67bc821f52aec9245ac5674a5668bac6c3502a2bd9
Contents?: true
Size: 491 Bytes
Versions: 33
Compression:
Stored size: 491 Bytes
Contents
module Fog module ContainerInfra class OpenStack 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
33 entries across 31 versions & 3 rubygems