Net-Cisco-ISE

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

use Module::Build;
# See perldoc Module::Build for details of how this works

Module::Build->new
    ( module_name     => 'Net::Cisco::ISE',
      license => 'gpl',
      requires => { 'Moose' => '>= 2.0',
                    'IO::Socket::SSL' => ' >= 2.0',
                    'LWP::UserAgent' => '6.15',
                    'XML::Simple' => '>= 2.0',
                    'MIME::Base64' => '3.15',
                    'URI' => '1.71',
                    'Module::Build' => '0.42'
      }
    )->create_build_script;

META.json  view on Meta::CPAN

   },
   "name" : "Net-Cisco-ISE",
   "prereqs" : {
      "configure" : {
         "requires" : {
            "Module::Build" : "0.42"
         }
      },
      "runtime" : {
         "requires" : {
            "IO::Socket::SSL" : "2.0",
            "LWP::UserAgent" : "6.15",
            "MIME::Base64" : "3.15",
            "Module::Build" : "0.42",
            "Moose" : "2.0",
            "URI" : "1.71",
            "XML::Simple" : "2.0"
         }
      }
   },
   "provides" : {

META.yml  view on Meta::CPAN

  Net::Cisco::ISE::InternalUser:
    file: lib/Net/Cisco/ISE/InternalUser.pm
    version: '0.06'
  Net::Cisco::ISE::NetworkDevice:
    file: lib/Net/Cisco/ISE/NetworkDevice.pm
    version: '0.06'
  Net::Cisco::ISE::NetworkDeviceGroup:
    file: lib/Net/Cisco/ISE/NetworkDeviceGroup.pm
    version: '0.06'
requires:
  IO::Socket::SSL: '2.0'
  LWP::UserAgent: '6.15'
  MIME::Base64: '3.15'
  Module::Build: '0.42'
  Moose: '2.0'
  URI: '1.71'
  XML::Simple: '2.0'
resources:
  license: http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt
version: '0.06'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

lib/Net/Cisco/ISE.pm  view on Meta::CPAN

package Net::Cisco::ISE;
use strict;
use Moose;

# REST IO stuff here
use IO::Socket::SSL qw( SSL_VERIFY_NONE );
use LWP::UserAgent;
use XML::Simple;

# Generics
use MIME::Base64;
use URI::Escape;
use Data::Dumper;

# Net::Cisco::ISE::*
use lib qw(.);

lib/Net/Cisco/ISE.pm  view on Meta::CPAN

For this library to work, you need an instance with Cisco ISE (obviously) or a simulator like L<Net::Cisco::ISE::Mock>. 

Instructions on enabling Cisco ISE for API access will be added later.

You will also need

=over 3

=item L<Moose>

=item L<IO::Socket::SSL>

=item L<LWP::UserAgent>

=item L<XML::Simple>

=item L<MIME::Base64>

=item L<URI::Escape>

=back



( run in 0.316 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )