Sha256: 353b6c3b8105d27d5e4a066b96694d56f626a13cf814bdfc472cfe47cc09173b
Contents?: true
Size: 730 Bytes
Versions: 8
Compression:
Stored size: 730 Bytes
Contents
class SQS < Mapper # # Returns an array of resources. # def collect resources = [] # # list_queues # @client.list_queues.each_with_index do |response, page| log(response.context.operation_name, page) response.queue_urls.each do |queue| log(response.context.operation_name, queue.downcase.split('/').last, page) # get_queue_attributes struct = OpenStruct.new(@client.get_queue_attributes({ queue_url: queue, attribute_names: ['All'] }).attributes.to_h) struct.type = 'queue' struct.arn = struct.QueueArn struct.Policy = JSON.parse(CGI.unescape(struct.Policy)) resources.push(struct.to_h) end end resources end end
Version data entries
8 entries across 8 versions & 1 rubygems