API-Vultr
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use strict;
use warnings;
use utf8;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'API::Vultr',
VERSION_FROM => 'lib/API/Vultr.pm',
ABSTRACT => qq{A simple interface to the Vultr v2 API},
license => 'artistic_2',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => { version => 2 },
lib/API/Vultr.pm view on Meta::CPAN
return $self->_request( $self->_make_uri( '/iso', %query ) );
}
sub create_iso {
my ( $self, %body ) = @_;
return $self->_request( $self->_make_uri('/iso'), {%body} );
}
1;
=encoding utf8
=head1 Name
API::Vultr
=head1 Synopsis
A simple, and inuitive interface to the L<Vultr Api|https://https://www.vultr.com/api> using L<LWP::UserAgent>.
This does not cover the entire Vultr API, but instead intends to be very
( run in 1.184 second using v1.01-cache-2.11-cpan-49f99fa48dc )