Sha256: ac1bd56e821d0550b0b315f0339c6436b13a1ff0b0d604d4178ede50cf60ad4c
Contents?: true
Size: 633 Bytes
Versions: 27
Compression:
Stored size: 633 Bytes
Contents
class CloudFront < Mapper # # Returns an array of resources. # def collect resources = [] # # list_distributions # @client.list_distributions.each_with_index do |response, page| log(response.context.operation_name, page) # get_distribution response.distribution_list.items.each do |dist| struct = OpenStruct.new(dist.to_h) struct.type = 'distribution' struct.details = @client .get_distribution({ id: dist.id }) .distribution.to_h resources.push(struct.to_h) end end resources end end
Version data entries
27 entries across 27 versions & 1 rubygems