logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

NetApp::Snapshot::Delta -- OO class which represents a single snapshot delta

Description

       This class encapsulates a single snapshot delta.

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.

       get_from
       get_to
       get_changed
       get_time
       get_rate

   is_summary
       This  method  returns true of false, indicating that the delta was a summary, as opposed to an individual
       delta.

perl v5.36.0                                       2022-11-19                       NetApp::Snapshot::Delta(3pm)

Name

       NetApp::Snapshot::Delta -- OO class which represents a single snapshot delta

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;

           }

See Also