# $Id: //depot/prod/test/main/lib/NACL/CS/ClusterNodeDiskInfo.pm $ # # Copyright (c) 2013 NetApp, Inc., All Rights Reserved # Any use, modification, or distribution is prohibited # without prior written consent from NetApp, Inc. # ## @summary ClusterNodeDiskInfo ComponentState Module (auto-generated by OCUM CGT) ## @author dl-mpo-nacl-dev@netapp.com ## @status shared ## @pod here =head1 NAME NACL::CS::DFM::ClusterNodeDiskInfo =head1 DESCRIPTION C is a derived class of L. It represents the state of a ClusterNodeDiskInfo. =head1 ATTRIBUTES The individual pieces of data that are part of the state of the ClusterNodeDiskInfo element are the attributes of the ClusterNodeDiskInfo ComponentState. =over =item C<< disk_failed_message >> =item C<< reconstructing_disk_count >> =item C<< scrubbing_disk_count >> =item C<< reconstructing_parity_disk_count >> =item C<< failed_disk_count >> =item C<< verifying_parity_disk_count >> =back =cut package NACL::CS::DFM::ClusterNodeDiskInfo; 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 => 'disk_failed_message', scalar => 'reconstructing_disk_count', scalar => 'scrubbing_disk_count', scalar => 'reconstructing_parity_disk_count', scalar => 'failed_disk_count', scalar => 'verifying_parity_disk_count', ]; 1;