NAME
DigitalOcean - An OO interface to the DigitalOcean API.
VERSION
Version 0.01
SYNOPSIS
This is a BETA release. I have not finished writing the documentation for all of the DigitalOcean objects yet, and I still have some tests to write. The current module is for the adventurous and daring to make use of as they please!
use DigitalOcean;
my $do = DigitalOcean->new(client_id=> $client_id, api_key => $api_key);
for my $droplet (@{$do->droplets}) {
print "Droplet " . $droplet->name . " has id " . $droplet->id . "\n";
}
my $droplet = $do->droplet($droplet_id);
$droplet->reboot;
$droplet->power_off;
$droplet->power_on;
$droplet->destroy;
my $new_droplet = $do->create_droplet(
name => 'new_droplet',
size_id => $size_id,
image_id => $image_id,
region_id => $region_id,
);
$new_droplet->enable_backups;
SUBROUTINES/METHODS
droplets
This will return an array reference of DigitalOcean::Droplet objects.
my $droplets = $do->droplets;
for my $droplet (@{$droplets}) {
print $droplet->name . "\n";
}
create_droplet
This will create a new droplet and return a DigitalOcean::Droplet object. The parameters are:
name Required, String, this is the name of the droplet - must be formatted by hostname rules
size_id Required, Numeric, this is the id of the size you would like the droplet created at
image_id Required, Numeric, this is the id of the image you would like the droplet created with
region_id Required, Numeric, this is the id of the region you would like your server in
ssh_key_ids Optional, Numeric CSV, comma separated list of ssh_key_ids that you would like to be added to the server
my $new_droplet = $do->create_droplet(
name => 'new_droplet',
size_id => $size_id,
image_id => $image_id,
region_id => $region_id,
);
droplet
This will retrieve a droplet by id and return a DigitalOcean::Droplet object.
my $droplet = $do->droplet(56789);
regions
This will return an array reference of DigitalOcean::Region objects.
my $regions = $do->regions;
for my $region (@{$regions}) {
print $region->name . "\n";
}
images
This will return an array reference of DigitalOcean::Image objects.
my $images = $do->images;
for my $image (@{$images}) {
print $image->name . "\n";
}
image
This will retrieve an image by id and return a DigitalOcean::Image object.
my $image = $do->image(56789);
sizes
This will return an array reference of DigitalOcean::Size objects.
my $sizes = $do->sizes;
for my $size (@{$sizes}) {
print $size->name . "\n";
}
ssh_keys
This will return an array reference of DigitalOcean::SSH::Key objects.
my $ssh_keys = $do->ssh_keys;
for my $ssh_key (@{$ssh_keys}) {
print $ssh_key->name . "\n";
}
create_ssh_key
This will create a new ssh key and return a DigitalOcean::SSH::Key object. The parameters are:
name Required, String, the name you want to give this SSH key.
ssh_key_pub Required, String, the actual public SSH key.
my $new_ssh_key = $do->create_ssh_key(
name => 'new_ssh_key',
ssh_key_pub => $ssh_key_pub,
);
ssh_key
This will retrieve an ssh_key by id and return a DigitalOcean::SSH::Key object.
my $ssh_key = $do->ssh_key(56789);
domains
This will return an array reference of DigitalOcean::Domain objects.
my $domains = $do->domains;
for my $domain (@{$domains}) {
print $domain->name . "\n";
}
create_domain
This will create a new domain and return a DigitalOcean::Domain object. The parameters are:
name Required, String, the domain name
ip_address Required, String, IP address for the domain's initial A record.
my $new_ssh_key = $do->create_ssh_key(
name => 'new_ssh_key',
ssh_key_pub => $ssh_key_pub,
);
domain
This will retrieve a domain by id and return a DigitalOcean::Domain object.
my $domain = $do->domain(56789);
AUTHOR
Adam Hopkins, <srchulo at cpan.org>
BUGS
Please report any bugs or feature requests to bug-webservice-digitalocean at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DigitalOcean. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc DigitalOcean
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2013 Adam Hopkins.
This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:
http://www.perlfoundation.org/artistic_license_2_0
Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.