Sha256: 694b47f5cbda03ed0283df69d6528e4129933ecd3ed8209b5ce3ab714bad86a5
Contents?: true
Size: 576 Bytes
Versions: 56
Compression:
Stored size: 576 Bytes
Contents
# frozen_string_literal: true # # Collect EFS resources # 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
56 entries across 56 versions & 1 rubygems