The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Device::Firewall::PaloAlto::Op::IPUserMaps - Palo Alto IP to user mapping table.

VERSION

version 0.1.9

SYNOPSIS

    my $mappings = $fw->op->ip_user_mapping;
    my $mapping = $mappings->ip('192.0.2.1');
    say "User: ". $mapping->user;

DESCRIPTION

This object represents the entries in the IP to user mapping table. It contains a number of Device::Firewall::PaloAlto::Op::IPUserMap objects.

METHODS

ip

Returns a Device::Firewall::PaloAlto::Op::IPUserMap object with details about the IP to user mapping for a user.

If there is no mapping for the IP, returns a Class::Error object.

to_array

Returns an array of Device::Firewall::PaloAlto::Op::IPUserMap objects representing the current IP to user mappings.

AUTHOR

Greg Foletta <greg@foletta.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019 by Greg Foletta.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.