package Net::Cisco::ACS::IdentityGroup; use strict; use Moose; BEGIN { use Exporter (); use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS %actions); $VERSION = '0.03'; @ISA = qw(Exporter); @EXPORT = qw(); @EXPORT_OK = qw(); %EXPORT_TAGS = (); }; %actions = ( "query" => "/Rest/Identity/IdentityGroup", "create" => "/Rest/Identity/IdentityGroup", "update" => "/Rest/Identity/IdentityGroup", "getByName" => "/Rest/Identity/IdentityGroup/name/", "getById" => "/Rest/Identity/IdentityGroup/id/", ); # MOOSE! has 'description' => ( is => 'rw', isa => 'Any', ); has 'id' => ( is => 'rw', isa => 'Str', ); has 'name' => ( is => 'rw', isa => 'Str', ); # No Moose sub toXML { my $self = shift; my $id = $self->id; my $description = $self->description || ""; my $name = $self->name || ""; my $result = ""; if ($id) { $result = " $id\n"; } $result .= <$description $name XML return $result; } sub header { my $self = shift; my $users = shift; return qq{$users}; } =head1 NAME Net::Cisco::ACS::IdentityGroup - Access Cisco ACS functionality through REST API - IdentityGroup (usergroup) fields =head1 SYNOPSIS use Net::Cisco::ACS; use Net::Cisco::ACS::IdentityGroup; my $acs = Net::Cisco::ACS->new(hostname => '10.0.0.1', username => 'acsadmin', password => 'testPassword'); my $identitygroup = Net::Cisco::ACS::IdentityGroup->new("name"=>"All Groups:MilleniumCrew","description"=>"Han, Chewie, Finn and Rey"); my %identitygroups = $acs->identitygroups; # Retrieve all identitygroups from ACS # Returns hash with name / Net::Cisco::ACS::IdentityGroup pairs print $acs->identitygroups->{"All Groups"}->toXML; # Dump in XML format (used by ACS for API calls) my $identitygroup = $acs->identitygroups("name","All Groups"); # Faster call to request specific identity group information by name my $identitygroup = $acs->identitygroups("id","150"); # Faster call to request specific identity group information by ID (assigned by ACS, present in Net::Cisco::ACS::IdentityGroup) $identitygroup->id(0); # Required for new record! my $id = $acs->create($identitygroup); # Create new identity group based on Net::Cisco::ACS::IdentityGroup instance # Return value is ID generated by ACS print "Record ID is $id" if $id; print $Net::Cisco::ACS::ERROR unless $id; # $Net::Cisco::ACS::ERROR contains details about failure my $id = $acs->update($identitygroup); # Update existing identitygroup based on Net::Cisco::ACS::IdentityGroup instance # Return value is ID generated by ACS print "Record ID is $id" if $id; print $Net::Cisco::ACS::ERROR unless $id; # $Net::Cisco::ACS::ERROR contains details about failure $acs->delete($identitygroup); # Delete existing identity group based on Net::Cisco::ACS::IdentityGroup instance =head1 DESCRIPTION The Net::Cisco::ACS::IdentityGroup class holds all the user group relevant information from Cisco ACS 5.x. See also the C method in L. =head1 USAGE All calls are typically handled through an instance of the L class. L acts as a container for user related information. =over 3 =item new Class constructor. Returns object of Net::Cisco::ACS::IdentityGroup on succes. The following fields can be set / retrieved: =over 5 =item description =item name =item id Formatting rules may be in place & enforced by Cisco ACS. =back =item description The identity group description. =item name The identity group name. This is a required value in the constructor but can be redefined afterwards. This value typically starts with C as a parent group. =item id Cisco ACS generates a unique ID for each User record. This field cannot be updated within ACS but is used for reference. Set to 0 when creating a new record or when duplicating an existing identitygroup. =item toXML Dump the record in ACS accept XML formatting (without header). =item header Generate the correct XML header. Takes output of C as argument. =back =head1 BUGS None so far =head1 SUPPORT None so far :) =head1 AUTHOR Hendrik Van Belleghem CPAN ID: BEATNIK hendrik.vanbelleghem@gmail.com =head1 COPYRIGHT This program is free software licensed under the... The General Public License (GPL) Version 2, June 1991 The full text of the license can be found in the LICENSE file included with this module. =head1 SEE ALSO perl(1). =cut #################### main pod documentation end ################### __PACKAGE__->meta->make_immutable(); 1; # The preceding line will help the module return a true value