=head1 NAME NACL::STask::VolumeEfficiencyPolicy =head1 DESCRIPTION C provides a number of well-defined but potentially complex or multi-step methods related to Volume Efficiency Policy in ONTAP. It builds on top of, and is a derived class of C, and so it also provides methods that are more in the scope of individual volume-related commands. See C for details. This also means that a C object may generally be used in place of a component object. =head1 METHODS =head2 create This accepts the same options and provides the same facilities as L. Additionally, the STask provides the following facilities: C, C, C. The description of these features are present at: L. =head2 purge This accepts the same options and provides the same facilities as L. Additionally, the STask provides the following facilities: C, C. The description of these features are present at: L. =cut package NACL::STask::VolumeEfficiencyPolicy; use base qw(NACL::C::VolumeEfficiencyPolicy NACL::STask::STask); use strict; use warnings; __PACKAGE__->create_method_builder(mcc_check => 1); __PACKAGE__->purge_method_builder(mcc_check => 1); 1;