PowerShell module for the F5 LTM REST API
Problem this snippet solves: To report an issue with the F5-LTM or F5-BIGIP modules, please use the Issues sections of the GitHub repos (here and here) instead of commenting here. Thanks!
This Pow...
Updated Jun 06, 2023
Version 2.0Joel_Newton
Cirrus
Joined September 06, 2012
Joel_Newton
Mar 09, 2016Cirrus
Hi, J.
It looks like you may not have authorized yet to the F5. You'll need to create the F5 session first
(i.e. New-F5Session -LTMName (myLTM) -LTMCredentials $mycredsobject -Default )
and then you should be able to call
Get-Pool | Select-Object -ExpandProperty fullPath ConvertFrom-Json
without issue. Let me know.
Thanks.