Sha256: fc4323cf79a49415935179eb335be77175f2e2ea1833476838352c9fa9c4c96f
Contents?: true
Size: 993 Bytes
Versions: 20
Compression:
Stored size: 993 Bytes
Contents
require 'fog/openstack/models/collection' module Fog module OpenStack class Volume 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::OpenStack::Volume::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
20 entries across 20 versions & 3 rubygems