Sha256: 0b45e65aefb0313855f17184f5e70fc55a33c55ffc6ccbab7ba7b6f007f2cfb1
Contents?: true
Size: 527 Bytes
Versions: 22
Compression:
Stored size: 527 Bytes
Contents
module Fog module OpenStack class Image class V2 class Real def reactivate_image(image_id) request( :expects => 204, :method => 'POST', :path => "images/#{image_id}/actions/reactivate" ) end end class Mock def reactivate_image(_image_id) response = Excon::Response.new response.status = 204 response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems