# $Id: //depot/prod/test/main/lib/NACL/CS/VolumeEfficiencyInfo.pm $ # # Copyright (c) 2013 NetApp, Inc., All Rights Reserved # Any use, modification, or distribution is prohibited # without prior written consent from NetApp, Inc. # ## @summary VolumeEfficiencyInfo ComponentState Module (auto-generated by OCUM CGT) ## @author dl-mpo-nacl-dev@netapp.com ## @status shared ## @pod here =head1 NAME NACL::CS::DFM::VolumeEfficiencyInfo =head1 DESCRIPTION C is a derived class of L. It represents the state of a VolumeEfficiencyInfo. =head1 ATTRIBUTES The individual pieces of data that are part of the state of the VolumeEfficiencyInfo element are the attributes of the VolumeEfficiencyInfo ComponentState. =over =item C<< is_dedupe_enabled >> =item C<< dedupe_progress >> =item C<< compression_space_savings_percentage >> =item C<< last_dedupe_begin_timestamp >> =item C<< dedupe_status >> =item C<< compression_space_savings >> =item C<< dedupe_space_savings >> =item C<< dedupe_type >> =item C<< last_dedupe_scanned_size >> =item C<< last_dedupe_error >> =item C<< is_compression_enabled >> =item C<< efficiency_policy >> =item C<< last_dedupe_end_timestamp >> =item C<< dedupe_schedule >> =item C<< last_dedupe_status >> =item C<< dedupe_space_savings_percentage >> =back =cut package NACL::CS::DFM::VolumeEfficiencyInfo; use strict; use warnings; use Params::Validate qw(validate validate_with SCALAR ARRAYREF HASHREF); use NACL::ComponentUtils qw(Dumper); use NATE::Log qw(log_global); my $Log = log_global(); my $may_enter = $Log->may_enter(); my $may_exit = $Log->may_exit(); use base 'NACL::CS::ComponentState::DFM'; use Class::MethodMaker [ new => [ '-hash', 'new' ], scalar => 'is_dedupe_enabled', scalar => 'dedupe_progress', scalar => 'compression_space_savings_percentage', scalar => 'last_dedupe_begin_timestamp', scalar => 'dedupe_status', scalar => 'compression_space_savings', scalar => 'dedupe_space_savings', scalar => 'dedupe_type', scalar => 'last_dedupe_scanned_size', scalar => 'last_dedupe_error', scalar => 'is_compression_enabled', scalar => 'efficiency_policy', scalar => 'last_dedupe_end_timestamp', scalar => 'dedupe_schedule', scalar => 'last_dedupe_status', scalar => 'dedupe_space_savings_percentage', ]; 1;