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