Sha256: 1af5086d909c9c657ba2d372f75ef4821c53ad32157ea49654734fc5ca8d7036
Contents?: true
Size: 582 Bytes
Versions: 4
Compression:
Stored size: 582 Bytes
Contents
module Fog module Image class HuaweiCloud class V1 class Real def add_member_to_image(image_id, tenant_id) request( :expects => [200, 204], :method => 'PUT', :path => "images/#{image_id}/members/#{tenant_id}" ) end end class Mock def add_member_to_image(_image_id, _tenant_id) response = Excon::Response.new response.status = [200, 204][rand(2)] response end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems