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