in reply to print a hash reference

You do have an array of objects, but an object is not an IP. @retrieved_objs is a list of Infoblox::DNS::Record::A objects.

Infoblox::DNS::Record::A provides you some methods to do what you want.

Try
print $_->ipv4addr(),"\n" for (@retrieved_objs);

Replies are listed 'Best First'.
Re^2: print a hash reference
by vedas (Novice) on Jan 10, 2019 at 22:43 UTC
    Thanks guys, I think I understand what is going on now. I appreciate your assistance.