Sha256: c0808c816a9fb299db3b6f72bf271c9b22263dd9b065272710c20553a69a209c
Contents?: true
Size: 439 Bytes
Versions: 27
Compression:
Stored size: 439 Bytes
Contents
class Transfer < Mapper # # Returns an array of resources. # def collect resources = [] # # list_servers # @client.list_servers.each_with_index do |response, page| log(response.context.operation_name, page) response.servers.each do |server| struct = OpenStruct.new(server.to_h) struct.type = 'server' resources.push(struct.to_h) end end resources end end
Version data entries
27 entries across 27 versions & 1 rubygems