1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
package Api::Ocsinventory::Restapi::Ipdiscover::Get::Ipdiscover;
=for comment
This function return a array of multiple IPDiscover network
Params: start, limit
=cut
# Common sub for api
use Api::Ocsinventory::Restapi::ApiCommon;
use Mojo::JSON qw(decode_json encode_json);
sub get_ipdiscovers{
my ($start, $limit) = @_;
my $json_return;
my $query = "SELECT NETID FROM `netmap` GROUP BY NETID";
my $netmaps = Api::Ocsinventory::Restapi::ApiCommon::execute_custom_request($query, $start, $limit);
return encode_json($netmaps);
}
1;
|