Sha256: 1cd8fc37257236f0d911c93166399dee79b0f83ed11dc622058ffa14e1c0e2ef
Contents?: true
Size: 528 Bytes
Versions: 31
Compression:
Stored size: 528 Bytes
Contents
module Fog module SharedFileSystem class OpenStack class Real def revoke_share_access(share_id, access_id) action = { "#{action_prefix}deny_access" => { 'access_id' => access_id } } share_action(share_id, action) end end class Mock def revoke_share_access(_share_id, _access_id) response = Excon::Response.new response.status = 202 response end end end end end
Version data entries
31 entries across 29 versions & 3 rubygems