NAME
VM::JiffyBox::Box - Representation of a Virtual Machine in JiffyBox
VERSION
version 0.002
SYNOPSIS
use VM::JiffyBox;
my $jiffy = VM::JiffyBox->new($token);
my $box_id = $jiffy->get_id_from_name($box_name);
my $box = $jiffy->get_vm($box_id);
my $backup_id = $box->get_backup_id();
my $new_box = $jiffy->create_vm($backup_id);
$new_box->start();
my $new_box_details = $new_box->get_details();
$new_box->stop();
$new_box->delete();
1;
PLEASE NOTE
This module ist still under heavy development and a TRIAL version. We do not recommend to use or even test it.
METHODS
get_backup_id()
get_details()
start()
stop()
delete()
SEE ALSO
AUTHOR
Tim Schwarz <todo@todo.de>, Boris Däppen <boris_daeppen@bluewin.ch>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Tim Schwarz, Boris Däppen, plusW.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.