Sha256: b049bf09cf0fa30da842d3e2b44d5f024335429d4820676b3ff6f0f9a41f849a
Contents?: true
Size: 616 Bytes
Versions: 27
Compression:
Stored size: 616 Bytes
Contents
class DirectoryService < Mapper # # Returns an array of resources. # # TODO: confirm paging behavior # def collect resources = [] # # describe_directories # @client.describe_directories.each_with_index do |response, page| log(response.context.operation_name, page) response.directory_descriptions.each do |directory| struct = OpenStruct.new(directory.to_h) struct.type = 'directory' struct.arn = "arn:aws:#{@service}:#{@region}::directory/#{directory.directory_id}" resources.push(struct.to_h) end end resources end end
Version data entries
27 entries across 27 versions & 1 rubygems