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