Sha256: d602c911c0906ec33a06ae62b71ece06f704de9932c0988612731372ea589ecb
Contents?: true
Size: 545 Bytes
Versions: 25
Compression:
Stored size: 545 Bytes
Contents
module Fog module Image class OpenStack class V2 class Real def remove_tag_from_image(image_id, tag) request( :expects => [204], :method => 'DELETE', :path => "images/#{image_id}/tags/#{tag}" ) end end class Mock def remove_tag_from_image(_image_id, _tag) response = Excon::Response.new response.status = 204 response end end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems