Sha256: a7fd607a6a2aaf5fba7c468dc9122bc4eae90798c2d5149cd99e1ec0038d88c9
Contents?: true
Size: 643 Bytes
Versions: 23
Compression:
Stored size: 643 Bytes
Contents
class DatabaseMigrationService < Mapper # # Returns an array of resources. # def collect resources = [] # # describe_replication_instances # @client.describe_replication_instances.each_with_index do |response, page| log(response.context.operation_name, page) response.replication_instances.each do |instance| struct = OpenStruct.new(instance.to_h) struct.type = 'replication_instance' struct.arb = "arn:aws:#{@service}:#{@region}::replication_instance/#{instance.replication_instance_identifier}" resources.push(struct.to_h) end end resources end end
Version data entries
23 entries across 23 versions & 1 rubygems