Query: netapp::qtree
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NetApp::Qtree(3pm) User Contributed Perl Documentation NetApp::Qtree(3pm)NAMENetApp::Qtree -- OO class for creating and managing qtreesSYNOPSISuse NetApp::Filer; use NetApp::Qtree; my $filer = NetApp::Filer->new( .... ); # Create a tree, with all options in one call my $qtree = $filer->create_qtree( name => "/vol/vol1/qtreename", oplocks => 1, mode => 0755, security => 'unix', ); # Alternately, you can create it, and then change things my $qtree = $filer->create_qtree( name => "/vol/vol1/qtreename", mode => 0755, ); # The mode must be set when created $qtree->set_oplock(1); $qtree->set_security('unix');DESCRIPTIONThis class encapsulates a single NetApp qtree, and provides methods for querying information about the qtree, as well as methods for managing it.METHODSset_security( $security ) This method method takes a single argument, which is the security value to set on the qtree. It must have one of the following values: unix ntfs mixed get_security Returns a string containing the current security setting of the qtree. set_oplocks( $boolean ) This method takes a boolean argument, and sets the oplocks attribute of the qtree to "enabled" if the value is true, and "disabled" if the value is false. get_oplocks Returns true is the oplocks are set to "enabled", false if they are set to "disabled". get_status Returns the status value for the qtree. It waill have the values such as: normal snapmirrored get_id Returns the qtree id. get_vfiler Returns the vfiler which owns the qtree. If vfilers are not licensed on the filer, this method will simply return a false value. perl v5.14.2 2008-11-26 NetApp::Qtree(3pm)
Related Man Pages |
---|
extutils::xspp::node::method(3pm) - debian |
jifty::dbi::column(3pm) - debian |
netapp::aggregate(3pm) - debian |
netapp::volume(3pm) - debian |
prophet::change(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
create new user in unix |
How do I schedule the df command |
qtree & quota in netapp |
mpxio in Solaris10 with NetApp FAS3140 problem |
Romove columns and replace a space with a character |