Oo class for representing netapp plexes
use NetApp::Filer; use NetApp::Aggregate; my $aggregate = $filer->get_aggregate( $name ); my $plex = $aggregate->get_plex; my @raidgroups = $plex->get_raidgroups;
This class is used to encapsulate a NetApp plex, and provide access to the name and states of the plex.
Returns the name of the plex as a string.
Returns a list of NetApp::Aggregate::RAIDGroup objects, one for each RAIDGroup in the Plex.
Returns a list of strings, each of which represents a single state for the plex. Returns true if the plex has the given state, false otherwise.