/usr/share/perl5/NetApp/Snapshot/Delta.pod is in libnetapp-perl 500.002-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | =head1 NAME
NetApp::Snapshot::Delta -- OO class which represents a single snapshot delta
=head1 SYNOPSIS
use NetApp::Filer;
use NetApp::Snapshot;
my $filer = NetApp::Filer->new({ .... });
my $volume = $filer->get_volume( $volname );
my @deltas = $volume->get_snapshot_deltas;
foreach my $snapshot ( $volume->get_snapshots ) {
my @deltas = $snapshot->get_snapshot_deltas;
}
=head1 DESCRIPTION
This class encapsulates a single snapshot delta.
=head1 INSTANCE METHODS
There are 5 key instance methods, each of this returns the data from
the column of the same name in the snap delta table.
=over
=item get_from
=item get_to
=item get_changed
=item get_time
=item get_rate
=back
=head2 is_summary
This method returns true of false, indicating that the delta was a
summary, as opposed to an individual delta.
=cut
|