Jason - where do you change that memory setting?
Also - I'm trying to code in a function to grab all the tokens currently on the F5.... I can get a token and write it to variable...but then running this code returns nothing:
function Get-AllF5Tokens
{
[CmdletBinding()]
param(
[Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelineByPropertyName=$True)]
$F5LoadBalancer,
[Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelineByPropertyName=$True)]
$token
)
$method = "GET"
$uri = "https://$F5LoadBalancer/mgmt/shared/authz/tokens"
Invoke-F5RestMethod -URL $uri -method $method -token $token | Out-Null