f5-apm.psm1

<#
.SYNOPSIS
    A module for using the F5 LTM REST API to administer the APM Module
.DESCRIPTION
    This module uses the F5 LTM REST API to manipulate and query
.NOTES
    File Name : F5-LTM.psm1
    Author : Sky Klein
    Requires :
    Dependencies : Requires F5-LTM module for connections to F5
#>





$ScriptPath = Split-Path $MyInvocation.MyCommand.Path
#region Load Public Functions

    Get-ChildItem "$ScriptPath\Public" -Filter *.ps1 -Recurse| Select-Object -Expand FullName | ForEach-Object {
        $Function = Split-Path $_ -Leaf
        try {
            . $_
        } catch {
            Write-Warning ("{0}: {1}" -f $Function,$_.Exception.Message)
        }
   }

#endregion