/usr/share/perl5/NetApp/Aggregate/Plex.pod is in libnetapp-perl 500.002-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | =head1 NAME
NetApp::Aggregate::Plex -- OO Class for representing NetApp plexes
=head1 SYNOPSIS
use NetApp::Filer;
use NetApp::Aggregate;
my $aggregate = $filer->get_aggregate( $name );
my $plex = $aggregate->get_plex;
my @raidgroups = $plex->get_raidgroups;
=head1 DESCRIPTION
This class is used to encapsulate a NetApp plex, and provide access to
the name and states of the plex.
=head1 METHODS
=head2 get_name
Returns the name of the plex as a string.
=head2 get_raidgroups
Returns a list of NetApp::Aggregate::RAIDGroup objects, one for each
RAIDGroup in the Plex.
=head2 get_states
Returns a list of strings, each of which represents a single state for
the plex.
=head2 get_state( $state )
Returns true if the plex has the given state, false otherwise.
=cut
|