# $Id: //depot/prod/test/main/lib/NACL/CS/DFM/StorageServiceTopologyConnection.pm#1 $ # # Copyright (c) 2012 NetApp, Inc., All Rights Reserved # Any use, modification, or distribution is prohibited # without prior written consent from NetApp, Inc. # ## @summary StorageServiceTopologyConnection ComponentState Module (auto-generated by CGT) ## @author deepthis, dl-mpo-nacl-dev@netapp.com ## @change 2012-06-22 deepthis Created the file # ## @status review ## @pod here =head1 NAME NACL::CS::DFM::StorageServiceTopologyConnection =head1 DESCRIPTION C is a derived class of L. It represents the state of an ONTAP StorageServiceTopologyConnection. =head1 ATTRIBUTES The individual pieces of data that are part of the state of the StorageServiceTopologyConnection element are the attributes of the StorageServiceTopology ComponentState. =over =item C<< connection_id >> =item C<< connection_type >> =item C<< destination_node_id >> =item C<< destination_node_name >> =item C<< is_enabled >> =item C<< is_lag_error_enabled >> =item C<< is_lag_warning_enabled >> =item C<< lag_error_threshold >> =item C<< lag_warning_threshold >> =item C<< max_transfer_rate >> =item C<< source_node_id >> =item C<< source_node_name >> =back =cut package NACL::CS::DFM::StorageServiceTopologyConnection; 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 => 'connection_id', scalar => 'connection_type', scalar => 'destination_node_id', scalar => 'destination_node_name', scalar => 'is_enabled', scalar => 'is_lag_error_enabled', scalar => 'is_lag_warning_enabled', scalar => 'lag_error_threshold', scalar => 'lag_warning_threshold', scalar => 'max_transfer_rate', scalar => 'source_node_id', scalar => 'source_node_name' ]; 1;