Subject: | Unknown argument resourceid for domain_resource_list at update.pl line 29 |
Searching for resources by resourceid and domainid not working... the problem is in
lib/WebService/Linode.pm line 31 on version 0.05. resourceid is typo'd as resouceid.
For anyone wanting to use this api call with the resourceid parameter... a workaround would be
to make a call like so...
my $resource = $api->do_request(
api_action => "domain_resource_list",
resourceid => $res->{resourceid},
domainid => $res->{domainid}
);
Thanks for publishing this module. It's very useful for linode users!