File: Delta.pod

package info (click to toggle)
libnetapp-perl 500.002-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 464 kB
  • sloc: perl: 5,695; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 869 bytes parent folder | download | duplicates (4)
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
51

=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