Sha256: 0e330d1f27b25ae42703831471c89f896e96df17181717ac7494a53760025e5d
Contents?: true
Size: 545 Bytes
Versions: 22
Compression:
Stored size: 545 Bytes
Contents
module Fog module OpenStack class Image 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
22 entries across 22 versions & 3 rubygems