GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
NetApp::Filer::Version(3) User Contributed Perl Documentation NetApp::Filer::Version(3)

NetApp::Filer::Version -- OO Class for representing NetApp Filer versions

    use NetApp::Filer;

    my $filer = NetApp::Filer->new({ ... });

    # The "version" is: NetApp Release 7.2.2: Sat Mar 24 20:38:59 PDT 2007

    my $version = $filer->get_version;
    # $version->isa("NetApp::Filer::Version")

    print $version->get_release, "\n";
    # prints "7.2.2"

    print $version->get_date, "\n";
    # prints "Sat Mar 24 20:38:59 PDT 2007"

    print $version->get_string, "\n";
    print "$version\n";
    # Both print the same thing, the second one through operator overloading,
    # namely the original, unparsed version string

    print $version->get_version, "\n";
    # prints "v7.2.2"

This class is used to encapsulate the NetApp Filer version string, and provide access to the components of the string as a numeric release, a perl version, and a date string.

Returns the NetApp numerical release as a string, for example:

    7.2.2

Returns the NetApp release date as a string, for example:

    Sat Mar 24 20:38:59 PDT 2007

Returns the unparsed version string in it's entirety:

    NetApp Release 7.2.2: Sat Mar 24 20:38:59 PDT 2007

Returns the NetApp release as a perl version object.
2008-11-26 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.