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