NAME
Net::OpenNebula::Host - Access OpenNebula Host Information.
DESCRIPTION
Query the Hoststatus of an OpenNebula host.
SYNOPSIS
use Net::OpenNebula;
my $one = Net::OpenNebula->new(
url => "http://server:2633/RPC2",
user => "oneadmin",
password => "onepass",
);
my ($host) = grep { $_->name eq "one-sandbox" } $one->get_hosts();
for my $vm ($host->vms) { ... }