http://www.perlmonks.org?node_id=1228333


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);