Sha256: bd17a46589e1945103a3e1ec79b5d0de801815f9adf81a5070d0fc92bf6194ca
Contents?: true
Size: 993 Bytes
Versions: 39
Compression:
Stored size: 993 Bytes
Contents
require 'fog/openstack/models/collection' module Fog module Volume class OpenStack module Transfers def all(options = {}) load_response(service.list_transfers_detailed(options), 'transfers') end def summary(options = {}) load_response(service.list_transfers(options), 'transfers') end def get(transfer_id) if transfer = service.get_transfer_details(transfer_id).body['transfer'] new(transfer) end rescue Fog::Volume::OpenStack::NotFound nil end def accept(transfer_id, auth_key) # NOTE: This is NOT a method on the Transfer object, since the # receiver cannot see the transfer object in the get_transfer_details # or list_transfers(_detailed) requests. if transfer = service.accept_transfer(transfer_id, auth_key).body['transfer'] new(transfer) end end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems