# File lib/fog/shared_file_system/openstack/models/shares.rb, line 10 def all(options = {}) load_response(service.list_shares_detail(options), 'shares') end
# File lib/fog/shared_file_system/openstack/models/shares.rb, line 21 def destroy(id) share = find_by_id(id) share.destroy end
# File lib/fog/shared_file_system/openstack/models/shares.rb, line 14 def find_by_id(id) share_hash = service.get_share(id).body['share'] new(share_hash.merge(:service => service)) end