Sha256: f066941953ab415864067ffc1e1790f69d0a2bc28a9d4aa09d3a31ac0c824c23
Contents?: true
Size: 813 Bytes
Versions: 54
Compression:
Stored size: 813 Bytes
Contents
# frozen_string_literal: true # # Collect ElasticSearch resources # class ElasticsearchService < Mapper # # Returns an array of resources. # def collect resources = [] # # list_domain_names # @client.list_domain_names.each_with_index do |response, page| log(response.context.operation_name, page) response.domain_names.each do |domain| log(response.context.operation_name, 'describe_elasticsearch_domain', page) # describe_elasticsearch_domains struct = OpenStruct.new(@client.describe_elasticsearch_domain({ domain_name: domain.domain_name }).domain_status.to_h) struct.type = 'domain' struct.access_policies = struct.access_policies&.parse_policy resources.push(struct.to_h) end end resources end end
Version data entries
54 entries across 54 versions & 1 rubygems