Sha256: b6230ffe008ff50d65fdb026443d6c0e7dc4f03038a73ee25811b4827ea2082f
Contents?: true
Size: 547 Bytes
Versions: 4
Compression:
Stored size: 547 Bytes
Contents
module Fog module Image class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems