Sha256: b372878214e09fdddf73d85b3b66070fb57e8d5bb32c38ced0daa9497b609787
Contents?: true
Size: 577 Bytes
Versions: 56
Compression:
Stored size: 577 Bytes
Contents
# frozen_string_literal: true # # Collect Kafka resources # class Kafka < Mapper # # Returns an array of resources. # # TODO: test live # def collect resources = [] # # list_clusters # @client.list_clusters.each_with_index do |response, page| log(response.context.operation_name, page) response.cluster_info_list.each do |cluster| struct = OpenStruct.new(cluster.to_h) struct.type = 'cluster' struct.arn = cluster.cluster_arn resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems