Sha256: 06e855bd4163594b13dc5f4fe5a5e0bfdf8d880dff2c4c3238c0f98edb6d359d
Contents?: true
Size: 645 Bytes
Versions: 14
Compression:
Stored size: 645 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 Real class Mock def remove_tag_from_image(_image_id, _tag) response = Excon::Response.new response.status = 204 response end # def remove_tag_from_image end # class Mock end # class OpenStack end end # module Image end # module Fog
Version data entries
14 entries across 14 versions & 1 rubygems